
:root {
  --primary-blue: #016eef;
  --primary-blue-light: #3d8ff3;
  --primary-blue-lighter: #7db3f7;
  --primary-blue-dark: #0156be;
  --primary-blue-darker: #013d8d;
  --primary-blue-hover: #0157c7;

  --bg-darkest: #0a0e27;
  --bg-dark: #0f1420;
  --bg-dark-secondary: #1a1f35;
  --bg-dark-tertiary: #242b45;
  --bg-overlay: rgba(10, 14, 39, 0.95);

  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-50: #f8f9fa;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;

  --text-primary: #ffffff;
  --text-secondary: #a8b3cf;
  --text-tertiary: #6b7280;
  --text-dark: #1f2937;
  --text-muted: #9ca3af;

  --accent-cyan: #00d4ff;
  --accent-green: #10b981;
  --accent-orange: #ff6b35;
  --accent-yellow: #fbbf24;
  --accent-red: #ef4444;
  --accent-purple: #8b5cf6;
  --accent-teal: #14b8a6;

  --gradient-primary: linear-gradient(135deg, #016eef 0%, #0157c7 100%);
  --gradient-primary-soft: linear-gradient(135deg, #016eef 0%, #3d8ff3 50%, #7db3f7 100%);
  --gradient-hero: linear-gradient(180deg, #0a0e27 0%, #0f1420 100%);
  

  --gradient-cyan-blue: linear-gradient(135deg, #00d4ff 0%, #016eef 100%);
  --gradient-blue-purple: linear-gradient(135deg, #016eef 0%, #8b5cf6 100%);
  --gradient-dark-blue: linear-gradient(135deg, #1a1f35 0%, #016eef 100%);

  --gradient-dark-overlay: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 20, 32, 0.98) 100%);
  --gradient-card: linear-gradient(135deg, #1a1f35 0%, #242b45 100%);
  
  --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  --gradient-light-blue: linear-gradient(135deg, #e0f0ff 0%, #f0f7ff 100%);

  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
                  "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", "SF Pro Display", -apple-system, sans-serif;
  --font-mono: "SF Mono", Monaco, "Cascadia Code", "Courier New", monospace;


  --text-xs: 0.75rem;     
  --text-sm: 0.875rem;    
  --text-base: 1rem;      
  --text-lg: 1.125rem;    
  --text-xl: 1.25rem;      
  --text-2xl: 1.5rem;     
  --text-3xl: 1.875rem;    
  --text-4xl: 2.25rem;     
  --text-5xl: 3rem;        
  --text-6xl: 3.75rem;    
  --text-7xl: 4.5rem;   

  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;

  --space-1: 0.25rem;   
  --space-2: 0.5rem;   
  --space-3: 0.75rem;  
  --space-4: 1rem;      
  --space-5: 1.25rem;   
  --space-6: 1.5rem;   
  --space-8: 2rem;    
  --space-10: 2.5rem;
  --space-12: 3rem;    
  --space-16: 4rem;     
  --space-20: 5rem;   
  --space-24: 6rem;     
  --space-32: 8rem;   

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  

  --shadow-blue: 0 10px 40px rgba(1, 110, 239, 0.3);
  --shadow-blue-lg: 0 20px 60px rgba(1, 110, 239, 0.4);
  --shadow-cyan: 0 10px 40px rgba(0, 212, 255, 0.3);

  --radius-sm: 0.375rem;  
  --radius-md: 0.5rem;     
  --radius-lg: 0.75rem;  
  --radius-xl: 1rem;       
  --radius-2xl: 1.5rem;  
  --radius-full: 9999px;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --z-below: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-overlay: 1040;
  --z-modal: 1050;
  --z-tooltip: 1070;

  --container-max: 1280px;
  --container-padding: 2rem;
  --header-height: 80px;

  --border-width: 1px;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-light: #e5e7eb;

  --opacity-10: 0.1;
  --opacity-20: 0.2;
  --opacity-30: 0.3;
  --opacity-50: 0.5;
  --opacity-70: 0.7;
  --opacity-90: 0.9;

  --backdrop-blur-sm: blur(8px);
  --backdrop-blur-md: blur(12px);
  --backdrop-blur-lg: blur(16px);
  --backdrop-blur-xl: blur(20px);
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
    --text-7xl: 3.5rem;
    --container-padding: 1.5rem;
    --header-height: 70px;
    --space-16: 3rem;
    --space-20: 4rem;
    --space-24: 5rem;
  }
}


@media (max-width: 480px) {
  :root {
    --text-3xl: 1.5rem;
    --text-4xl: 1.875rem;
    --text-5xl: 2rem;
    --text-6xl: 2.5rem;
    --text-7xl: 3rem;
    --container-padding: 1rem;
    --header-height: 60px;
    --space-12: 2rem;
    --space-16: 2.5rem;
    --space-20: 3rem;
    --space-24: 4rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999 !important;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.on-light .navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.header.scrolled.on-light .navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.header.scrolled .nav-container {
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.header.scrolled .logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  line-height: 1.5;
}

.header.on-light .nav-link {
  color: rgba(15, 23, 42, 0.75);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.header.on-light .nav-link:hover,
.header.on-light .nav-link.active {
  color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header.scrolled .nav-link {
  padding: 0.4rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.btn-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 2rem;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(1, 110, 239, 0.3);
  white-space: nowrap;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-login:hover::before {
  transform: translateX(100%);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header.on-light .nav-toggle:hover {
  background: rgba(15, 23, 42, 0.05);
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
}

.header.on-light .nav-toggle span {
  background: rgba(15, 23, 42, 0.85);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0a0e27 0%, #141a32 40%, #1d2741 70%, #0a0e27 100%);
  z-index: -1;
}

.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(1, 110, 239, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 110, 239, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary-blue-light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #016EEF, #016cefe5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-large {
  height: 52px;
  padding: 0 2rem;
  font-size: 16px;
}

.btn-primary {
  color: var(--white);
  background: var(--gradient-primary);
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(1, 110, 239, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.45);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.geometric-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 50%;
  border: 2px solid rgba(1, 110, 239, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(1, 110, 239, 0.3),
    inset 0 0 40px rgba(1, 110, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Rings - FIXED CENTERING WITH ROTATION */
.circle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(1, 110, 239, 0.3);
  box-shadow: 0 0 15px rgba(1, 110, 239, 0.1);
}

.ring-1 {
  width: 240px;
  height: 240px;
  border-style: dashed;
  border-width: 2px;
  animation: ringRotate1 20s linear infinite;
}

.ring-2 {
  width: 300px;
  height: 300px;
  border-color: rgba(255, 255, 255, 0.15);
  border-width: 1.5px;
  animation: ringRotate2 30s linear infinite;
}

.ring-3 {
  width: 360px;
  height: 360px;
  border-style: dashed;
  border-width: 1.5px;
  border-color: rgba(1, 110, 239, 0.2);
  animation: ringRotate3 40s linear infinite;
}

/* Ring Rotation Animations - KEEPING TRANSLATE */
@keyframes ringRotate1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ringRotate2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes ringRotate3 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.center-icon {
  position: relative;
  z-index: 11;
  color: var(--primary-blue-light);
  animation: floatIcon 3s ease-in-out infinite;
}

.center-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(1, 110, 239, 0.4));
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Feature Cards */
.feature-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1.5px solid rgba(1, 110, 239, 0.3);
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(1, 110, 239, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  max-width: 250px;
  z-index: 100;
}

.feature-card:hover {
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(1, 110, 239, 0.4);
  border-color: rgba(1, 110, 239, 0.5);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 110, 239, 0.3), rgba(0, 212, 255, 0.2));
  border-radius: 16px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(1, 110, 239, 0.4);
}

.card-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.card-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.card-1 {
  top: 10%;
  right: -10%;
  animation: cardFloat1 3s ease-in-out infinite;
}

.card-2 {
  top: 40%;
  left: -20%;
  animation: cardFloat2 3.5s ease-in-out infinite;
}

.card-3 {
  bottom: 5%;
  right: -10%;
  animation: cardFloat3 4s ease-in-out infinite;
}

@keyframes cardFloat1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardFloat2 {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

@keyframes cardFloat3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


.services-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, #e8f1fd 0%, #f0f7fe 20%, #f8fbff 40%, #ffffff 60%, #f8fbff 80%, #f0f7fe 100%);
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #0a0e27 0%, rgba(10, 14, 39, 0.95) 10%, rgba(10, 14, 39, 0.85) 20%, rgba(10, 14, 39, 0.7) 30%, rgba(10, 14, 39, 0.5) 40%, rgba(10, 14, 39, 0.3) 50%, rgba(10, 14, 39, 0.15) 60%, rgba(232, 241, 253, 0.3) 75%, rgba(232, 241, 253, 0.1) 85%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.75rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.25);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto 3.5rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafcfe 100%);
  padding: 2.5rem 2rem 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.6);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(1, 110, 239, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(1, 110, 239, 0.3);
}

.service-number {
  position: absolute;
  top: -18px;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid #ffffff;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.75rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.icon-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #64748b;
}

.services-cta {
  text-align: center;
  margin-top: 3.5rem;
}


.about-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%);
  overflow: hidden;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1e293b;
  font-weight: 500;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.about-intro strong,
.about-description strong {
  color: #016EEF;
  font-weight: 700;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(1, 110, 239, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(1, 110, 239, 0.35);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose-section {
  background: #f8fafc;
  border-radius: 32px;
  padding: 5rem;
  border: 1px solid rgba(1, 110, 239, 0.05);
  margin-bottom: 6rem;
}

.sub-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  position: relative;
}

.sub-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border-radius: 4px;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1e293b;
  font-weight: 600;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #016EEF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.why-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

.why-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.why-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
}

.due-diligence-section {
  margin-bottom: 6rem;
}

.sub-heading-center {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  position: relative;
}

.sub-heading-center::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border-radius: 4px;
}

.dd-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dd-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.dd-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(1, 110, 239, 0.1);
  border-color: rgba(1, 110, 239, 0.2);
}

.dd-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 110, 239, 0.1);
  border-radius: 12px;
  color: #016EEF;
  flex-shrink: 0;
}

.dd-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

.mission-section {
  background: linear-gradient(135deg, #0a0e27 0%, #1d2741 100%);
  padding: 5rem 4rem;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(10, 14, 39, 0.4);
  border: 1px solid rgba(1, 110, 239, 0.3);
}

.mission-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mission-text {
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.mission-text:last-child {
  margin-bottom: 0;
  font-size: 1.15rem;
  opacity: 0.8;
}

.mission-text strong {
  color: #ffffff;
  font-weight: 700;
}

.reviews-section {
  min-height: 100vh;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0a0e27 0%, #141a32 40%, #1d2741 70%, #0a0e27 100%);
  z-index: -1;
}

.reviews-background .animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(1, 110, 239, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 110, 239, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 10%, rgba(248, 251, 255, 0.7) 20%, rgba(220, 235, 250, 0.5) 30%, rgba(180, 210, 240, 0.3) 40%, rgba(120, 160, 210, 0.2) 50%, rgba(60, 100, 170, 0.1) 60%, rgba(20, 40, 100, 0.05) 75%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

.reviews-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.reviews-section .section-title {
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto 3.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #016EEF 0%, #0180ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(1, 110, 239, 0.3);
}


.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-date {
  font-size: 0.85rem;
  color: #6b7280;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-rating .stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-rating .score-badge {
  background: #016EEF;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.quote-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  border-radius: 16px;
  color: #ffffff;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(1, 110, 239, 0.3);
}

.review-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #334155;
  font-weight: 500;
  margin-bottom: 2rem;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.author-company {
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 500;
}

.review-source span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

.contact-section {
  padding: 6rem 0 8rem;
  position: relative;
  background: linear-gradient(180deg, #e8f1fd 0%, #f0f7fe 20%, #f8fbff 40%, #ffffff 60%, #f8fbff 80%, #f0f7fe 100%);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #0a0e27 0%, rgba(10, 14, 39, 0.9) 10%, rgba(232, 241, 253, 0.8) 50%, rgba(232, 241, 253, 0.1) 100%);
  z-index: 0;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.contact-form-container {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(1, 110, 239, 0.05);
  max-width: 700px;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: #016EEF;
  box-shadow: 0 0 0 4px rgba(1, 110, 239, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(1, 110, 239, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(1, 110, 239, 0.35);
}

.quick-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.quick-contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  border-radius: 9999px;
  border: 1px solid rgba(1, 110, 239, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.3s ease;
}

.quick-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(1, 110, 239, 0.15);
  border-color: #016EEF;
  color: #016EEF;
  background: #f8fbff;
}

.detailed-contact-link {
  text-align: center;
  margin-top: 2.5rem;
}

.detailed-contact-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 2rem;
  background: transparent;
  color: #016EEF;
  border: 2px solid #016EEF;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.detailed-contact-link a:hover {
  background: #016EEF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 110, 239, 0.25);
}

.detailed-contact-link a svg {
  transition: transform 0.3s ease;
}

.detailed-contact-link a:hover svg {
  transform: translateX(4px);
}

body.menu-open {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(1, 110, 239, 0.6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

::selection {
  background: var(--primary-blue);
  color: var(--white);
}

*:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .header.on-light .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(15, 23, 42, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem 1rem;
    margin: 0.25rem 0;
    border-radius: 8px;
  }
}


/* Improve section description readability */
.section-description {
  font-size: 1.0625rem;
  /* Slightly smaller */
  line-height: 1.8;
  /* More breathing room */
  color: #475569;
  /* Slightly darker for better readability */
  max-width: 950px;
  /* Limit width */
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  /* Medium weight */
}

.service-description strong {
  color: #016EEF;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-description {
    font-size: 1rem;
    line-height: 1.7;
  }
}




/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(1, 110, 239, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(1, 110, 239, 0.15);
  border-color: rgba(1, 110, 239, 0.3);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .faq-answer {
    font-size: 0.9375rem;
  }
}

.reviews-carousel {
  position: relative;
  max-width: 1300px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-track .review-card {
  flex: 0 0 calc(33.333% - 1.667rem);
  margin-right: 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.carousel-track .review-card:last-child {
  margin-right: 0;
}

.carousel-track .review-text {
  flex-grow: 1;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
  transform: scale(1.08);
}

.carousel-dots {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background: #016EEF;
  transform: scale(1.3);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-date {
  font-size: 0.85rem;
  color: #6b7280;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-rating .stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-rating .score-badge {
  background: #016EEF;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .carousel-track .review-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .carousel-arrow {
    display: none;
  }
}

.footer-office-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
}


.animate-on-scroll.animated {
    opacity: 1 !important;
    animation-fill-mode: forwards !important;
    animation-iteration-count: 1 !important;
}


.animate-on-scroll.animated.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-on-scroll.animated.animate-fade-down {
    animation: fadeInDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-on-scroll.animated.animate-fade-left {
    animation: fadeInLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-on-scroll.animated.animate-fade-right {
    animation: fadeInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-on-scroll.animated.animate-scale {
    animation: scaleIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-on-scroll.animated.animate-fade {
    animation: fadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}


.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

.delay-600 {
    animation-delay: 600ms;
}

.delay-700 {
    animation-delay: 700ms;
}

.delay-800 {
    animation-delay: 800ms;
}

.delay-900 {
    animation-delay: 900ms;
}

.delay-1000 {
    animation-delay: 1000ms;
}

.delay-1200 {
    animation-delay: 1200ms;
}

.delay-1500 {
    animation-delay: 1500ms;
}


.animate-stagger .animate-on-scroll {
    opacity: 0;
}

.animate-stagger.animated .animate-on-scroll {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-stagger.animated > *:nth-child(1) {
    animation-delay: 100ms;
}

.animate-stagger.animated > *:nth-child(2) {
    animation-delay: 200ms;
}

.animate-stagger.animated > *:nth-child(3) {
    animation-delay: 300ms;
}

.animate-stagger.animated > *:nth-child(4) {
    animation-delay: 400ms;
}

.animate-stagger.animated > *:nth-child(5) {
    animation-delay: 500ms;
}

.animate-stagger.animated > *:nth-child(6) {
    animation-delay: 600ms;
}

.animate-stagger.animated > *:nth-child(7) {
    animation-delay: 700ms;
}

.animate-stagger.animated > *:nth-child(8) {
    animation-delay: 800ms;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-zoom {
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-zoom img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-zoom:hover img {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    box-shadow: 0 12px 32px rgba(1, 110, 239, 0.5) !important;
}


@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}


@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-slow {
    animation: rotateSlow 20s linear infinite;
}


.counter {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    transition: all 0.3s ease;
}

.btn-primary,
.btn-login {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before,
.btn-login::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: translateX(-100%) rotate(25deg);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before,
.btn-login:hover::before {
    transform: translateX(100%) rotate(25deg);
}

.shine-active::before {
    animation: shine 0.6s ease-out;
}

@keyframes shine {
    from {
        transform: translateX(-100%) rotate(25deg);
    }
    to {
        transform: translateX(100%) rotate(25deg);
    }
}

.btn-primary:hover,
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(1, 110, 239, 0.5) !important;
}

.btn-primary:active,
.btn-login:active {
    transform: translateY(0);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.service-card,
.service-detailed-card,
.benefit-card,
.industry-card,
.review-card,
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.service-detailed-card:hover,
.benefit-card:hover,
.industry-card:hover,
.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(1, 110, 239, 0.2) !important;
}


.service-card:hover .service-icon,
.service-detailed-card:hover .service-icon-large,
.benefit-card:hover .benefit-icon,
.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon,
.service-icon-large,
.benefit-icon,
.industry-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.feature-card {
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator {
    transition: opacity 0.3s ease;
}

.scroll-line {
    position: relative;
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0.5rem auto 0;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-blue);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(400%);
    }
}


@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

.animated-grid {
    animation: gridMove 20s linear infinite;
}


@keyframes sphereFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-15px, -50px) scale(0.95);
    }
    75% {
        transform: translate(25px, -25px) scale(1.02);
    }
}

.blur-sphere {
    animation: sphereFloat 20s ease-in-out infinite;
}


.page-loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}


.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.about-image img,
.why-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img,
.why-image:hover img {
    transform: scale(1.05);
}


.form-group input,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 110, 239, 0.15);
}


.quote-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover .quote-icon {
    transform: scale(1.1) rotate(-5deg);
}


.dd-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dd-item:hover {
    transform: translateX(8px);
    background: rgba(1, 110, 239, 0.08);
}

.dd-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dd-item:hover .dd-icon {
    transform: scale(1.1);
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite;
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-on-scroll {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .float,
    .pulse,
    .rotate-slow,
    .feature-card,
    .blur-sphere,
    .animated-grid {
        animation: none !important;
    }
}


@media (hover: none) and (pointer: coarse) {
    .hover-lift:hover,
    .hover-zoom:hover,
    .hover-glow:hover,
    .btn:hover,
    .feature-card:hover,
    .service-card:hover,
    .review-card:hover,
    .dd-item:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .btn-primary:hover::before,
    .btn-login:hover::before {
        transform: translateX(-100%);
    }
}

.animate-on-scroll,
.hover-lift,
.hover-zoom,
.btn,
.service-card,
.review-card,
.feature-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.blur-sphere,
.animated-grid,
.scroll-line::after {
    will-change: transform;
}

.animate-on-scroll.animated {
    will-change: auto;
}
html {
  font-size: 14px;
}

.container {
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 15.5px;
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}


.nav-toggle {
  display: flex;
}



@media (max-width: 1023px) {

  /* Show login in mobile menu */
  .mobile-login {
    margin-top: 1rem;
    padding: 0 1.5rem;
  }

  .btn-login-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 0 2rem;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #016EEF 0%, #0180ff 100%);
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    font-family: inherit;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 16px rgba(1, 110, 239, 0.3);
    transition: all 0.3s ease;
  }

  .btn-login-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 110, 239, 0.4);
  }

  /* Hide desktop login button on mobile */
  .header-actions {
    display: none;
  }

  .nav-container {
    padding: 0 1.25rem;
    height: 64px;
  }

  .header.scrolled .nav-container {
    height: 60px;
  }

  .logo img {
    height: 50px;
  }

  .header.scrolled .logo img {
    height: 45px;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .header.on-light .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(15, 23, 42, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    display: flex;
  }

  .nav-link {
    font-size: 16px;
    padding: 0.75rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }




  .header-actions {
    display: none;
  }
}


@media (min-width: 1024px) {

  .mobile-login {
    display: none;
  }

  /* Show desktop header actions */
  .header-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    /* Change from fixed */
    display: flex;
    /* Ensure it's visible */
    flex-direction: row;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    gap: 2.5rem;
    transform: none;
    /* Remove transform */
    opacity: 1;
    /* Ensure visible */
    border-bottom: none;
    box-shadow: none;
  }

  .header-actions {
    display: flex;
  }
}


@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 7rem 0 4rem;
    overflow: hidden;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
  }

  .btn-large {
    height: 48px;
    padding: 0 1.75rem;
    width: 100%;
    max-width: 300px;
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-divider {
    width: 100px;
    height: 1px;
  }


  .hero-visual {
    order: -1;
    margin: 0 auto;
    max-width: 100%;
    padding: 1rem;
  }

  .geometric-container {
    width: 100%;
    height: 300px;
    max-width: 350px;
    margin: 0 auto;
  }

  .center-circle {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
  }

  .ring-1 {
    width: 140px;
    height: 140px;
  }

  .ring-2 {
    width: 160px;
    height: 160px;
  }

  .ring-3 {
    width: 180px;
    height: 180px;
  }

  .center-icon svg {
    width: 50px;
    height: 50px;
  }

  .feature-card {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    min-width: 160px;
  }

  .card-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .card-icon-box svg {
    width: 18px;
    height: 18px;
  }

  .card-text h4 {
    font-size: 0.85rem;
    margin-bottom: 0.125rem;
  }

  .card-text p {
    font-size: 0.7rem;
  }

  .card-1 {
    top: 5%;
    right: 5%;
  }

  .card-2 {
    top: 40%;
    left: -5%;
  }

  .card-3 {
    bottom: 10%;
    right: 5%;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}


@media (max-width: 400px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .geometric-container {
    height: 250px;
  }

  .center-circle {
    width: 100px;
    height: 100px;
  }

  .ring-1 {
    width: 120px;
    height: 120px;
  }

  .ring-2 {
    width: 140px;
    height: 140px;
  }

  .ring-3 {
    width: 160px;
    height: 160px;
  }

  .feature-card {
    padding: 0.5rem 0.75rem;
    min-width: 140px;
  }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section {
    padding: 8rem 0 5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
  }


  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .geometric-container {
    width: 100%;
    height: 350px;
    max-width: 450px;
  }

  .center-circle {
    width: 150px;
    height: 150px;
  }

  .card-1 {
    right: 0;
  }

  .card-3 {
    right: 0;
  }
}


@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-content {
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .geometric-container {
    width: 400px;
    height: 400px;
  }

  .center-circle {
    width: 160px;
    height: 160px;
  }

  .card-1 {
    right: -15%;
  }

  .card-3 {
    right: -10%;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 4rem 0;
  }

  .services-section::before {
    top: -100px;
    height: 150px;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto 2.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    border-radius: 16px;
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-number {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
    top: -15px;
    right: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .service-card {
    padding: 2.25rem 1.5rem 2rem;
  }
}


@media (max-width: 767px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-section .section-title {
    font-size: 1.75rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .about-image {
    order: -1;
  }

  .about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .about-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .why-choose-section {
    padding: 2.5rem 1.5rem;
    margin-bottom: 3rem;
    border-radius: 20px;
  }

  .sub-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-image {
    order: -1;
  }

  .why-intro {
    padding: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .why-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .due-diligence-section {
    margin-bottom: 3rem;
  }

  .sub-heading-center {
    font-size: 1.5rem;
  }

  .dd-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .dd-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dd-item {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
  }

  .dd-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .mission-section {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .mission-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .mission-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .mission-text:last-child {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-section {
    padding: 5rem 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .dd-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .mission-section {
    padding: 3.5rem 2.5rem;
  }

  .mission-title {
    font-size: 2.25rem;
  }

  .mission-text {
    font-size: 1.1rem;
  }
}


@media (max-width: 767px) {
  .reviews-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .reviews-section::before {
    top: -100px;
    height: 150px;
  }

  .reviews-section .section-title {
    font-size: 1.75rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto 2.5rem;
  }

  .review-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
  }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-company {
    font-size: 0.85rem;
  }

  .quote-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
  }

  .quote-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .reviews-section {
    padding: 5rem 0;
  }

  .reviews-section .section-title {
    font-size: 2.25rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    max-width: 800px;
  }

  .review-card {
    padding: 2.25rem 2rem;
  }
}


@media (max-width: 767px) {
  .contact-section {
    padding: 4rem 0 5rem;
  }

  .contact-section::before {
    top: -100px;
    height: 150px;
  }

  .contact-section .section-title {
    font-size: 1.75rem;
  }

  .contact-section .section-description {
    font-size: 1rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group label {
    font-size: 0.875rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  .quick-contact-info {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .quick-contact-item {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.95rem;
    text-align: center;
  }

  .detailed-contact-link {
    margin-top: 2rem;
  }

  .detailed-contact-link a {
    height: 48px;
    padding: 0 1.5rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-section {
    padding: 5rem 0 6rem;
  }

  .contact-section .section-title {
    font-size: 2.25rem;
  }

  .contact-form-container {
    max-width: 600px;
    padding: 2.5rem;
  }

  .quick-contact-info {
    gap: 1.25rem;
  }
}


@media (max-width: 767px) {

  .btn-primary,
  .btn-secondary {
    font-size: 0.95rem;
  }

  .btn-large {
    height: 46px;
  }

  .services-cta .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .reviews-cta .btn-large {
    width: 100%;
    max-width: 300px;
  }
}


@media (max-width: 767px) {
  .section-badge {
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.mobile-hide {
  display: none;
}

@media (min-width: 768px) {
  .mobile-hide {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}


@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 767px) {
  .animate-on-scroll {
    animation-delay: 0.1s !important;
  }

  .delay-100 {
    animation-delay: 0.1s !important;
  }

  .delay-200 {
    animation-delay: 0.15s !important;
  }

  .delay-300 {
    animation-delay: 0.2s !important;
  }

  .delay-400 {
    animation-delay: 0.25s !important;
  }

  .delay-500 {
    animation-delay: 0.3s !important;
  }

  .delay-600 {
    animation-delay: 0.35s !important;
  }

  .delay-800 {
    animation-delay: 0.4s !important;
  }

  .delay-1000 {
    animation-delay: 0.45s !important;
  }

  .delay-1200 {
    animation-delay: 0.5s !important;
  }
}


@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .section-title {
    font-size: 2.75rem;
  }

  .geometric-container {
    width: 500px;
    height: 500px;
  }

  .center-circle {
    width: 200px;
    height: 200px;
  }
}

@media print {

  .header,
  .scroll-indicator,
  .hero-buttons,
  .services-cta,
  .reviews-cta,
  .contact-form,
  .quick-contact-info,
  .detailed-contact-link,
  .nav-toggle {
    display: none !important;
  }

  .hero-section,
  .services-section,
  .about-section,
  .reviews-section,
  .contact-section {
    padding: 1rem 0 !important;
    min-height: auto !important;
    page-break-inside: avoid;
  }

  .hero-background,
  .reviews-background,
  .animated-grid,
  .blur-sphere {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-size: 12pt !important;
  }

  .gradient-text {
    background: none !important;
    -webkit-text-fill-color: black !important;
    color: black !important;
  }

  .hero-visual,
  .about-image,
  .why-image {
    display: none !important;
  }

  .service-card,
  .review-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    page-break-inside: avoid;
  }

  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  a {
    color: black !important;
    text-decoration: underline !important;
  }
}


@media (max-width: 767px) {
  .animate-on-scroll {
    opacity: 0;
  }

  .animate-on-scroll.animated {
    opacity: 1;
  }
}

@media (hover: none) and (pointer: coarse) {

  .hover-lift:hover,
  .service-card:hover,
  .review-card:hover,
  .feature-card:hover,
  .dd-item:hover {
    transform: none;
  }
}


@media (max-width: 1023px) {
  .nav-menu:not(.active) {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-section .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-section .hero-visual {
    order: -1;
  }

  .services-detailed-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}


@media (max-width: 768px) {

  .featured-service,
  .core-services,
  .benefits-section,
  .industries-section,
  .services-cta-light {
    padding: 5rem 0;
  }

  .featured-box {
    padding: 2.5rem 2rem;
  }

  .featured-icon {
    width: 80px;
    height: 80px;
  }

  .featured-title {
    font-size: 1.625rem;
  }

  .service-detailed-card {
    padding: 2.5rem 2rem;
  }

  .service-icon-large {
    width: 70px;
    height: 70px;
  }

  .service-detailed-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .service-detailed-title {
    font-size: 1.375rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-cta-light .section-title {
    font-size: 2.5rem;
  }

  .services-cta-light .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .services-cta-light .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-body-content {
    font-size: 0.8125rem;
    margin: 1.25rem 0;
  }

  .hero-body-content p {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 640px) {

  .featured-service,
  .core-services,
  .benefits-section,
  .industries-section,
  .services-cta-light {
    padding: 4rem 0;
  }

  .featured-box {
    padding: 2rem 1.5rem;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .service-detailed-card {
    padding: 2rem 1.5rem;
  }

  .benefit-card,
  .industry-card {
    padding: 2rem 1.5rem;
  }

  .services-cta-light .section-title {
    font-size: 2rem;
  }
}


@media (max-width: 1024px) {
  .contact-content-section .container {
    max-width: 640px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-wrapper {
    order: -1;
  }

  .form-card {
    width: 100%;
    padding: 20px 20px;
  }
}


@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
  }

  .hero-content-center {
    padding: 0 1.25rem;
  }

  .contact-hero .hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .contact-hero .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-quick-pills {
    flex-direction: column;
    width: 100%;
  }

  .contact-pill {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
  }

  .contact-content-section {
    padding: 3.5rem 0 4.5rem;
  }

  .contact-content-section .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-grid {
    gap: 2.25rem;
  }

  .section-title-dark {
    font-size: 1.7rem;
  }

  .info-text {
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
  }

  .areas-list li {
    font-size: 0.9rem;
    padding: 0.65rem 0;
  }

  .office-location {
    padding: 1.25rem;
    flex-direction: row;
    align-items: flex-start;
  }


  .form-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .form-group label {
    font-size: 0.86rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 16px;
  }

  .form-group textarea {
    min-height: 130px;
  }

  .btn-submit-contact {
    height: 50px;
    font-size: 0.9rem;
    border-radius: 10px;
    letter-spacing: 0.08em;
  }


  .map-section {
    margin-top: 3rem;
  }

  .map-title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .map-container {
    border-radius: 18px;
    border-width: 3px;
  }

  .map-container iframe {
    height: 320px;
  }
}


@media (max-width: 480px) {
  .contact-hero .hero-title {
    font-size: 1.9rem;
  }

  .contact-hero .hero-description {
    font-size: 0.95rem;
  }

  .contact-content-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }


  .form-group input,
  .form-group textarea {
    padding: 0.85rem 0.9rem;
  }

  .btn-submit-contact {
    height: 48px;
    font-size: 0.85rem;
  }
}
.footer-section {
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      #0a0e27 0%,
      #141a32 40%,
      #1d2741 70%,
      #0a0e27 100%);
  z-index: -1;
}

.footer-background .animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(1, 110, 239, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 110, 239, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  animation: gridMove 30s linear infinite;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.9) 10%,
      rgba(248, 251, 255, 0.7) 20%,
      rgba(220, 235, 250, 0.5) 30%,
      rgba(180, 210, 240, 0.3) 40%,
      rgba(120, 160, 210, 0.2) 50%,
      rgba(60, 100, 170, 0.1) 60%,
      rgba(20, 40, 100, 0.05) 75%,
      transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-list li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-locations {
  margin-top: 1rem;
}

.locations-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.locations-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.locations-text a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.locations-text a:hover {
  opacity: 0.8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.contact-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-service-area {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 0.5rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1rem;
}

.legal-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.legal-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(1, 110, 239, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.copyright {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-column:first-child {
    grid-column: 1;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-section {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-list li a,
  .locations-text,
  .contact-item {
    font-size: 0.875rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}
