﻿
/* Fonts */
:root {
  --default-font: "Artifika",  system-ui, -apple-system, "Segoe UI", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Artifika",  serif;
  --nav-font: "Artifika",  serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
--background-color: #0d1b2a;
--default-color: #e0e0e0;
--heading-color: #4a9eff;
--accent-color: #1e5a8a;
--surface-color: rgba(13, 27, 42, 0.7);
--contrast-color: #ffffff;
--bg-color: rgba(26, 37, 126, 0.3);
--nav-color: #4a9eff;
--nav-hover-color: #1e5a8a;
--nav-mobile-background-color: rgba(13, 27, 42, 0.95);
--nav-dropdown-background-color: rgba(26, 37, 126, 0.8);
--nav-dropdown-color: #e0e0e0;
--nav-dropdown-hover-color: #1e5a8a;

}

/* Color Presets */

.light-background {
  --background-color: rgba(13, 27, 42, 0.5);
  --surface-color: rgba(26, 37, 126, 0.4);
}

.dark-background {
  --background-color: #1f1a17;
  --default-color: #f5f0eb;
  --heading-color: #ffffff;
  --surface-color: #3b302c;
  --contrast-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: linear-gradient(135deg, #0d1b2a 0%, #1a237e 50%, #1a4d7a 100%);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Contact Form New - Messages
------------------------------*/
.contact-form .form-status .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.contact-form .form-status .sent-message {
  display: none;
  color: #ffffff;
  background: #0596d2;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.contact-form .form-status .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.contact-form .form-status .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: contact-form-loading 1s linear infinite;
}

@keyframes contact-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header - Modern Design
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Simple Header
--------------------------------------------------------------*/

.site-header {
  position: relative;
  z-index: 997;
  background: rgba(13, 27, 42, 0.95);
  border-bottom: 1px solid rgba(74, 158, 255, 0.2);
  transition: background 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  min-height: 70px;
}

.primary-navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
}

.nav-item {
  color: rgba(224, 224, 224, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--heading-color);
}

.scrolled .site-header {
  background: rgba(13, 27, 42, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-toggle span:nth-child(1) {
  transform-origin: top left;
}

.mobile-toggle span:nth-child(3) {
  transform-origin: bottom left;
}

.mobile-toggle:hover span {
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: linear-gradient(90deg, #ff4d4d, #ff6b6b);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: linear-gradient(90deg, #ff4d4d, #ff6b6b);
}

@media (max-width: 1199px) {
  .primary-navigation {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .header-container {
    justify-content: flex-end;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.mobile-menu.active {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.mobile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-overlay {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.98) 0%, rgba(26, 37, 126, 0.95) 100%);
  backdrop-filter: blur(30px);
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.active .mobile-panel {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(74, 158, 255, 0.25);
  background: rgba(13, 27, 42, 0.5);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(74, 158, 255, 0.3);
  background: rgba(74, 158, 255, 0.1);
  border-radius: 12px;
  color: var(--heading-color);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(74, 158, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.mobile-close:hover::before {
  width: 100%;
  height: 100%;
}

.mobile-close:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: rgba(74, 158, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.mobile-close:active {
  transform: rotate(90deg) scale(0.95);
}

.mobile-close i {
  position: relative;
  z-index: 1;
}

.mobile-nav {
  padding: 15px 0 30px;
}

.mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-list li {
  border-bottom: 1px solid rgba(74, 158, 255, 0.15);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInMobileItem 0.4s ease forwards;
}

.mobile-menu.active .mobile-list li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-list li:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-list li:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-list li:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-list li:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-list li:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInMobileItem {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), var(--heading-color));
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom;
}

.mobile-list li:hover::before {
  transform: scaleY(1);
}

.mobile-item {
  display: block;
  padding: 20px 25px;
  color: rgba(224, 224, 224, 0.9);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.3px;
}

.mobile-item::after {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(74, 158, 255, 0.4);
  border-top: 2px solid rgba(74, 158, 255, 0.4);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-item:hover {
  color: var(--heading-color);
  background: linear-gradient(90deg, rgba(74, 158, 255, 0.1), transparent);
  padding-left: 35px;
}

.mobile-item:hover::after {
  opacity: 1;
  right: 20px;
}

.mobile-item:active {
  transform: scale(0.98);
}

/* Legacy support */
.link-mobile-nav {
  display: block;
  padding: 20px 25px;
  color: rgba(224, 224, 224, 0.9);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-mobile-nav:hover {
  color: var(--heading-color);
  background: linear-gradient(90deg, rgba(74, 158, 255, 0.1), transparent);
  padding-left: 35px;
}

/* Legacy header styles for backward compatibility */
.header {
  color: var(--default-color);
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(26, 37, 126, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 158, 255, 0.2);
  padding: 0;
  transition: all 0.5s ease;
  z-index: 997;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
  padding: 15px 0;
  min-height: 70px;
}

.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.05);
}

.header .logo-img {
  max-height: 45px;
  width: auto;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid rgba(74, 158, 255, 0.3);
  transition: border-color 0.3s ease;
}

.header .logo:hover .logo-img {
  border-color: var(--accent-color);
}

.header .logo-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.scrolled .header {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.98) 0%, rgba(26, 37, 126, 0.95) 100%);
  border-bottom-color: rgba(74, 158, 255, 0.3);
}

.header .btn-header-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2d6bbf 100%);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(30, 90, 138, 0.4);
  border: 1px solid rgba(30, 90, 138, 0.3);
}

.header .btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 90, 138, 0.6);
  background: linear-gradient(135deg, #2d6bbf 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
}

.header .btn-header-cta i {
  transition: transform 0.3s ease;
}

.header .btn-header-cta:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .navmenu .nav-menu-list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu .nav-link {
    color: var(--default-color);
    padding: 10px 16px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
  }

  .navmenu .nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .navmenu .nav-link:hover {
    color: var(--heading-color);
    background: rgba(74, 158, 255, 0.1);
    transform: translateY(-2px);
  }

  .navmenu .nav-link:hover i {
    transform: scale(1.2);
  }

  .navmenu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
    transition: width 0.3s ease;
  }

  .navmenu .nav-link:hover::after {
    width: 80%;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }


  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .header-wrapper {
    flex-wrap: wrap;
    position: relative;
  }

  .navmenu {
    display: none;
  }

  .header-actions {
    display: none;
  }
}

/* Mobile Navigation - Separate Element */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1199px) {
  .navmenu {
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), rgba(13, 27, 42, 0.3));
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.25), rgba(13, 27, 42, 0.4));
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.3);
  }

  .mobile-menu-toggle:active {
    transform: scale(0.95);
  }

  .mobile-menu-toggle.active {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.2), rgba(13, 27, 42, 0.4));
  }

  .mobile-menu-toggle .toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
  }

  .mobile-menu-toggle .toggle-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }

  .mobile-menu-toggle .toggle-icon span:nth-child(1) {
    transform-origin: top left;
  }

  .mobile-menu-toggle .toggle-icon span:nth-child(3) {
    transform-origin: bottom left;
  }

  .mobile-menu-toggle.active .toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: linear-gradient(90deg, #ff4d4d, #ff6b6b);
  }

  .mobile-menu-toggle.active .toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .mobile-menu-toggle.active .toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: linear-gradient(90deg, #ff4d4d, #ff6b6b);
  }

  .mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(20, 35, 52, 0.98));
    backdrop-filter: blur(30px);
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .mobile-navigation.active {
    transform: translateX(0);
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 2px solid rgba(74, 158, 255, 0.2);
    background: rgba(13, 27, 42, 0.5);
  }

  .mobile-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--default-color);
  }

  .mobile-logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .mobile-logo-text {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--heading-color);
  }

  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255, 77, 77, 0.2);
    border-radius: 12px;
    color: #ff4d4d;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-nav-close:hover {
    background: rgba(255, 77, 77, 0.3);
    transform: rotate(90deg);
  }

  .mobile-nav-menu {
    padding: 30px 20px;
  }

  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-list li {
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .mobile-navigation.active .mobile-nav-list li:nth-child(1) { animation-delay: 0.1s; }
  .mobile-navigation.active .mobile-nav-list li:nth-child(2) { animation-delay: 0.15s; }
  .mobile-navigation.active .mobile-nav-list li:nth-child(3) { animation-delay: 0.2s; }
  .mobile-navigation.active .mobile-nav-list li:nth-child(4) { animation-delay: 0.25s; }
  .mobile-navigation.active .mobile-nav-list li:nth-child(5) { animation-delay: 0.3s; }

  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    color: var(--default-color);
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(74, 158, 255, 0.05);
    border: 2px solid transparent;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
  }

  .mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .mobile-nav-link:hover::before {
    left: 100%;
  }

  .mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(13, 27, 42, 0.4));
    color: var(--heading-color);
    transform: translateX(8px);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: 0 8px 24px rgba(74, 158, 255, 0.2);
  }

  .mobile-nav-link i {
    font-size: 22px;
    margin-right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(13, 27, 42, 0.3));
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .mobile-nav-link:hover i {
    background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
    color: var(--contrast-color);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
  }

  .mobile-nav-link span {
    flex: 1;
  }

  .mobile-nav-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(74, 158, 255, 0.2);
  }

  .mobile-nav-cta {
    display: block;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
    color: var(--contrast-color);
    text-align: center;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(74, 158, 255, 0.3);
  }

  .mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 158, 255, 0.5);
  }

  body.mobile-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer - Modern Design
--------------------------------------------------------------*/
.footer-main {
  position: relative;
  color: var(--default-color);
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.98) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  font-size: 14px;
  border-top: 1px solid rgba(74, 158, 255, 0.2);
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
}

.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(74, 158, 255, 0.15);
  margin-bottom: 50px;
}

.footer-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta p {
  color: rgba(224, 224, 224, 0.7);
  font-size: 16px;
  margin: 0;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--heading-color) 0%, rgba(74, 158, 255, 0.8) 100%);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
  border: 1px solid rgba(74, 158, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-footer-cta:hover::before {
  left: 100%;
}

.btn-footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(74, 158, 255, 0.5);
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.9) 0%, var(--heading-color) 100%);
}

.btn-footer-cta i {
  transition: transform 0.3s ease;
}

.btn-footer-cta:hover i {
  transform: translateX(5px);
}

.content-footer-main {
  margin-bottom: 40px;
}

.footer-brand {
  margin-bottom: 30px;
}

.logo-footer-main {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.logo-footer-main:hover {
  transform: translateX(5px);
}

.footer-logo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 2px solid rgba(74, 158, 255, 0.3);
  background: rgba(74, 158, 255, 0.05);
  padding: 10px;
  transition: all 0.3s ease;
}

.logo-footer-main:hover .footer-logo-icon {
  border-color: var(--heading-color);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-tagline {
  font-size: 11px;
  color: rgba(224, 224, 224, 0.5);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-description {
  color: rgba(224, 224, 224, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

.social-footer-main {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.link-social-footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.2);
  color: rgba(224, 224, 224, 0.8);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.link-social-footer-main::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  border-radius: 12px;
  transition: transform 0.3s ease;
  z-index: 0;
}

.link-social-footer-main i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.link-social-footer-main:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.link-social-footer-main:hover {
  border-color: var(--heading-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.link-social-footer-main:hover i {
  transform: scale(1.1);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
  font-family: var(--heading-font);
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  border-radius: 2px;
}

.links-footer-main {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-footer-main li {
  margin-bottom: 12px;
}

.links-footer-main a {
  display: flex;
  align-items: center;
  color: rgba(224, 224, 224, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
  padding-left: 0;
}

.links-footer-main a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--heading-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.links-footer-main a:hover {
  color: var(--heading-color);
  padding-left: 15px;
}

.links-footer-main a:hover::before {
  width: 8px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(224, 224, 224, 0.8);
}

.footer-contact-item i {
  font-size: 20px;
  color: var(--heading-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item strong {
  display: block;
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 5px;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(224, 224, 224, 0.7);
  line-height: 1.6;
  font-size: 14px;
}

.footer-contact-item a {
  color: rgba(224, 224, 224, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-contact-item a:hover {
  color: var(--heading-color);
}

.footer-legal {
  padding-top: 30px;
  border-top: 1px solid rgba(74, 158, 255, 0.15);
  margin-top: 40px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links a {
  color: rgba(224, 224, 224, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-legal-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--heading-color);
  transition: width 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--heading-color);
}

.footer-legal-links a:hover::after {
  width: 100%;
}

.copyright-footer-main {
  color: rgba(224, 224, 224, 0.6);
  font-size: 14px;
  margin: 0;
}

.copyright-footer-main strong {
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .footer-top {
    text-align: center;
  }
  
  .footer-cta {
    margin-bottom: 25px;
  }
  
  .btn-footer-cta {
    width: 100%;
    justify-content: center;
  }
  
  .footer-legal .row {
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}

/* Legacy footer styles for backward compatibility */
.footer {
  color: var(--default-color);
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.6) 0%, rgba(26, 37, 126, 0.5) 50%, rgba(13, 27, 42, 0.7) 100%);
  backdrop-filter: blur(20px);
  font-size: 14px;
  position: relative;
  border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid rgba(74, 158, 255, 0.3);
}

.footer-logo-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.footer-description {
  color: rgba(224, 224, 224, 0.8);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.5);
  border: 1px solid rgba(74, 158, 255, 0.3);
  color: var(--default-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-link:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 90, 138, 0.4);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
  font-family: var(--heading-font);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(224, 224, 224, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a i {
  font-size: 10px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer-contact-item {
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
  width: 20px;
  display: inline-block;
}

.footer-contact-item a {
  color: rgba(224, 224, 224, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--heading-color);
}

.footer-contact-item strong {
  color: var(--heading-color);
  font-weight: 600;
}

.footer-bottom {
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(74, 158, 255, 0.2);
  padding: 25px 0;
}

.footer-copyright {
  color: rgba(224, 224, 224, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-copyright strong {
  color: var(--heading-color);
  font-weight: 600;
}

.footer-made {
  color: rgba(224, 224, 224, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-made i {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-col {
    margin-bottom: 40px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: transparent;
  background: rgba(13, 27, 42, 0.3);
  backdrop-filter: blur(10px);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.4) 0%, rgba(26, 37, 126, 0.3) 50%, rgba(13, 27, 42, 0.4) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(30, 90, 138, 0.1) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, -20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 25px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(224, 224, 224, 0.9);
  font-size: 15px;
}

.hero-feature-item i {
  color: var(--accent-color);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2d6bbf 100%);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 90, 138, 0.4);
  border: 1px solid rgba(30, 90, 138, 0.3);
}

.btn-cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 90, 138, 0.6);
  background: linear-gradient(135deg, #2d6bbf 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(74, 158, 255, 0.2);
  border-color: var(--heading-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.2), rgba(26, 37, 126, 0.1));
  transition: opacity 0.3s ease;
}

.hero-image-container:hover .hero-image-overlay {
  opacity: 0.7;
}

.hero-floating-card {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  z-index: 3;
}

.hero-floating-card i {
  font-size: 36px;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.hero-floating-card span {
  font-size: 11px;
  color: var(--default-color);
  text-align: center;
  font-weight: 600;
}

.hero-floating-card:hover {
  transform: translateY(-10px) scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 12px 35px rgba(30, 90, 138, 0.5);
}

.hero-card-1 {
  top: 10%;
  right: -10%;
  animation: floatHero 8s ease-in-out infinite;
}

.hero-card-2 {
  bottom: 20%;
  right: -5%;
  animation: floatHero 7s ease-in-out infinite 1s;
}

.hero-card-3 {
  top: 50%;
  left: -10%;
  animation: floatHero 9s ease-in-out infinite 2s;
}

@keyframes floatHero {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .hero-floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px 0;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .btn-cta-main,
  .btn-hero-secondary {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600; 
  font-size: 16px;
  letter-spacing: 1.2px; 
  padding: 12px 32px; 
  border-radius: 8px; 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px; 
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.about .read-more:hover i {
  transform: translateX(6px); 
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  position: relative;
  height: 100%;
}

.feature-card-inner {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-inner::before {
  transform: scaleX(1);
}

.feature-card:hover .feature-card-inner {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.feature-card-large {
  grid-column: span 2;
}

.feature-card-wide {
  grid-column: span 3;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-color: var(--heading-color);
  transform: rotate(5deg) scale(1.1);
}

.feature-icon {
  font-size: 32px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: var(--contrast-color);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 20px;
  flex: 1;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  margin-top: auto;
}

.feature-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.feature-link i {
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card-large,
  .feature-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-large,
  .feature-card-wide {
    grid-column: span 1;
  }
  
  .feature-card-inner {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.feature-details-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-detail-reverse {
  direction: rtl;
}

.feature-detail-reverse > * {
  direction: ltr;
}

.feature-detail-content {
  position: relative;
  padding: 40px;
  background: rgba(13, 27, 42, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-detail-number {
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 120px;
  font-weight: 700;
  color: rgba(74, 158, 255, 0.1);
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 0;
}

.feature-detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-detail-item:hover .feature-detail-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-color: var(--heading-color);
  transform: rotate(5deg) scale(1.1);
}

.feature-detail-icon i {
  font-size: 32px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.feature-detail-item:hover .feature-detail-icon i {
  color: var(--contrast-color);
}

.feature-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
  position: relative;
  z-index: 1;
}

.feature-detail-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.feature-detail-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.feature-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}

.feature-detail-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: rgba(224, 224, 224, 0.9);
  font-size: 15px;
}

.feature-detail-list li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.feature-detail-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2d6bbf 100%);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 90, 138, 0.4);
  position: relative;
  z-index: 1;
}

.feature-detail-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 90, 138, 0.6);
  background: linear-gradient(135deg, #2d6bbf 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
}

.feature-detail-link i {
  transition: transform 0.3s ease;
}

.feature-detail-link:hover i {
  transform: translateX(5px);
}

.feature-detail-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.feature-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-detail-item:hover .feature-image-wrapper img {
  transform: scale(1.1);
}

.feature-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.3), rgba(26, 37, 126, 0.2));
  transition: opacity 0.3s ease;
}

.feature-detail-item:hover .feature-image-overlay {
  opacity: 0.7;
}

@media (max-width: 991px) {
  .feature-detail-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-detail-reverse {
    direction: ltr;
  }
  
  .feature-detail-content {
    padding: 30px;
  }
  
  .feature-detail-title {
    font-size: 26px;
  }
  
  .feature-detail-number {
    font-size: 80px;
    top: -10px;
    left: 30px;
  }
}
.feature-item-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 15px;
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 10px;
    background-color: rgba(13, 27, 42, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-right: 15px;
}

.feature-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.feature-item strong {
    font-size: 18px;
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.review-quote-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 48px;
  color: rgba(74, 158, 255, 0.1);
  line-height: 1;
}

.review-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.review-rating i {
  color: #ffc107;
  font-size: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 25px;
  flex: 1;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar i {
  font-size: 28px;
  color: var(--heading-color);
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
  font-family: var(--heading-font);
}

.review-role {
  font-size: 13px;
  color: rgba(224, 224, 224, 0.7);
}

@media (max-width: 991px) {
  .reviews-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-list {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Pricing Comparison Table
--------------------------------------------------------------*/
.pricing-comparison {
  margin-top: 60px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.comparison-table thead {
  background: rgba(13, 27, 42, 0.8);
}

.comparison-table th {
  padding: 20px 15px;
  text-align: left;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid rgba(74, 158, 255, 0.3);
  font-family: var(--heading-font);
}

.comparison-table th:first-child {
  width: 40%;
}

.comparison-table th:not(:first-child) {
  text-align: center;
  width: 20%;
}

.table-price {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 5px;
}

.comparison-table td {
  padding: 15px;
  color: rgba(224, 224, 224, 0.9);
  font-size: 15px;
  border-bottom: 1px solid rgba(74, 158, 255, 0.1);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tbody tr:hover {
  background: rgba(74, 158, 255, 0.1);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .text-success {
  color: var(--accent-color);
  font-size: 18px;
}

.comparison-table .text-danger {
  color: rgba(224, 224, 224, 0.3);
  font-size: 18px;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 13px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }
  
  .table-price {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Company Info Section
--------------------------------------------------------------*/
.company-info {
  background: transparent;
  padding: 80px 0;
}

.company-info-card {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.company-info-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
}

.company-info-table tr {
  border-bottom: 1px solid rgba(74, 158, 255, 0.1);
}

.company-info-table tr:last-child {
  border-bottom: none;
}

.company-info-table td {
  padding: 15px 0;
  vertical-align: top;
  color: rgba(224, 224, 224, 0.9);
  font-size: 15px;
  line-height: 1.8;
}

.company-info-table td:first-child {
  width: 200px;
  color: var(--heading-color);
  font-weight: 600;
  padding-right: 20px;
}

.company-info-table td a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-info-table td a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .company-info-card {
    padding: 25px;
  }
  
  .company-info-table td:first-child {
    width: 150px;
    font-size: 14px;
  }
  
  .company-info-table td {
    font-size: 14px;
    padding: 12px 0;
  }
}

.review-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 20%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.review-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.review-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.review-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .review-card {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card-featured {
  border: 2px solid rgba(74, 158, 255, 0.4);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(30, 90, 138, 0.4);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

.pricing-plan-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
}

.pricing-currency {
  font-size: 24px;
  color: var(--heading-color);
  font-weight: 600;
  margin-right: 5px;
}

.pricing-amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: rgba(224, 224, 224, 0.7);
  margin-left: 5px;
}

.pricing-description {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
}

.pricing-card-body {
  flex: 1;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  color: rgba(224, 224, 224, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-features li i {
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 16px;
}

.pricing-features li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing-features li i.bi-x-circle {
  color: rgba(224, 224, 224, 0.3);
}

.pricing-card-footer {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.btn-pricing {
  display: inline-block;
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2d6bbf 100%);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 90, 138, 0.4);
  border: 1px solid rgba(30, 90, 138, 0.3);
}

.btn-pricing:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 90, 138, 0.6);
  background: linear-gradient(135deg, #2d6bbf 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
}

.btn-pricing-featured {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  border-color: rgba(74, 158, 255, 0.3);
}

.btn-pricing-featured:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
}

.pricing-savings {
  font-size: 12px;
  color: rgba(224, 224, 224, 0.7);
  margin-top: 10px;
  margin-bottom: 0;
}

.pricing-note {
  margin-top: 50px;
}

.pricing-note-text {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
}

.pricing-note-text a {
  color: var(--heading-color);
  text-decoration: underline;
}

.pricing-note-text a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card-featured {
    transform: scale(1);
  }
  
  .pricing-card-featured:hover {
    transform: translateY(-10px);
  }
}

.pricing .pricing-item {
  background-color: rgba(13, 27, 42, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.3);
  height: 100%;
  position: relative;
  border-radius: 2rem;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #0596d2;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: rgba(30, 90, 138, 0.7);
  backdrop-filter: blur(10px);
  border-color: rgba(30, 90, 138, 0.5);
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: rgba(13, 27, 42, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 2rem;
  border: 1px solid rgba(74, 158, 255, 0.2);
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: rgba(30, 90, 138, 0.7);
  backdrop-filter: blur(10px);
  border-color: rgba(30, 90, 138, 0.5);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Additional FAQ Section - Modern Redesign
--------------------------------------------------------------*/
.additional-faq {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.additional-faq .faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.additional-faq .faq-item {
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.additional-faq .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), var(--heading-color));
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.additional-faq .faq-item:hover::before,
.additional-faq .faq-item.faq-active::before {
  transform: scaleY(1);
}

.additional-faq .faq-item:hover {
  transform: translateX(5px);
  border-color: rgba(74, 158, 255, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.additional-faq .faq-item.faq-active {
  background: rgba(13, 27, 42, 0.85);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 15px 40px rgba(30, 90, 138, 0.3);
}

.additional-faq .faq-item-header {
  display: flex;
  align-items: center;
  padding: 30px 35px;
  position: relative;
  z-index: 2;
}

.additional-faq .faq-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.additional-faq .faq-icon i {
  font-size: 28px;
  color: var(--heading-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-faq .faq-item:hover .faq-icon,
.additional-faq .faq-item.faq-active .faq-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-color: var(--heading-color);
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 90, 138, 0.4);
}

.additional-faq .faq-item:hover .faq-icon i,
.additional-faq .faq-item.faq-active .faq-icon i {
  color: var(--contrast-color);
}

.additional-faq .faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  padding-right: 50px;
}

.additional-faq .faq-item:hover h3,
.additional-faq .faq-item.faq-active h3 {
  color: var(--heading-color);
}

.additional-faq .faq-toggle {
  position: absolute;
  top: 30px;
  right: 35px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(74, 158, 255, 0.1);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.additional-faq .faq-toggle i {
  font-size: 18px;
  color: var(--heading-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-faq .faq-item:hover .faq-toggle {
  background: rgba(74, 158, 255, 0.2);
  border-color: var(--heading-color);
  transform: scale(1.1);
}

.additional-faq .faq-item.faq-active .faq-toggle {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-color: var(--heading-color);
  transform: rotate(180deg) scale(1.1);
}

.additional-faq .faq-item.faq-active .faq-toggle i {
  color: var(--contrast-color);
}

.additional-faq .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 35px;
  opacity: 0;
  visibility: hidden;
}

.additional-faq .faq-item.faq-active .faq-content {
  max-height: 2000px;
  padding: 0 35px 35px 35px;
  opacity: 1;
  visibility: visible;
}

.additional-faq .faq-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.additional-faq .faq-content p:last-child {
  margin-bottom: 0;
}

.additional-faq .faq-content p strong {
  color: var(--heading-color);
  font-weight: 600;
}

.additional-faq .faq-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.additional-faq .faq-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.9);
}

.additional-faq .faq-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.additional-faq .faq-content ul li strong {
  color: var(--heading-color);
  font-weight: 600;
}

.additional-faq .faq-content a {
  color: var(--heading-color);
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: 600;
}

.additional-faq .faq-content a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .additional-faq {
    padding: 60px 0;
  }
  
  .additional-faq .faq-item-header {
    padding: 25px 20px;
    flex-wrap: wrap;
  }
  
  .additional-faq .faq-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 15px;
  }
  
  .additional-faq .faq-icon i {
    font-size: 24px;
  }
  
  .additional-faq .faq-item h3 {
    font-size: 18px;
    padding-right: 50px;
    flex: 1;
    min-width: 100%;
    margin-top: 15px;
  }
  
  .additional-faq .faq-toggle {
    top: 25px;
    right: 20px;
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
  
  .additional-faq .faq-toggle i {
    font-size: 16px;
  }
  
  .additional-faq .faq-content {
    padding: 0 20px;
  }
  
  .additional-faq .faq-item.faq-active .faq-content {
    padding: 0 20px 25px 20px;
  }
  
  .additional-faq .faq-content ul li {
    padding-left: 25px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: rgba(13, 27, 42, 0.5);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 2rem;
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .contact-form {
  background: rgba(13, 27, 42, 0.5);
  backdrop-filter: blur(10px);
  padding: 30px;
  height: 100%;
  border-radius: 2rem;
  border: 1px solid rgba(74, 158, 255, 0.2);
}

.contact .contact-form .form-field-group {
  margin-bottom: 20px;
}

.contact .contact-form .form-field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.contact .contact-form .required-star {
  color: #ff4d4d;
  margin-left: 4px;
}

.contact .contact-form .form-field-input,
.contact .contact-form .form-field-textarea {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(74, 158, 255, 0.3);
  width: 100%;
  transition: all 0.3s ease;
}

.contact .contact-form .form-field-input:focus,
.contact .contact-form .form-field-textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.contact .contact-form .form-field-input::placeholder,
.contact .contact-form .form-field-textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form .form-field-input.is-invalid,
.contact .contact-form .form-field-textarea.is-invalid {
  border-color: #df1529;
}

.contact .contact-form .form-field-input.is-valid,
.contact .contact-form .form-field-textarea.is-valid {
  border-color: #0596d2;
}

.contact .contact-form .invalid-feedback {
  display: none;
  color: #df1529;
  font-size: 12px;
  margin-top: 5px;
}

.contact .contact-form .form-field-input.is-invalid ~ .invalid-feedback,
.contact .contact-form .form-field-textarea.is-invalid ~ .invalid-feedback {
  display: block;
}

.contact .contact-form .form-submit-button {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: 0;
  padding: 12px 30px;
  transition: all 0.4s ease;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.contact .contact-form .form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 158, 255, 0.3);
}

.contact .contact-form .form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact .contact-form .form-status {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Cookie Popup - Bottom Banner Design
--------------------------------------------------------------*/

#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

#cookie-popup.show {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: all !important;
}

.cookie-wrapper {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a237e 100%);
  background-color: #0d1b2a;
  border-top: 3px solid rgba(74, 158, 255, 0.6);
  box-shadow: 
    0 -20px 60px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(74, 158, 255, 0.3) inset,
    0 -8px 32px rgba(74, 158, 255, 0.4);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

.cookie-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--heading-color) 0%, 
    rgba(74, 158, 255, 0.8) 50%, 
    var(--accent-color) 100%);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.5);
  animation: shimmer 3s ease-in-out infinite;
}

.cookie-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(30, 90, 138, 0.08) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% {
  opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cookie-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.5), rgba(30, 90, 138, 0.5));
  background-color: rgba(74, 158, 255, 0.2);
  border-radius: 16px;
  border: 2px solid rgba(74, 158, 255, 0.6);
  color: var(--heading-color);
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 2;
  box-shadow: 
    0 8px 24px rgba(74, 158, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: cookieIconFloat 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.cookie-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 32px rgba(74, 158, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cookie-icon:hover::before {
  opacity: 0.3;
}

@keyframes cookieIconFloat {
  0%, 100% {
  transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cookie-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  padding: 0;
}

.cookie-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 10px rgba(74, 158, 255, 0.2);
  display: block;
}

.cookie-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
  padding: 0;
  opacity: 1;
  letter-spacing: 0.1px;
  display: block;
}

.cookie-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  position: relative;
  padding-bottom: 2px;
}

.cookie-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  transition: width 0.3s ease;
}

.cookie-link:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(74, 158, 255, 0.3);
}

.cookie-link:hover::after {
  width: 100%;
}

.cookie-buttons {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  min-width: 140px;
}

.cookie-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  min-width: 140px;
  min-height: 48px;
  background: linear-gradient(135deg, var(--heading-color) 0%, rgba(74, 158, 255, 0.9) 50%, var(--accent-color) 100%);
  background-color: var(--heading-color);
  background-size: 200% 200%;
  color: var(--contrast-color);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 6px 20px rgba(74, 158, 255, 0.4),
    0 0 0 0 rgba(74, 158, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  font-family: var(--default-font);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  animation: gradientShift 3s ease infinite;
  text-decoration: none;
  line-height: 1;
}

.cookie-accept::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cookie-accept:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 10px 30px rgba(74, 158, 255, 0.5),
    0 0 0 4px rgba(74, 158, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background-position: right center;
}

.cookie-accept:hover::before {
  left: 100%;
}

.cookie-accept:active {
  transform: translateY(-1px) scale(0.98);
}

.cookie-accept span {
  display: inline-block;
  line-height: 1;
}

.cookie-accept i {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
  width: auto;
  height: auto;
}

.cookie-accept:hover i {
  transform: translateX(3px);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Additional styles for all elements */
.cookie-wrapper * {
  box-sizing: border-box;
}

.cookie-wrapper p {
  margin: 0;
  padding: 0;
}

.cookie-wrapper h4 {
  margin: 0;
  padding: 0;
}

.cookie-accept:focus {
  outline: 2px solid rgba(74, 158, 255, 0.5);
  outline-offset: 2px;
}

.cookie-accept:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    text-align: center;
    min-height: auto;
  }

  .cookie-icon {
    align-self: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    font-size: 28px;
  }

  .cookie-heading {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .cookie-description {
    font-size: 15px;
    margin-bottom: 0;
  }

  .cookie-buttons {
    width: 100%;
    min-width: 100%;
  }

  .cookie-accept {
    width: 100%;
    min-width: 100%;
    justify-content: center;
    padding: 14px 28px;
    min-height: 48px;
  }
}

@media (max-width: 576px) {
  .cookie-wrapper {
    padding: 20px;
    gap: 20px;
    min-height: auto;
  }

  .cookie-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    font-size: 26px;
  }

  .cookie-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .cookie-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .cookie-buttons {
    width: 100%;
    min-width: 100%;
  }

  .cookie-accept {
    width: 100%;
    min-width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    min-height: 44px;
  }
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.about_elem {
  margin-bottom: 2rem;
}



.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0); 
  border: 1px solid var(--bg-color); 
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Growth Section
--------------------------------------------------------------*/
.growth {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.4) 0%, rgba(26, 37, 126, 0.3) 50%, rgba(13, 27, 42, 0.4) 100%);
  backdrop-filter: blur(15px);
  color: var(--default-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.growth-content {
  position: relative;
  z-index: 2;
}

.growth-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 25px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.growth-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.growth-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 40px;
}

.growth-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.growth-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-growth-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2d6bbf 100%);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 90, 138, 0.4);
  border: 1px solid rgba(30, 90, 138, 0.3);
}

.btn-growth-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 90, 138, 0.6);
  background: linear-gradient(135deg, #2d6bbf 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
}

.btn-growth-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-growth-secondary:hover {
  background: rgba(74, 158, 255, 0.2);
  border-color: var(--heading-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.growth-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-card {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.growth-card i {
  font-size: 40px;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.growth-card span {
  font-size: 12px;
  color: var(--default-color);
  text-align: center;
  font-weight: 600;
}

.growth-card:hover {
  transform: translateY(-10px) scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 12px 35px rgba(30, 90, 138, 0.5);
}

.growth-card-1 {
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.growth-card-2 {
  top: 20%;
  right: 15%;
  animation: float 7s ease-in-out infinite 1s;
}

.growth-card-3 {
  bottom: 25%;
  left: 15%;
  animation: float 8s ease-in-out infinite 2s;
}

.growth-card-4 {
  bottom: 15%;
  right: 10%;
  animation: float 6.5s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .growth-title {
    font-size: 36px;
  }
  
  .growth-visual {
    height: 400px;
    margin-top: 50px;
  }
  
  .growth-card {
    width: 120px;
    height: 120px;
  }
  
  .growth-stats {
    gap: 30px;
  }
}

.lead  {
  color: var(--accent-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Technologies Section
--------------------------------------------------------------*/
.technologies {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 25px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.section-subtitle {
  font-size: 18px;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.tech-card-wrapper {
  position: relative;
}

.tech-card {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.tech-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.tech-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(30, 90, 138, 0.3), rgba(74, 158, 255, 0.2));
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-color: var(--heading-color);
  transform: rotate(5deg) scale(1.1);
}

.tech-icon {
  font-size: 32px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
  color: var(--contrast-color);
}

.tech-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(74, 158, 255, 0.1);
  font-family: var(--heading-font);
  line-height: 1;
}

.tech-card-body {
  flex: 1;
}

.tech-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.tech-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 20px;
}

.tech-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-features li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: rgba(224, 224, 224, 0.9);
  font-size: 14px;
}

.tech-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 12px;
}

.tech-card-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.tech-link {
  display: inline-flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.tech-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.tech-link i {
  transition: transform 0.3s ease;
}

.tech-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .technologies-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 32px;
  }
}


/*--------------------------------------------------------------
# Privacy, Terms, Cookie, Thanks Pages Styles - Modern
--------------------------------------------------------------*/

/* Legal Pages Hero (Privacy, Cookie, Terms) */
.legal-banner {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.legal-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(26, 35, 126, 0.95));
  z-index: 0;
}

.legal-banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 90, 138, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  animation: gridMove 20s linear infinite;
}

.legal-banner-content {
  position: relative;
  z-index: 1;
}

.legal-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out;
}

.legal-banner-badge i {
  font-size: 18px;
}

.legal-banner-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.legal-banner-title .accent-text {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-banner-subtitle {
  font-size: 20px;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Legal Pages Content */
.legal-body {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.legal-body-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.3);
  z-index: 0;
}

.legal-body-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.4;
}

.legal-body-wrapper {
  position: relative;
  z-index: 1;
}

.legal-body-item {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.legal-body-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.legal-body-item:hover {
  transform: translateY(-5px);
  border-color: var(--heading-color);
  box-shadow: 0 15px 40px rgba(74, 158, 255, 0.2);
}

.legal-body-item:hover::before {
  transform: scaleX(1);
}

.legal-body-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(30, 90, 138, 0.2));
  border-radius: 16px;
  margin-bottom: 25px;
  color: var(--heading-color);
  font-size: 28px;
}

.legal-body-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.legal-body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
  opacity: 0.9;
}

.legal-body-text:last-child {
  margin-bottom: 0;
}

.legal-body-text strong {
  color: var(--heading-color);
  font-weight: 600;
}

.legal-body-text a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.legal-body-text a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.legal-body-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-body-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--default-color);
  line-height: 1.7;
  border-bottom: 1px solid rgba(74, 158, 255, 0.1);
}

.legal-body-list li:last-child {
  border-bottom: none;
}

.legal-body-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--heading-color);
  font-weight: 700;
  font-size: 18px;
}

.legal-body-list li strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* Thanks Page Hero */
.thanks-banner {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.thanks-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(26, 35, 126, 0.95));
  z-index: 0;
}

.thanks-banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(74, 158, 255, 0.15) 0%, transparent 70%);
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}

.thanks-banner-content {
  position: relative;
  z-index: 1;
}

.thanks-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out;
}

.thanks-icon-bg {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.3), rgba(30, 90, 138, 0.3));
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.thanks-icon {
  position: relative;
  font-size: 64px;
  color: #0596d2;
  z-index: 1;
  animation: scaleIn 0.6s ease-out 0.3s both;
}

.thanks-banner-title {
  font-size: 64px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.thanks-banner-title .accent-text {
  background: linear-gradient(135deg, #0596d2, var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-banner-subtitle {
  font-size: 22px;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Thanks Page Content */
.thanks-body {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.thanks-body-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.3);
  z-index: 0;
}

.thanks-body-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(74, 158, 255, 0.05) 0%, transparent 70%);
  opacity: 0.4;
}

.thanks-body-wrapper {
  position: relative;
  z-index: 1;
}

.thanks-message {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 40px;
}

.thanks-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
  opacity: 0.9;
}

.thanks-text:last-child {
  margin-bottom: 0;
}

.thanks-text strong {
  color: var(--heading-color);
  font-weight: 600;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-thanks,
.btn-thanks-alt {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
}

.btn-thanks {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  color: var(--contrast-color);
  box-shadow: 0 8px 24px rgba(74, 158, 255, 0.3);
}

.btn-thanks:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(74, 158, 255, 0.4);
  color: var(--contrast-color);
}

.btn-thanks-alt {
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 158, 255, 0.3);
  color: var(--heading-color);
}

.btn-thanks-alt:hover {
  transform: translateY(-3px);
  border-color: var(--heading-color);
  background: rgba(13, 27, 42, 0.8);
  color: var(--heading-color);
}

/* Animations */
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .legal-banner-title,
  .thanks-banner-title {
    font-size: 40px;
  }
  
  .legal-banner-subtitle,
  .thanks-banner-subtitle {
    font-size: 18px;
  }
  
  .legal-body-item,
  .thanks-message {
    padding: 30px 20px;
  }
  
  .thanks-actions {
    flex-direction: column;
  }
  
  .btn-thanks,
  .btn-thanks-alt {
  width: 100%;
    justify-content: center;
  }
  
  .thanks-icon-bg {
    width: 100px;
    height: 100px;
  }
  
  .thanks-icon {
    font-size: 52px;
  }
}

/*--------------------------------------------------------------
# Responsive Styles for All Pages
--------------------------------------------------------------*/

@media (max-width: 992px) {
  .overview,
  .purpose,
  .principles,
  .details,
  .information,
  .answers,
  .questions {
    padding: 60px 0;
  }

  .mission-card,
  .contact-info-card {
    margin-bottom: 30px;
  }

  .company-info-card {
    padding: 30px 20px;
  }

  .company-info-table td:first-child {
    width: 35%;
    min-width: 120px;
  }

  .value-item {
    margin-bottom: 20px;
  }

}

@media (max-width: 768px) {
  .overview,
  .purpose,
  .principles,
  .details,
  .information,
  .answers,
  .questions {
    padding: 40px 0;
  }

  .overview .about_elem .d-flex {
    padding: 15px;
  }

  .mission-card,
  .contact-info-card {
    padding: 25px 20px;
  }

  .mission-card h3,
  .contact-info-card h3 {
    font-size: 20px;
  }

  .company-info-card {
    padding: 25px 15px;
  }

  .company-info-card h3 {
    font-size: 24px;
}

.company-info-table td {
    padding: 12px 8px;
    font-size: 14px;
}

.company-info-table td:first-child {
    width: 100%;
    display: block;
    margin-bottom: 5px;
  }

  .company-info-table td:last-child {
    display: block;
    padding-top: 0;
  }

  .value-item {
    padding: 20px;
  }

  .value-icon {
    min-width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .value-item h4 {
    font-size: 18px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-icon {
    min-width: 35px;
    height: 35px;
    font-size: 16px;
  }

}

@media (max-width: 576px) {
  .overview img {
    margin-top: 30px;
  }

  .faq-item-header {
    flex-wrap: wrap;
  }

  .faq-item h3 {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Showcase Section - Modern Design
--------------------------------------------------------------*/
.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(26, 37, 126, 0.85) 50%, rgba(13, 27, 42, 0.95) 100%);
}

.orb-effect {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-one {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.6), transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-two {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 90, 138, 0.5), transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.orb-three {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.4), transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(74, 158, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 158, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.badge-pulse {
  position: absolute;
  left: 12px;
  width: 8px;
  height: 8px;
  background: var(--heading-color);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-badge i {
  font-size: 16px;
  color: var(--heading-color);
}

.hero-heading {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--heading-color) 0%, rgba(74, 158, 255, 0.8) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-text {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: left;
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-features {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 30px;
  color: rgba(224, 224, 224, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(74, 158, 255, 0.2);
  border-color: var(--heading-color);
  transform: translateY(-2px);
}

.feature-tag i {
  font-size: 16px;
  color: var(--heading-color);
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--heading-color) 0%, rgba(74, 158, 255, 0.9) 100%);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(74, 158, 255, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.6);
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.95) 0%, var(--heading-color) 100%);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  color: var(--default-color);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(74, 158, 255, 0.15);
  border-color: var(--heading-color);
  color: var(--heading-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
}

.hero-visual {
  position: relative;
  z-index: 2;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.center-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.center-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.4), transparent 70%);
  border-radius: 50%;
  animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.center-icon {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--contrast-color);
  box-shadow: 0 10px 40px rgba(74, 158, 255, 0.5);
  border: 4px solid rgba(13, 27, 42, 0.8);
}

.floating-card {
  position: absolute;
  width: 180px;
  padding: 20px;
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  overflow: hidden;
}

.card-one {
  top: 10%;
  left: 0;
  animation: cardFloat1 6s ease-in-out infinite;
}

.card-two {
  top: 0;
  right: 0;
  animation: cardFloat2 8s ease-in-out infinite;
}

.card-three {
  bottom: 10%;
  left: 10%;
  animation: cardFloat3 7s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -15px) rotate(2deg);
  }
}

@keyframes cardFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, 15px) rotate(-2deg);
  }
}

@keyframes cardFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -10px) rotate(1deg);
  }
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--heading-color);
  box-shadow: 0 15px 50px rgba(74, 158, 255, 0.5);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.card-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.card-text p {
  font-size: 12px;
  color: rgba(224, 224, 224, 0.7);
  margin: 0;
}

.card-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--heading-color);
  border-radius: 50%;
  animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

@media (max-width: 1199px) {
  .hero-heading {
    font-size: 56px;
  }
  
  .hero-visual {
    height: 500px;
    margin-top: 60px;
  }
  
  .floating-card {
    width: 150px;
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .landing-hero {
    min-height: auto;
    padding: 80px 0;
  }
  
  .hero-heading {
    font-size: 48px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-value {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hero-heading {
    font-size: 36px;
  }
  
  .hero-text {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-value {
    font-size: 32px;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .floating-card {
    width: 120px;
    padding: 12px;
  }
  
  .center-icon {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Methods Section - Modern Design
--------------------------------------------------------------*/
.solutions-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
  overflow: hidden;
}

.solutions-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.solutions-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.solutions-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.solutions-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.solutions-badge i {
  font-size: 16px;
}

.solutions-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.accent-text {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.solutions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.solution-card {
  position: relative;
  height: 100%;
}

.solution-inner {
  position: relative;
  height: 100%;
  padding: 40px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.solution-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-inner::before {
  transform: scaleX(1);
}

.solution-card:hover .solution-inner {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 20px 60px rgba(74, 158, 255, 0.3);
  background: rgba(13, 27, 42, 0.85);
}

.solution-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(74, 158, 255, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: var(--heading-font);
  opacity: 0.5;
}

.solution-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.solution-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 20px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.solution-icon {
  position: relative;
  z-index: 2;
  font-size: 36px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.solution-content {
  flex: 1;
  margin-bottom: 30px;
}

.solution-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.solution-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 25px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(224, 224, 224, 0.9);
}

.solution-features li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.solution-footer {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.solution-link:hover {
  gap: 15px;
  color: var(--accent-color);
}

.solution-link i {
  transition: transform 0.3s ease;
}

.solution-link:hover i {
  transform: translateX(5px);
}

.solution-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.solution-card:hover .solution-hover {
  width: 300px;
  height: 300px;
}

@media (max-width: 1199px) {
  .solutions-list {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .solutions-section {
    padding: 80px 0;
  }
  
  .solutions-title {
    font-size: 42px;
  }
  
  .solutions-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .solutions-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solution-inner {
    padding: 30px;
  }
  
  .solutions-title {
    font-size: 32px;
  }
  
  .solution-number {
    font-size: 56px;
    top: 20px;
    right: 20px;
  }
}

/*--------------------------------------------------------------
# Excellence Section - Modern Design
--------------------------------------------------------------*/
.features-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.features-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 90, 138, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.features-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.features-badge i {
  font-size: 16px;
}

.features-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.features-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.features-content {
  position: relative;
  z-index: 2;
}

.feature-item {
  margin-bottom: 100px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-inner {
  padding: 60px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 32px;
  transition: all 0.4s ease;
}

.feature-item:hover .feature-inner {
  border-color: rgba(74, 158, 255, 0.4);
  box-shadow: 0 20px 60px rgba(74, 158, 255, 0.2);
  transform: translateY(-5px);
}

.feature-content-wrap {
  position: relative;
}

.feature-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(74, 158, 255, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: var(--heading-font);
  opacity: 0.3;
  z-index: 0;
}

.feature-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 24px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.feature-icon {
  position: relative;
  z-index: 2;
  font-size: 42px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.feature-description {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 20px;
}

.feature-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 30px;
}

.tech-list {
  margin-bottom: 30px;
}

.tech-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(74, 158, 255, 0.05);
  border: 1px solid rgba(74, 158, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(74, 158, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.3);
  transform: translateX(5px);
}

.tech-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.tech-content {
  flex: 1;
}

.tech-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.tech-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
}

.feature-list {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.feature-list-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.2);
  border-radius: 25px;
  color: rgba(224, 224, 224, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.feature-list-item i {
  color: var(--accent-color);
  font-size: 16px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.feature-link:hover {
  gap: 18px;
  color: var(--accent-color);
}

.feature-link i {
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(5px);
}

.feature-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.feature-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-image-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.3), transparent 70%);
  animation: imageGlow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes imageGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.feature-item:hover .feature-image {
  transform: scale(1.05);
}

.feature-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.3), rgba(26, 37, 126, 0.2));
  z-index: 3;
  transition: opacity 0.3s ease;
}

.feature-item:hover .feature-image-overlay {
  opacity: 0.5;
}

.feature-stats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  pointer-events: none;
}

.floating-stat {
  position: absolute;
  padding: 15px 20px;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floatStat 6s ease-in-out infinite;
}

.floating-one {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-two {
  bottom: 20%;
  right: -20px;
  animation-delay: 2s;
}

.floating-three {
  top: 15%;
  left: -20px;
  animation-delay: 1s;
}

.floating-four {
  bottom: 15%;
  left: -20px;
  animation-delay: 3s;
}

@keyframes floatStat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-15px) translateX(5px);
  }
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--heading-color);
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--heading-font);
}

.stat-text {
  font-size: 12px;
  color: rgba(224, 224, 224, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item-reverse .feature-inner {
  background: rgba(13, 27, 42, 0.7);
}

@media (max-width: 1199px) {
  .feature-inner {
    padding: 50px;
  }
  
  .features-title {
    font-size: 48px;
  }
  
  .feature-title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .features-section {
    padding: 80px 0;
  }
  
  .feature-item {
    margin-bottom: 60px;
  }
  
  .feature-inner {
    padding: 40px;
  }
  
  .features-title {
    font-size: 42px;
  }
  
  .feature-visual {
    margin-top: 40px;
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .feature-inner {
    padding: 30px;
  }
  
  .features-title {
    font-size: 32px;
  }
  
  .feature-title {
    font-size: 24px;
  }
  
  .feature-number {
    font-size: 80px;
    top: -10px;
    left: -10px;
  }
  
  .floating-stat {
    display: none;
  }
}

/*--------------------------------------------------------------
# Introduction Section - Modern Design
--------------------------------------------------------------*/
.intro-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(26, 37, 126, 0.85) 50%, rgba(13, 27, 42, 0.9) 100%);
}

.intro-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 90, 138, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.min-vh-75 {
  min-height: 75vh;
}

.intro-content {
  position: relative;
  z-index: 2;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.badge-dot {
  position: absolute;
  left: 12px;
  width: 8px;
  height: 8px;
  background: var(--heading-color);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.intro-badge i {
  font-size: 16px;
  color: var(--heading-color);
}

.intro-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: -1px;
}

.title-highlight {
  background: linear-gradient(135deg, var(--heading-color) 0%, rgba(74, 158, 255, 0.8) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
}

.intro-highlights {
  margin-bottom: 45px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(74, 158, 255, 0.05);
  border: 1px solid rgba(74, 158, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(74, 158, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.3);
  transform: translateX(5px);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--heading-color);
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
}

.intro-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-intro-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--heading-color) 0%, rgba(74, 158, 255, 0.9) 100%);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(74, 158, 255, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-intro-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-intro-primary:hover::before {
  left: 100%;
}

.btn-intro-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.6);
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.95) 0%, var(--heading-color) 100%);
}

.btn-intro-primary i {
  transition: transform 0.3s ease;
}

.btn-intro-primary:hover i {
  transform: translateX(5px);
}

.btn-intro-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  color: var(--default-color);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-intro-secondary:hover {
  background: rgba(74, 158, 255, 0.15);
  border-color: var(--heading-color);
  color: var(--heading-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
}

.intro-visual {
  position: relative;
  z-index: 2;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-visual-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.intro-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.intro-center-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.4), transparent 70%);
  border-radius: 50%;
  animation: centerPulse 3s ease-in-out infinite;
}

.intro-center-content {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--contrast-color);
  box-shadow: 0 10px 40px rgba(74, 158, 255, 0.5);
  border: 4px solid rgba(13, 27, 42, 0.8);
}

.intro-center-content i {
  font-size: 48px;
  margin-bottom: 5px;
}

.intro-center-content span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.intro-card {
  position: absolute;
  width: 160px;
  padding: 20px;
  background: rgba(13, 27, 42, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  overflow: hidden;
}

.intro-card-one {
  top: 5%;
  left: 0;
  animation: introCardFloat1 7s ease-in-out infinite;
}

.intro-card-two {
  top: 0;
  right: 0;
  animation: introCardFloat2 8s ease-in-out infinite;
}

.intro-card-three {
  bottom: 10%;
  left: 5%;
  animation: introCardFloat3 6s ease-in-out infinite;
}

.intro-card-four {
  bottom: 5%;
  right: 5%;
  animation: introCardFloat4 7.5s ease-in-out infinite;
}

@keyframes introCardFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -20px) rotate(2deg);
  }
}

@keyframes introCardFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(-2deg);
  }
}

@keyframes introCardFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -10px) rotate(1deg);
  }
}

@keyframes introCardFloat4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -15px) rotate(-1deg);
  }
}

.intro-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--heading-color);
  box-shadow: 0 15px 50px rgba(74, 158, 255, 0.5);
}

.intro-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.intro-card:hover .intro-card-glow {
  opacity: 1;
}

.intro-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.intro-card-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

.intro-card-content p {
  font-size: 12px;
  color: rgba(224, 224, 224, 0.7);
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .intro-title {
  font-size: 48px;
  }
  
  .intro-visual {
    height: 500px;
    margin-top: 60px;
  }
  
  .intro-card {
    width: 140px;
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .intro-section {
    padding: 80px 0;
  }
  
  .intro-title {
    font-size: 42px;
  }
  
  .min-vh-75 {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .intro-title {
    font-size: 32px;
  }
  
  .intro-description {
    font-size: 16px;
  }
  
  .intro-visual {
    height: 400px;
  }
  
  .intro-card {
    width: 120px;
    padding: 12px;
  }
  
  .intro-center-content {
    width: 120px;
    height: 120px;
  }
  
  .intro-center-content i {
    font-size: 36px;
  }
  
  .intro-center-content span {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Courses Section - Modern Design
--------------------------------------------------------------*/
.services-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.services-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.services-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.services-badge i {
  font-size: 16px;
}

.services-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.services-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.tech-card {
  position: relative;
  height: 100%;
}

.tech-card-inner {
  position: relative;
  height: 100%;
  padding: 40px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tech-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--heading-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.tech-card:hover .tech-card-inner::before {
  transform: scaleX(1);
}

.tech-card:hover .tech-card-inner {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 20px 60px rgba(74, 158, 255, 0.3);
  background: rgba(13, 27, 42, 0.85);
}

.tech-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.tech-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 20px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.tech-card:hover .tech-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.tech-icon {
  position: relative;
  z-index: 2;
  font-size: 36px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tech-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.tech-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 30px;
  flex: 1;
}

.tech-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.tech-link:hover {
  gap: 15px;
  color: var(--accent-color);
}

.tech-link i {
  transition: transform 0.3s ease;
}

.tech-link:hover i {
  transform: translateX(5px);
}

.tech-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.tech-card:hover .tech-hover {
  width: 300px;
  height: 300px;
}

.tech-card-large {
  grid-column: span 1;
}

.tech-card-wide {
  grid-column: span 2;
}

@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
  
  .tech-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }
  
  .services-title {
    font-size: 42px;
  }
  
  .services-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tech-card-inner {
    padding: 30px;
  }
  
  .services-title {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Benefits Section - Modern Design
--------------------------------------------------------------*/
.benefits-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.benefits-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(30, 90, 138, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.benefits-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.benefits-badge i {
  font-size: 16px;
}

.benefits-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.benefits-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  position: relative;
  height: 100%;
}

.benefit-inner {
  position: relative;
  height: 100%;
  padding: 50px 40px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover .benefit-inner {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 25px 70px rgba(74, 158, 255, 0.3);
  background: rgba(13, 27, 42, 0.85);
}

.benefit-card-featured .benefit-inner {
  border-color: rgba(74, 158, 255, 0.4);
  background: rgba(13, 27, 42, 0.8);
}

.benefit-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  color: var(--contrast-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}

.benefit-header {
  text-align: center;
  margin-bottom: 35px;
}

.benefit-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.benefit-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 24px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.benefit-icon {
  position: relative;
  z-index: 2;
  font-size: 42px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.benefit-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.benefit-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.benefit-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: var(--heading-font);
}

.benefit-label {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-body {
  flex: 1;
  margin-bottom: 35px;
}

.benefit-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: rgba(224, 224, 224, 0.9);
}

.benefit-features li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.benefit-footer {
  margin-top: auto;
}

.btn-benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(74, 158, 255, 0.1);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-benefit:hover {
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.9));
  border-color: var(--heading-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

.btn-benefit i {
  transition: transform 0.3s ease;
}

.btn-benefit:hover i {
  transform: translateX(5px);
}

.btn-benefit-featured {
  background: linear-gradient(135deg, var(--heading-color), rgba(74, 158, 255, 0.9));
  border-color: var(--heading-color);
  color: var(--contrast-color);
}

.btn-benefit-featured:hover {
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.95), var(--heading-color));
}

.benefit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.15), transparent 70%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.benefit-card:hover .benefit-glow {
  width: 400px;
  height: 400px;
}

@media (max-width: 1199px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .benefits-section {
    padding: 80px 0;
  }
  
  .benefits-title {
    font-size: 42px;
  }
  
  .benefits-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-inner {
    padding: 40px 30px;
  }
  
  .benefits-title {
    font-size: 32px;
  }
  
  .benefit-number {
    font-size: 48px;
  }
}

/*--------------------------------------------------------------
# Feedback Section - Modern Design
--------------------------------------------------------------*/
.testimonials-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.testimonials-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.testimonials-badge i {
  font-size: 16px;
}

.testimonials-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.testimonials-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.review-card {
  position: relative;
  height: 100%;
}

.review-card-inner {
  position: relative;
  height: 100%;
  padding: 40px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-card:hover .review-card-inner {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 20px 60px rgba(74, 158, 255, 0.3);
  background: rgba(13, 27, 42, 0.85);
}

.review-quote {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgba(74, 158, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--heading-color);
  opacity: 0.5;
}

.review-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.review-rating i {
  color: #ffc107;
  font-size: 18px;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 30px;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.review-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--heading-color);
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.review-role {
  font-size: 14px;
  color: rgba(224, 224, 224, 0.7);
}

.review-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.review-card:hover .review-hover {
  width: 300px;
  height: 300px;
}

@media (max-width: 1199px) {
  .reviews-list {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonials-title {
    font-size: 42px;
  }
  
  .testimonials-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .reviews-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card-inner {
    padding: 30px;
  }
  
  .testimonials-title {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# About Page - Modern Design
--------------------------------------------------------------*/
.about-overview {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
  overflow: hidden;
}

.about-overview-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-overview-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.about-overview-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.about-overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-overview-badge i {
  font-size: 16px;
}

.about-overview-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.about-overview-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.about-features {
  position: relative;
  z-index: 2;
}

.about-feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateX(10px);
  border-color: rgba(74, 158, 255, 0.4);
  box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
  background: rgba(13, 27, 42, 0.75);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--heading-color);
  flex-shrink: 0;
}

.about-feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.about-feature-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
}

.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.3), transparent 70%);
  animation: imageGlow 4s ease-in-out infinite;
  z-index: 1;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.about-image-wrap:hover .about-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.3), rgba(26, 37, 126, 0.2));
  z-index: 3;
  transition: opacity 0.3s ease;
}

.about-image-wrap:hover .about-image-overlay {
  opacity: 0.5;
}

.about-mission {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
  overflow: hidden;
}

.about-mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-mission-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(30, 90, 138, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.about-mission-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.about-mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-mission-badge i {
  font-size: 16px;
}

.about-mission-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.about-mission-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.mission-card {
  position: relative;
  height: 100%;
}

.mission-card-inner {
  position: relative;
  height: 100%;
  padding: 40px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mission-card:hover .mission-card-inner {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 20px 60px rgba(74, 158, 255, 0.3);
  background: rgba(13, 27, 42, 0.85);
}

.mission-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
}

.mission-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 24px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.mission-card:hover .mission-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.mission-icon {
  position: relative;
  z-index: 2;
  font-size: 42px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mission-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.mission-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
}

.mission-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.mission-card:hover .mission-hover {
  width: 300px;
  height: 300px;
}

.about-company {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
  overflow: hidden;
}

.about-company-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-company-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.about-company-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.about-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-company-badge i {
  font-size: 16px;
}

.about-company-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.company-info-card {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 28px;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.company-info-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(74, 158, 255, 0.05);
  border: 1px solid rgba(74, 158, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.company-info-item:hover {
  background: rgba(74, 158, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.3);
  transform: translateY(-5px);
}

.company-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--heading-color);
  flex-shrink: 0;
}

.company-info-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.company-info-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.9);
  margin: 0;
}

.company-info-content a {
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.company-info-content a:hover {
  color: var(--accent-color);
}

.about-values {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
  overflow: hidden;
}

.about-values-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-values-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(30, 90, 138, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.about-values-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.about-values-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-values-badge i {
  font-size: 16px;
}

.about-values-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.about-values-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.value-card {
  position: relative;
  height: 100%;
}

.value-card-inner {
  position: relative;
  height: 100%;
  padding: 35px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  gap: 20px;
}

.value-card:hover .value-card-inner {
  transform: translateX(10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 15px 40px rgba(74, 158, 255, 0.3);
  background: rgba(13, 27, 42, 0.85);
}

.value-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.value-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 18px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.value-icon {
  position: relative;
  z-index: 2;
  font-size: 32px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.value-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.value-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.8);
  margin: 0;
}

.value-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.value-card:hover .value-hover {
  width: 300px;
  height: 300px;
}

@media (max-width: 991px) {
  .about-overview,
  .about-mission,
  .about-company,
  .about-values {
    padding: 80px 0;
  }
  
  .about-overview-title,
  .about-mission-title,
  .about-company-title,
  .about-values-title {
    font-size: 42px;
  }
  
  .about-image-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .about-overview-title,
  .about-mission-title,
  .about-company-title,
  .about-values-title {
    font-size: 32px;
  }
  
  .about-mission-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .company-info-grid {
    grid-template-columns: 1fr;
  }
  
  .company-info-card {
    padding: 30px;
  }
}

/*--------------------------------------------------------------
# Contact Page - Modern Design
--------------------------------------------------------------*/
.contact-form-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
  overflow: hidden;
}

.contact-form-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-form-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.contact-form-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-form-badge i {
  font-size: 16px;
}

.contact-form-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-form-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-wrapper {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
  position: relative;
}

.form-field-group {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.required-star {
  color: #ff4d4d;
  margin-left: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--default-color);
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(74, 158, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--heading-color);
  box-shadow: 0 0 0 4px rgba(74, 158, 255, 0.1);
  background: rgba(13, 27, 42, 0.8);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(224, 224, 224, 0.5);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #df1529;
}

.form-input.is-valid,
.form-textarea.is-valid {
  border-color: #0596d2;
}

.invalid-feedback {
  display: none;
  color: #df1529;
  font-size: 13px;
  margin-top: 8px;
}

.form-input.is-invalid ~ .invalid-feedback,
.form-textarea.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--heading-color) 0%, rgba(74, 158, 255, 0.9) 100%);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(74, 158, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.form-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.form-submit-button:hover::before {
  left: 100%;
}

.form-submit-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 158, 255, 0.6);
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.95) 0%, var(--heading-color) 100%);
}

.form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-submit-button i {
  transition: transform 0.3s ease;
}

.form-submit-button:hover i {
  transform: translateX(5px);
}

.form-status {
  margin-top: 20px;
}

.loading,
.error-message,
.sent-message {
  padding: 12px 20px;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 14px;
  display: none;
}

.loading {
  background: rgba(74, 158, 255, 0.1);
  color: var(--heading-color);
  border: 1px solid rgba(74, 158, 255, 0.3);
}

.error-message {
  background: rgba(223, 21, 41, 0.1);
  color: #df1529;
  border: 1px solid rgba(223, 21, 41, 0.3);
}

.sent-message {
  background: rgba(5, 150, 82, 0.1);
  color: #0596d2;
  border: 1px solid rgba(5, 150, 82, 0.3);
}

.contact-info {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-info-card {
  padding: 6%;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-info-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--heading-color);
  margin: 0 auto;
}

.contact-info-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.contact-info-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 15px;
}

.contact-email {
  margin-top: 20px;
}

.contact-email a {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-email a:hover {
  color: var(--accent-color);
}

.contact-info-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
  overflow: hidden;
}

.contact-info-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-info-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(30, 90, 138, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.contact-info-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.contact-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-info-badge i {
  font-size: 16px;
}

.contact-info-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-info-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.contact-info-card {
  position: relative;
  height: 100%;
}

.contact-info-card-inner {
  position: relative;
  height: 100%;
  padding: 40px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.contact-info-card:hover .contact-info-card-inner {
  transform: translateY(-10px);
  border-color: rgba(74, 158, 255, 0.5);
  box-shadow: 0 20px 60px rgba(74, 158, 255, 0.3);
  background: rgba(13, 27, 42, 0.85);
}

.contact-info-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.contact-info-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 20px;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.contact-info-card:hover .contact-info-icon-bg {
  transform: rotate(45deg) scale(1.1);
}

.contact-info-icon {
  position: relative;
  z-index: 2;
  font-size: 36px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 540px;
  height: 820px;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.contact-info-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 10px;
}

.contact-info-text a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-text a:hover {
  color: var(--accent-color);
}

.contact-info-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(224, 224, 224, 0.7);
  margin: 0;
}

.contact-info-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.1), transparent 70%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.contact-info-card:hover .contact-info-hover {
  width: 300px;
  height: 300px;
}

@media (max-width: 991px) {
  .contact-form-section,
  .contact-info-section {
    padding: 80px 0;
  }
  
  .contact-form-title,
  .contact-info-title {
    font-size: 42px;
  }
  
  .contact-form-wrapper {
    padding: 40px;
  }
  
  .contact-info {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .contact-form-title,
  .contact-info-title {
    font-size: 32px;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*--------------------------------------------------------------
# FAQ Page - Modern Design
--------------------------------------------------------------*/
.faq-section,
.faq-additional {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.faq-section {
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
}

.faq-additional {
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.8) 0%, rgba(13, 27, 42, 0.95) 100%);
}

.faq-bg,
.faq-additional-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.faq-pattern,
.faq-additional-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 90, 138, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.faq-header,
.faq-additional-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.faq-badge,
.faq-additional-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(74, 158, 255, 0.1);
  border: 1px solid rgba(74, 158, 255, 0.3);
  border-radius: 50px;
  color: var(--heading-color);
    font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.faq-badge i,
.faq-additional-badge i {
  font-size: 16px;
}

.faq-title,
.faq-additional-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.faq-subtitle,
.faq-additional-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(74, 158, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(74, 158, 255, 0.4);
  box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

.faq-active .faq-content {
    display: block;
  max-height: 2000px;
  padding: 0 30px 30px;
}

.faq-active .faq-toggle {
  transform: rotate(180deg);
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  cursor: pointer;
  position: relative;
}

.faq-icon-wrap {
  width: 50px;
    height: 50px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(74, 158, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon {
  font-size: 24px;
  color: var(--heading-color);
}

.faq-question {
  flex: 1;
    font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--heading-font);
  line-height: 1.4;
}

.faq-toggle {
  font-size: 20px;
  color: var(--heading-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-content {
  display: none;
  padding: 0 30px 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-content p {
    font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 15px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.faq-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.9);
  margin-bottom: 10px;
}

.faq-content a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-content a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.faq-content strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media (max-width: 991px) {
  .faq-section,
  .faq-additional {
    padding: 80px 0;
  }
  
  .faq-title,
  .faq-additional-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .faq-title,
  .faq-additional-title {
    font-size: 32px;
  }
  
  .faq-item-header {
    padding: 20px;
    flex-wrap: wrap;
  }

  .faq-question {
    font-size: 18px;
  }
  
  .faq-content {
    padding: 0 20px 20px;
  }
}