/* ============================================
   QF REVAMP - CUSTOM CSS
   Clean, Organized, Section-Specific Styles
   ============================================ */

/* ============================================
   0. CSS VARIABLES
   ============================================ */

   :root {
    /* Brand Color - Primary */
    --brand-primary: #fba801;
    --brand-primary-light: #ffc947;
    --brand-primary-dark: #e09a00;
    
    /* Theme Background Colors - Matching Reference */
    --bg-unified: #ffffff;
    --bg-unified-light: #f9fafb;
    --bg-unified-lighter: #f3f4f6;
    --bg-teal-900: #134e4a;
    --bg-lime-500: #84cc16;
    --bg-orange-50: #fff7ed;
    
    /* Glass Effect Colors - Light Theme with Glass */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(255, 255, 255, 0.65);
    --glass-bg-teal: rgba(19, 78, 74, 0.85);
    --glass-bg-lime: rgba(132, 204, 22, 0.85);
    --glass-bg-orange: rgba(255, 247, 237, 0.9);
    --glass-border: rgba(251, 168, 1, 0.2);
    --glass-border-light: rgba(0, 0, 0, 0.08);
    --glass-border-glow: rgba(251, 168, 1, 0.3);
    
    /* Text Colors - Matching Reference */
    --text-primary: #1d1f1e;
    --text-secondary: #374151;
    --text-muted: #4b5563;
    --text-gray-900: #1d1f1e;
    --text-gray-700: #374151;
    --text-gray-600: #4b5563;
    
    /* Brand Accents */
    --accent-primary: #fba801;
    --accent-secondary: #ffc947;
    --accent-dark: #e09a00;
    
    /* Gradients */
  --gradient-brand: linear-gradient(
    135deg,
    #fba801 0%,
    #ffc947 50%,
    #e09a00 100%
  );
  --gradient-brand-reverse: linear-gradient(
    135deg,
    #e09a00 0%,
    #ffc947 50%,
    #fba801 100%
  );
    --gradient-brand-vertical: linear-gradient(180deg, #fba801 0%, #ffc947 100%);
    
    /* Glass Effects */
    --glass-blur: blur(20px);
    --glass-blur-light: blur(10px);
    --glass-blur-heavy: blur(30px);
    
    /* Borders & Shadows */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08), 
                    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    --shadow-glass-heavy: 0 20px 60px rgba(0, 0, 0, 0.12),
                          0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    --glow-primary: rgba(251, 168, 1, 0.5);
    --glow-secondary: rgba(255, 201, 71, 0.4);
    --glow-soft: rgba(251, 168, 1, 0.2);
  }
  
  /* ============================================
     1. GLOBAL STYLES & RESET
     ============================================ */
  
     html {
      scroll-behavior: auto; /* GSAP handles smooth scrolling */
  scroll-padding-top: 60px; /* Reduced for mobile */
  font-size: 16px; /* Base font size for mobile */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
    }
    
    body {
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      font-family: "Figtree", sans-serif;
      background: #ffffff;
      color: var(--text-primary);
  background-image: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fafb 25%,
    #ffffff 50%,
    #f9fafb 75%,
    #ffffff 100%
  );
  background-attachment: scroll; /* Changed from fixed for mobile performance */
      min-height: 100vh;
      position: relative;
  line-height: 1.6; /* Better readability on mobile */
}

/* Mobile-first: Base styles for mobile */
* {
  -webkit-tap-highlight-color: rgba(251, 168, 1, 0.2);
}

/* Ensure all interactive elements meet touch target size (44x44px minimum) */
input[type="button"],
input[type="submit"],
input[type="checkbox"],
input[type="radio"],
select {
  min-height: 44px;
  min-width: 44px;
}

/* Optimize images for mobile */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Better text rendering on mobile */
p,
span,
div,
a,
li {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Disable heavy animations on mobile for better performance */
@media (max-width: 767px) {
  /* Disable infinite animations */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  /* Simplify transitions but keep essential ones */
  * {
    transition-duration: 0.15s !important;
  }

  /* Keep essential transitions for UI elements */
  .fullscreen-menu,
  .fullscreen-menu *,
  .header-mobile-panel,
  .header-mobile-panel *,
  button,
  a,
  input,
  select {
    transition-duration: 0.2s !important;
  }

  /* Disable hover transforms on mobile */
  *:hover {
    transform: none !important;
  }

  /* Disable tools marquee animations on mobile - show static content */
  .tools-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  /* Keep testimonials marquee animation - GSAP handles it smoothly */
  /* Explicitly allow GSAP to control testimonials marquee */
  .testimonials-marquee-track,
  .testimonials-marquee-track * {
    animation-duration: initial !important;
    animation-iteration-count: initial !important;
  }

  /* Don't interfere with GSAP transforms - GSAP uses inline styles with higher specificity */

  /* Simplify carousel interactions */
  .service-carousel-item:hover {
    transform: none !important;
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    background-attachment: fixed;
  }
}
    
    /* Unified Background for All Sections */
    section {
      background: transparent !important;
      position: relative;
    }
    
    section > * {
      position: relative;
      z-index: 1;
    }
    
    a[href^="#"] {
      scroll-behavior: auto; /* GSAP handles smooth scrolling */
    }
  
.margin-left-10 {
        margin-left: 10px;
      }
    
    /* ============================================
       2. HEADER & NAVIGATION SECTION
       ============================================ */
    
    /* Header Background Video */
    .header-hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    
    /* Navigation Container */
    .header-nav-container {
  padding: 1rem 0; /* Reduced for mobile */
      position: relative;
      z-index: 10;
    }

@media (min-width: 768px) {
  .header-nav-container {
    padding: 1.5rem 0;
  }
}
    
    /* Navigation Logo */
.header-nav-logo {
  height: 2rem; /* Smaller on mobile */
  width: auto;
}

@media (min-width: 768px) {
    .header-nav-logo {
      height: 2.8rem;
  }
    }
    
    /* Navigation Links */
    .nav-link {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .nav-link:hover {
      color: #fba801;
    }
    
    /* Mobile Navigation Links */
    .nav-link-mobile {
      color: var(--dark-text-primary);
      text-decoration: none;
      font-size: 1.125rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
    .nav-link-mobile:hover {
      color: var(--dark-accent-primary);
    }
    
    /* Header CTA Button */
    .header-cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 20px;
  font-size: 21px;
      font-weight: 500;
      color: #ffffff;
  border: 0px solid #ffffff;
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    
    .header-cta-button:hover {
  color: #fba801;
    }
    
    /* Mobile Menu Toggle */
    .header-mobile-toggle {
      color: #ffffff;
      transition: color 0.3s ease;
  background: transparent;
  border: none;
  padding: 8px; /* Ensure 44x44px touch target */
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-mobile-toggle:hover,
.header-mobile-toggle:active {
      color: #fba801;
    }

.header-mobile-toggle svg {
  width: 28px; /* Slightly smaller for mobile */
  height: 28px;
}

@media (min-width: 768px) {
  .header-mobile-toggle svg {
    width: 32px;
    height: 32px;
  }
}
    
    /* Mobile Menu Overlay */
    .header-mobile-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 50;
    }
    
    /* Mobile Menu Panel */
    .header-mobile-panel {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      z-index: 50;
  background: linear-gradient(
    135deg,
    var(--dark-bg-secondary) 0%,
    var(--dark-bg-tertiary) 100%
  );
      border-right: 1px solid var(--dark-border);
      padding: 1.75rem 2.5rem;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    }
    
    @media (min-width: 475px) {
      .header-mobile-panel {
        width: 83.333333%;
        max-width: 28rem;
      }
    }

/* ============================================
       FULL SCREEN MENU
       ============================================ */

/* Menu Button */
.header-menu-button {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
  margin-left: 21px !important;
}

.header-menu-button:hover {
  /* background: rgba(255, 255, 255, 0.1); */
  /* border-color: #fba801; */
  color: #fba801;
}

.header-menu-button.menu-open {
  border-color: #fba801;
  color: #fba801;
}

.menu-button-text {
  transition: opacity 0.3s ease;
  font-size: 23px;
}

.menu-button-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
  height: 16px;
  position: relative;
  display: none;
}

.menu-icon-line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.header-menu-button.menu-open .menu-icon-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header-menu-button.menu-open .menu-icon-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.header-menu-button.menu-open .menu-icon-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Alpine.js x-cloak */
[x-cloak] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Safari-specific x-cloak fix */
.fullscreen-menu[x-cloak] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Full Screen Menu - Simple, Reliable CSS */
.fullscreen-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 999999 !important;
  pointer-events: none;
  display: none !important;
  visibility: hidden;
  opacity: 0;
  background: transparent;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Menu active state - controlled by JavaScript */
.fullscreen-menu.menu-active {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.fullscreen-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

/* GSAP will handle animations - these are fallbacks */
.fullscreen-menu.menu-active .fullscreen-menu-overlay {
  opacity: 0.98;
}

.fullscreen-menu.menu-active .fullscreen-menu-container {
  opacity: 1;
  transform: translateY(0);
}

/* Menu Header */
.fullscreen-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.fullscreen-menu-logo img {
  height: 2.5rem;
  filter: brightness(0) invert(1);
}

.fullscreen-menu-close {
  width: 48px;
  height: 48px;
  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;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.fullscreen-menu-close:hover {
  background: rgba(251, 168, 1, 0.2);
  border-color: #fba801;
  transform: rotate(90deg);
}

.close-icon-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}

.close-icon-line:nth-child(1) {
  transform: rotate(45deg);
}

.close-icon-line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Menu Navigation */
.fullscreen-menu-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
}

.fullscreen-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.fullscreen-menu-item {
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(40px);
  visibility: hidden;
}

.fullscreen-menu-item:last-child {
  margin-bottom: 0;
}

/* GSAP will handle animations - this is a fallback */
.fullscreen-menu.menu-active .fullscreen-menu-item {
  visibility: visible;
}

.fullscreen-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu-link:hover {
  color: #fba801;
}

.menu-link-text {
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link-number {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  opacity: 0.5;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu-link:hover .menu-link-number {
  color: #fba801;
}

/* Menu Footer */
.fullscreen-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1.5rem;
  flex-shrink: 0;
}

.fullscreen-menu-social {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.fullscreen-menu-social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.fullscreen-menu-social-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fba801;
  transition: width 0.3s ease;
}

.fullscreen-menu-social-link:hover {
  color: #fba801;
}

.fullscreen-menu-social-link:hover::after {
  width: 100%;
}

.fullscreen-menu-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 0;
  border-radius: 9999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.fullscreen-menu-cta-button svg {
  width: 31px;
}

.fullscreen-menu-cta-button:hover {
  color: #fba801;
}

/* Responsive */
@media (max-width: 991px) {
  .fullscreen-menu-container {
    padding: 1.5rem 1.5rem;
  }

  .fullscreen-menu-header {
    padding-bottom: 1rem;
  }

  .fullscreen-menu-link {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    padding: 0.75rem 0;
  }

  .fullscreen-menu-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1rem;
  }

  .fullscreen-menu-social {
    gap: 1rem;
    margin: 0 auto;
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .fullscreen-menu-container {
    padding: 1.25rem 1.25rem;
  }

  .fullscreen-menu-link {
    font-size: clamp(1.25rem, 6vw, 2rem);
    padding: 0.5rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .menu-link-number {
    font-size: 0.875rem;
  }

  .fullscreen-menu-header {
    padding-bottom: 0.75rem;
  }

  .fullscreen-menu-footer {
    padding-top: 0.75rem;
  }
}

@media (max-height: 700px) {
  .fullscreen-menu-link {
    font-size: clamp(1.25rem, 4vh, 2rem);
    padding: 0.5rem 0;
  }

  .fullscreen-menu-header {
    padding-bottom: 1rem;
  }

  .fullscreen-menu-footer {
    padding-top: 1rem;
  }
}
    
    /* ============================================
       3. HERO SECTION
       ============================================ */
    
    .hero-dark-bg {
      position: relative;
      background: var(--bg-teal-900);
    }
    
    /* Glass effect overlay for hero */
    .hero-dark-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(16 16 18);
  backdrop-filter: var(--glass-blur-light);
  -webkit-backdrop-filter: var(--glass-blur-light);
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  }
    
    .hero-dark-bg > * {
      /* position: relative; */
      z-index: 2;
    }
    
    .hero-section-container {
      position: relative;
      padding-top: 4.5rem;
      padding-bottom: 6rem;
      z-index: 10;
    }
    
    @media (min-width: 640px) {
      .hero-section-container {
        padding-bottom: 8rem;
      }
    }
    
    @media (min-width: 1024px) {
      .hero-section-container {
        padding-top: 9rem;
        padding-bottom: 15.5rem;
      }
    }
    
    /* Hero Heading */
    .hero-heading {
      font-family: inherit;
  font-size: clamp(2rem, 8vw, 6rem); /* Mobile-first responsive */
  line-height: 1.1; /* Better for mobile */
  /* letter-spacing: -0.02em; */
      color: #ffffff;
  margin-bottom: 1.5rem;
  /* word-wrap: break-word; */
  /* hyphens: auto; */
    }
    
    @media (min-width: 475px) {
      .hero-heading {
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
      }
    }
    
    /* Typing Animation Container */
    .typing-animation-container {
      display: inline-block;
      min-height: 1.2em;
    }
    
    .typing-text-wrapper {
      display: inline-block;
    }
    
    .typing-text-gradient {
      font-weight: 700;
      display: inline-block;
      background: linear-gradient(135deg, #fba801 0%, #14b8a6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .typing-cursor-gradient {
      display: inline-block;
      width: 0.125rem;
      height: 1.2em;
      margin-left: 0.5rem;
      background: linear-gradient(135deg, #fba801 0%, #14b8a6 100%);
    }
    
    /* Hero Description */
    .hero-description {
  max-width: 100%; /* Full width on mobile */
  margin: 0 auto 2rem; /* Reduced margin on mobile */
  font-size: clamp(0.9375rem, 4vw, 1.25rem); /* Mobile-first responsive */
      color: rgba(255, 255, 255, 0.9);
  line-height: 1.6; /* Better readability on mobile */
  padding: 0 1rem; /* Add padding on mobile */
    }
    
    @media (min-width: 640px) {
      .hero-description {
    max-width: 73%;
    margin: 0 auto 3rem;
    line-height: 1.75;
    padding: 0;
      }
    }
    
    /* Hero Buttons Container */
    .hero-buttons-container {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
  align-items: stretch; /* Full width buttons on mobile */
  width: 100%;
  max-width: 100%;
  padding: 0 1rem; /* Add padding on mobile */
    }
    
    @media (min-width: 640px) {
      .hero-buttons-container {
        flex-direction: row;
    align-items: center;
    padding: 0;
    width: auto;
      }
    }
    
    /* Hero Primary Button */
    .hero-button-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
  padding: 14px 24px; /* Increased for better touch target */
  font-size: clamp(0.9375rem, 3vw, 1.125rem);
      font-weight: 500;
      color: #ffffff;
      border: 2px solid #ffffff;
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-height: 48px; /* Ensure touch target size */
  width: 100%; /* Full width on mobile */
  text-align: center;
}

@media (min-width: 640px) {
  .hero-button-primary {
    width: auto;
    padding: 1rem 2rem;
  }
}

.hero-button-primary:hover,
.hero-button-primary:active {
      background: var(--gradient-brand-reverse);
      color: var(--dark-bg-primary);
      box-shadow: 0 20px 40px var(--dark-glow-primary);
}

@media (min-width: 768px) {
  .hero-button-primary:hover {
      transform: translateY(-2px);
  }
    }
    
    /* Hero Secondary Button */
    .hero-button-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
  padding: 14px 24px; /* Increased for better touch target */
  font-size: clamp(0.9375rem, 3vw, 1.125rem);
      font-weight: 500;
      color: #fff;
      border: 2px solid #ffffff;
      background: transparent;
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 0 0 0 var(--dark-glow-primary);
  min-height: 48px; /* Ensure touch target size */
  width: 100%; /* Full width on mobile */
  text-align: center;
}

@media (min-width: 640px) {
  .hero-button-secondary {
    width: auto;
    padding: 1rem 2rem;
  }
}

.hero-button-secondary:hover,
.hero-button-secondary:active {
      border-color: var(--brand-primary);
      background: var(--gradient-brand);
      color: var(--dark-bg-primary);
      box-shadow: 0 8px 25px var(--dark-glow-primary);
}

@media (min-width: 768px) {
  .hero-button-secondary:hover {
      transform: translateY(-2px);
  }
    }
    
    /* ============================================
       HERO SCROLL DOWN INDICATOR - 2025 TRENDY
       ============================================ */
    
    .hero-scroll-indicator {
      position: absolute;
      bottom: 4rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    
    @media (min-width: 768px) {
      .hero-scroll-indicator {
        bottom: 4rem;
      }
    }
    
    @media (min-width: 1024px) {
      .hero-scroll-indicator {
        bottom: 9%;
      }
    }
    
    .hero-scroll-button {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.9);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    
    .hero-scroll-button:hover {
      color: #fba801;
      transform: translateY(4px);
    }
    
    /* Mouse Icon */
    .hero-scroll-mouse {
      width: 32px;
      height: 48px;
      border: 2px solid currentColor;
      border-radius: 16px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 8px;
      position: relative;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      animation: scrollMouseFloat 2s ease-in-out infinite;
    }
    
    @keyframes scrollMouseFloat {
  0%,
  100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(8px);
      }
    }
    
    .hero-scroll-mouse svg {
      width: 20px;
      height: 28px;
      color: currentColor;
      transition: all 0.4s ease;
    }
    
    .hero-scroll-mouse .scroll-dot {
      animation: scrollDotBounce 2s ease-in-out infinite;
      transform-origin: center;
    }
    
    @keyframes scrollDotBounce {
  0%,
  100% {
        transform: translateY(0);
        opacity: 1;
      }
      50% {
        transform: translateY(12px);
        opacity: 0.6;
      }
    }
    
    .hero-scroll-button:hover .hero-scroll-mouse {
      border-color: #fba801;
      box-shadow: 0 0 20px rgba(251, 168, 1, 0.4);
      transform: translateY(4px);
    }
    
    .hero-scroll-button:hover .hero-scroll-mouse .scroll-dot {
      animation-duration: 1s;
    }
    
    /* Arrow Icon */
    .hero-scroll-arrow {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.8;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      animation: scrollArrowPulse 2s ease-in-out infinite;
    }
    
    @keyframes scrollArrowPulse {
  0%,
  100% {
        opacity: 0.6;
        transform: translateY(0);
      }
      50% {
        opacity: 1;
        transform: translateY(4px);
      }
    }
    
    .hero-scroll-arrow svg {
      width: 100%;
      height: 100%;
      color: currentColor;
    }
    
    .hero-scroll-button:hover .hero-scroll-arrow {
      opacity: 1;
      transform: translateY(6px);
      animation-duration: 1s;
    }
    
    /* Scroll Text */
    .hero-scroll-text {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    
    .hero-scroll-button:hover .hero-scroll-text {
      opacity: 1;
      color: #fba801;
      letter-spacing: 0.15em;
    }
    
    /* Responsive adjustments */
    @media (max-width: 767px) {
      .hero-scroll-indicator {
        bottom: 2rem;
      }
      
      .hero-scroll-mouse {
        width: 28px;
        height: 42px;
      }
      
      .hero-scroll-mouse svg {
        width: 18px;
        height: 24px;
      }
      
      .hero-scroll-arrow {
        width: 20px;
        height: 20px;
      }
      
      .hero-scroll-text {
        font-size: 0.6875rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero-scroll-indicator {
        bottom: 1.5rem;
      }
      
      .hero-scroll-button {
        gap: 0.5rem;
      }
    }
    
    /* ============================================
       4. STATS CARDS SECTION
       ============================================ */
    
    .stats-cards-section {
      padding: 3rem 0;
      background: #ffffff !important;
      position: relative;
  box-shadow: 0 20px 80px rgb(0 0 0 / 84%), 0 2px 8px rgb(0 0 0 / 40%);
    }
    
    @media (min-width: 1024px) {
      .stats-cards-section {
        padding: 6rem 0;
        padding-top: 130px;
      }
    }
    
    .stats-flex-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      position: relative;
    }
    
    /* Stats Card Base */
    .stats-card {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      /* min-height: 300px; */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .stats-card:hover {
      transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .stats-card-down {
      margin-top: 2rem;
    }
    
    .stats-card-up {
      margin-top: 0;
    }
    
    /* Stats Card Image */
    .stats-card-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    
    .stats-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Stats Card Overlay */
    .stats-card-overlay {
      position: absolute;
      inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
    }
    
    /* Stats Card Content */
    .stats-card-content {
      position: relative;
      z-index: 10;
      padding: 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    /* Stats Text */
    .stats-text {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .stats-text-right {
      align-items: flex-end;
      text-align: right;
    }
    
    .stats-label {
      color: #ffffff;
      font-size: 1.125rem;
      font-weight: 600;
    }
    
    /* Stats Number */
    .stats-number {
      font-size: 3rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1;
    }
    
    /* Stats Icon */
    .stats-icon {
      color: #ffffff;
      margin-top: auto;
    }
    
    /* ============================================
       5. STATS & FACTS SECTION
       ============================================ */
    
    .stats-facts-section {
      padding: 4rem 0;
      background: #ffffff !important;
      position: relative;
    }
    
    /* Glass effect overlay */
    .stats-facts-section::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      z-index: 0;
      pointer-events: none;
      opacity: 0.6;
    }
    
    @media (min-width: 1024px) {
      .stats-facts-section {
        padding: 6rem 0 8rem 0;
      }
    }
    
    .stats-badge-column {
      min-width: 120px;
    }
    
    .stats-badge {
      width: 48px;
      height: 48px;
      /* background: var(--gradient-brand); */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px var(--glow-primary);
      margin-right: 0.75rem;
      /* border: 2px solid rgba(251, 168, 1, 0.3); */
    }
    
    .stats-badge-number {
      font-size: 1.125rem;
      font-weight: 700;
      color: #000000;
    }
    
    .stats-divider-line {
      height: 1px;
      width: 48px;
      background: #fba801;
    }
    
    .stats-heading-responsive {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 700;
      color: #000000;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .stats-paragraph {
      max-width: 42rem;
      margin-bottom: 3rem !important;
      font-size: 1.25rem;
      color: var(--text-gray-700);
      line-height: 1.75;
      font-weight: 300;
    }
    
    .stats-row {
      margin-bottom: 3rem !important;
    }
    
    .stat-item {
      margin-bottom: 1.5rem;
    }
    
    .stat-number-display {
      font-size: 3rem;
      font-weight: 700;
      color: var(--text-gray-900);
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }
    
    .stat-description {
      color: var(--text-gray-700);
      font-size: 1rem;
      line-height: 1.5;
    }
    
    /* Studiova Style "Who we are" Button */
    .who-we-are-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem 0.75rem 1.5rem;
      background: var(--gradient-brand);
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--dark-glow-primary);
    }
    
    .who-we-are-btn:hover {
      background: var(--gradient-brand-reverse);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px var(--dark-glow-primary);
    }
    
    .who-we-are-btn-text {
      font-weight: 600;
      font-size: 1rem;
      color: var(--dark-bg-primary);
      line-height: 1.5;
      transition: color 0.3s ease;
    }
    
    .who-we-are-btn-icon {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .who-we-are-btn-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--dark-bg-primary);
      transition: stroke 0.3s ease;
    }
    
    .who-we-are-btn:hover .who-we-are-btn-icon {
      transform: translate(4px, -4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .who-we-are-btn:hover .who-we-are-btn-icon svg {
      stroke: var(--dark-bg-primary);
    }
    
    /* Stats CTA Button (keeping for backward compatibility) */
    .stats-cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      font-weight: 500;
      font-size: 1rem;
      color: #111827;
      text-decoration: none;
      border-radius: 9999px;
      transition: all 0.3s ease;
    }
    
    .stats-cta-button:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .stats-icon-circle {
      width: 28px;
      height: 28px;
      background: var(--gradient-brand);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 8px var(--dark-glow-primary);
    }
    
    .stats-cta-button:hover .stats-icon-circle {
      transform: translateX(0.25rem);
    }
    
    /* ============================================
       6. SERVICES SECTION - PREMIUM 2025 DESIGN
       ============================================ */
    
    .service-sec-box {
      padding: 0;
      position: relative;
      overflow: hidden;
      top: -181px;
    }
    
    .service-section-container {
      padding: 6rem 1.5rem;
      background: #fba801;
      border-radius: 0;
      position: relative;
      overflow: hidden;
    }
    
    /* Glass effect overlay for services */
    .service-section-container::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--glass-bg-lime);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-radius: 1.5rem;
      z-index: 0;
      pointer-events: none;
      opacity: 0.7;
      display: none;
    }
    
.service-section-container .stats-badge {
          background: #000000;
          box-shadow: 0 4px 20px var(--glow-primary);
      }
  
.service-section-container .stats-badge .service-badge-number {
          color: #fba801;
          font-weight: 800;
        }
    
    @media (min-width: 640px) {
      .service-section-container {
        padding: 7rem 2rem;
      }
    }
    
    @media (min-width: 1024px) {
      .service-section-container {
        padding: 8rem 3rem;
      }
    }
    
    @media (min-width: 1280px) {
      .service-section-container {
        padding: 6rem 4rem 18rem 4rem;
      }
    }
    
    .service-badge-column {
      min-width: 120px;
    }
    
    .service-badge-number {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--dark-text-primary);
    }
    
    .service-divider-line {
      height: 1px;
      width: 48px;
      background: #000000;
    }
    
    .service-sec-heading {
      font-family: inherit;
      font-size: clamp(2.25rem, 5vw, 4rem);
      font-weight: 700;
      color: #000000;
      margin-bottom: 1.5rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    
    .service-sec-paragraph {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(29, 31, 30, 0.8);
      line-height: 1.7;
      max-width: 85%;
      font-weight: 400;
    }
    
    /* Services Carousel Container - Swiper.js Freemode */
    .services-carousel-wrapper.swiper {
      width: 100%;
      overflow: hidden;
      position: relative;
      user-select: none;
      cursor: grab;
    }
    
    .services-carousel-wrapper.swiper:active {
      cursor: grabbing;
    }
  
    .services-carousel-track.swiper-wrapper {
      display: flex;
      will-change: transform;
      backface-visibility: hidden;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }
  
    .service-carousel-item.swiper-slide {
                  height: 100%;
                  border-radius: 19px;
                  cursor: pointer;
                  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                  box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                  position: relative;
                  overflow: hidden;
                  backface-visibility: hidden;
                  transform: translateZ(0);
                  user-select: none;
                  }
  

  
    .service-carousel-item:hover::before {
      background: linear-gradient(
        135deg,
        rgba(251, 168, 1, 0.75) 0%,
        rgba(3, 3, 3, 0.65) 50%,
        rgba(3, 3, 3, 0.85) 100%
      );
    }
  
    /* If overlay div exists, use it instead */
    .service-carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      background: linear-gradient(
        135deg,
        rgba(251, 168, 1, 0.85) 0%,
        rgba(3, 3, 3, 0.75) 50%,
        rgba(3, 3, 3, 0.9) 100%
      );
      z-index: 1;
      transition: opacity 0.4s ease, background 0.4s ease;
    }
  
    .service-carousel-item:hover .service-carousel-overlay {
      background: linear-gradient(
        135deg,
        rgba(251, 168, 1, 0.75) 0%,
        rgba(3, 3, 3, 0.65) 50%,
        rgba(3, 3, 3, 0.85) 100%
      );
    }
  
    /* Hide pseudo-element if overlay div exists */
    .service-carousel-item:has(.service-carousel-overlay)::before {
      display: none;
    }
  
    
    /* Service Background Image */
    .service-carousel-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
  
    .service-carousel-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
  
    .service-carousel-item:hover .service-carousel-image img {
      transform: scale(1.15);
    }
  
    /* Attractive Gradient Overlay */
    .service-carousel-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 291px;
      z-index: 1;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 0;
      border: 0;
      top: inherit;
      background: rgb(0 0 0 / 61%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 0;
      box-shadow: 0;
  
    /* TOP FADE EFFECT */
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
      mask-image: linear-gradient(to bottom, transparent 0%, #000000 70%);
    }
  
    .service-carousel-item:hover .service-carousel-overlay {
      background: linear-gradient(
        135deg,
        rgba(251, 168, 1, 0.75) 0%,
        rgba(3, 3, 3, 0.65) 50%,
        rgba(3, 3, 3, 0.85) 100%
      );
    }
  
    /* Service Content - Positioned on top */
    .service-carousel-content {
      position: absolute;
      z-index: 2;
      /* height: 100%; */
      padding: 23px 25px 41px 25px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      gap: 1rem;
      bottom: 0;
      text-align: center;
      width: 100%;
    }
  
    /* Service Icon - Larger and more prominent */
    .service-carousel-icon {
      width: 72px;
      height: 72px;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid rgba(255, 255, 255, 0.2);
    }
  
    .service-carousel-icon svg {
      width: 36px;
      height: 36px;
      color: #ffffff;
      transition: all 0.4s ease;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
  
    .service-carousel-item:hover .service-carousel-icon {
      background: rgba(251, 168, 1, 0.25);
      border-color: rgba(251, 168, 1, 0.5);
      transform: rotate(5deg) scale(1.1);
      box-shadow: 0 8px 20px rgba(251, 168, 1, 0.3);
    }
  
    .service-carousel-item:hover .service-carousel-icon svg {
      color: #ffffff;
      transform: scale(1.15);
      filter: drop-shadow(0 4px 8px rgba(251, 168, 1, 0.5));
    }
  
    /* Service Title - White text on overlay */
    .service-carousel-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin: 0;
      transition: all 0.4s ease;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      letter-spacing: -0.01em;
    }
  
    .service-carousel-item:hover .service-carousel-title {
      color: #ffffff;
      transform: translateX(4px);
      text-shadow: 0 4px 12px rgba(251, 168, 1, 0.5);
    }
  
    .service-carousel-text {
      flex: 1;
    }
  
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .service-carousel-item {
        width: calc(100% - 32px) !important; /* Full width minus padding for 1 card view */
        max-width: 100%;
        min-height: 280px; /* Reduced from 350px */
      }
      
      /* Ensure Swiper respects 1 card per view on mobile */
      swiper-container.mySwiper .swiper-slide {
        width: 100% !important;
      }
  
      .service-carousel-content {
    padding: 1.5rem 1.25rem; /* Reduced padding */
    gap: 0.75rem; /* Reduced gap */
      }
  
      .service-carousel-icon {
    width: 56px; /* Reduced from 64px */
    height: 56px;
      }
  
      .service-carousel-icon svg {
    width: 28px; /* Reduced from 32px */
    height: 28px;
      }
  
      .service-carousel-title {
    font-size: 1.25rem; /* Reduced from 1.5rem */
      }
  
      .services-carousel-wrapper {
        padding: 1.5rem 0;
      }

  .service-carousel-overlay {
    height: 180px; /* Reduced overlay height */
  }
    }
  
    @media (max-width: 480px) {
      .service-carousel-item {
        width: calc(100% - 32px) !important; /* Full width minus padding for 1 card view */
        max-width: 100%;
        min-height: 260px; /* Reduced from 320px */
      }
      
      /* Ensure Swiper respects 1 card per view on mobile */
      swiper-container.mySwiper {
        padding-left: 16px !important;
        padding-right: 16px !important;
      }
      
      swiper-container.mySwiper .swiper-slide {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0 !important;
      }
  
      .service-carousel-content {
    padding: 1.25rem 1rem; /* Further reduced padding */
    gap: 0.5rem; /* Smaller gap */
  }

  .service-carousel-icon {
    width: 48px; /* Smaller icon */
    height: 48px;
  }

  .service-carousel-icon svg {
    width: 24px; /* Smaller icon SVG */
    height: 24px;
      }
  
      .service-carousel-title {
    font-size: 1.125rem; /* Reduced from 1.25rem */
    line-height: 1.3;
  }

  .service-carousel-overlay {
    height: 160px; /* Further reduced overlay */
  }
}

/* Extra small devices - maximize visible cards */
@media (max-width: 375px) {
  .service-carousel-item {
    width: calc(100% - 24px) !important; /* Full width minus padding for 1 card view */
    max-width: 100%;
    min-height: 240px;
  }
  
  /* Ensure Swiper respects 1 card per view on mobile */
  swiper-container.mySwiper .swiper-slide {
    width: 100% !important;
  }

  .service-carousel-content {
    padding: 1rem 0.875rem;
  }

  .service-carousel-title {
    font-size: 1rem;
  }

  .service-carousel-icon {
    width: 44px;
    height: 44px;
  }

  .service-carousel-icon svg {
    width: 22px;
    height: 22px;
      }
    }
  
    /* Services List Container - Full Width Sliding Cards (Fallback) */
    .services-list-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 4rem;
    }
  
    /* Service Item Slide - Background Image with Overlay */
    .service-item-slide {
      position: relative;
      width: 100%;
      min-height: 500px;
      border-radius: 1.5rem;
      overflow: hidden;
      cursor: pointer;
      isolation: isolate;
    }
  
    .service-item-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
  
    .service-item-slide:hover .service-item-bg {
      transform: scale(1.1);
    }
  
    .service-item-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  background: linear-gradient(
    135deg,
    rgba(251, 168, 1, 0.85) 0%,
    rgba(3, 3, 3, 0.75) 100%
  );
      transition: opacity 0.4s ease;
    }
  
    .service-item-slide:hover .service-item-overlay {
      opacity: 0.9;
    }
  
    .service-item-content {
      position: relative;
      z-index: 2;
      padding: 4rem 3rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #ffffff;
    }
  
    .service-item-number {
      font-size: 1rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1rem;
      letter-spacing: 0.1em;
    }
  
    .service-item-title {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: #ffffff;
      letter-spacing: -0.02em;
    }
  
    .service-item-description {
      font-size: clamp(1rem, 2vw, 1.25rem);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
    }
  
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .service-item-slide {
        min-height: 400px;
      }
  
      .service-item-content {
        padding: 3rem 2rem;
      }
  
      .service-item-title {
        font-size: 2rem;
      }
  
      .service-item-description {
        font-size: 1rem;
      }
    }
  
    /* Premium Service Cards - 2025 Design (Fallback) */
    .service-card-modern {
      padding: 2.5rem 2rem;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 1.25rem;
      border: 1px solid rgba(255, 255, 255, 0.5);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Gradient overlay on hover */
    .service-card-modern::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 3, 3, 0.03) 0%,
    rgba(3, 3, 3, 0.01) 100%
  );
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }
    
    .service-card-modern::after {
  content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
      transition: left 0.6s ease;
      z-index: 1;
    }
    
    .service-card-modern:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(3, 3, 3, 0.05);
      border-color: rgba(255, 255, 255, 0.8);
    }
    
    .service-card-modern:hover::before {
      opacity: 1;
    }
    
    .service-card-modern:hover::after {
      left: 100%;
    }
    
    /* Service Icon - Modern Style */
    .service-icon-modern {
      color: #ffffff;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      background: rgba(3, 3, 3, 0.04);
      border-radius: 1rem;
      position: relative;
      z-index: 2;
      margin: 0 auto;
    }
    
    .service-icon-modern svg {
      width: 51px;
      height: 50;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card-modern:hover .service-icon-modern {
      background: rgba(251, 168, 1, 0.15);
      transform: rotate(5deg) scale(1.1);
    }
    
    .service-card-modern:hover .service-icon-modern svg {
      transform: scale(1.15);
      color: #fba801;
    }
    
    /* Service Title - Premium Typography */
    .service-title-modern {
      font-size: 21px;
      font-weight: 600;
      color: #ffffff;
      margin: 0;
      line-height: 1.2;
      letter-spacing: -0.01em;
      position: relative;
      z-index: 2;
      flex: 1;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      margin-top: -10px;
      width: 100%;
      display: block;
    }
    
    .service-card-modern:hover .service-title-modern {
      color: #030303;
      transform: translateX(4px);
    }
    
    /* Responsive adjustments */
    @media (max-width: 767px) {
      .service-card-modern {
    padding: 1.5rem 1.25rem; /* Reduced padding */
        flex-direction: column;
        align-items: flex-start;
    gap: 1rem; /* Reduced gap */
    min-height: auto; /* Remove fixed height */
      }
      
      .service-icon-modern {
    width: 48px; /* Smaller icon */
    height: 48px;
      }
      
      .service-icon-modern svg {
    width: 24px; /* Smaller SVG */
    height: 24px;
  }

  .service-title-modern {
    font-size: 1rem; /* Smaller title */
    margin-top: 0; /* Remove negative margin */
      }
      
      .service-sec-paragraph {
        max-width: 100%;
      }
    }

@media (max-width: 480px) {
  .service-card-modern {
    padding: 1.25rem 1rem; /* Further reduced */
    gap: 0.75rem;
  }

  .service-icon-modern {
    width: 44px;
    height: 44px;
  }

  .service-icon-modern svg {
    width: 22px;
    height: 22px;
  }

  .service-title-modern {
    font-size: 22px !important;
    line-height: 25px !important;
  }
}
    
    @media (min-width: 768px) and (max-width: 991px) {
      .service-card-modern {
        min-height: 140px;
      }
    }
    
    @media (min-width: 992px) {
      .service-card-modern {
        min-height: 130px;
      }
    }
    
    /* ============================================
       7. OUR WORK SECTION
       ============================================ */
    
    /* ============================================
       PORTFOLIO SHOWCASE SECTION - GSAP Showcase Style
       ============================================ */
    
    .portfolio-showcase-section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
      background: #ffffff;
    }
    
    @media (min-width: 1024px) {
      .portfolio-showcase-section {
        padding: 10rem 0;
      }
    }
    
    /* Portfolio Header */
    .portfolio-header {
      position: relative;
      z-index: 1;
      margin-bottom: 4rem;
      text-align: center;
    }
    
    .portfolio-badge-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
    }
    
    .portfolio-badge {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(251, 168, 1, 0.3);
      position: relative;
      z-index: 2;
    }
    
    .portfolio-badge-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: #ffffff;
    }
    
    .portfolio-divider {
      width: 100px;
      height: 2px;
      background: linear-gradient(90deg, var(--brand-primary) 0%, transparent 100%);
      margin-left: 1rem;
    }
    
    .portfolio-header-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .portfolio-main-heading {
      font-size: clamp(2.5rem, 5vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.03em;
    }
    
    .portfolio-heading-line {
      display: block;
      color: var(--text-gray-900);
    }
    
    .portfolio-heading-gradient {
      display: block;
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .portfolio-subheading {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--text-gray-700);
      line-height: 1.6;
      margin-bottom: 0;
    }
    
    /* Portfolio Grid Container - GSAP Showcase Style */
    .portfolio-grid-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      position: relative;
      z-index: 1;
      margin-top: 4rem;
    }
    
    @media (min-width: 768px) {
      .portfolio-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }
    
    @media (min-width: 1024px) {
      .portfolio-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }
    
    /* Portfolio Items - GSAP Showcase Style */
    .portfolio-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      background: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform, opacity;
      overflow: hidden;
    }
    
    /* Large Items - Span 2 columns */
    .portfolio-item-large {
      grid-column: span 1;
    }
    
    @media (min-width: 768px) {
      .portfolio-item-large {
        grid-column: span 2;
      }
    }
    
    /* Medium Items */
    .portfolio-item-medium {
      grid-column: span 1;
    }
    
    /* Small Items */
    .portfolio-item-small {
      grid-column: span 1;
    }
    
    .portfolio-item-inner {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    
    .portfolio-image-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #f3f4f6;
    }
    
    .portfolio-item-large .portfolio-image-wrapper {
      aspect-ratio: 16 / 9;
    }
    
    .portfolio-item-small .portfolio-image-wrapper {
      aspect-ratio: 4 / 3;
    }
    
    .portfolio-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      will-change: transform;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }
    
    .portfolio-content {
      padding: 2rem;
      background: #ffffff;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .portfolio-item-small .portfolio-content {
      padding: 1.5rem;
    }
    
    .portfolio-category {
      display: inline-block;
      padding: 0.375rem 0.875rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-primary);
      background: rgba(251, 168, 1, 0.1);
      border-radius: 6px;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .portfolio-title {
      font-size: clamp(1.25rem, 2vw, 1.75rem);
      font-weight: 700;
      color: var(--text-gray-900);
      margin-bottom: 0.75rem;
      line-height: 1.3;
      letter-spacing: -0.02em;
    }
    
    .portfolio-description {
      font-size: 0.95rem;
      color: var(--text-gray-700);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    
    .portfolio-item-small .portfolio-description {
      display: none;
    }
    
    .portfolio-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-gray-900);
      text-decoration: none;
      transition: all 0.3s ease;
      margin-top: auto;
    }
    
    .portfolio-link svg {
      transition: transform 0.3s ease;
    }
    
    .portfolio-link:hover {
      color: var(--brand-primary);
    }
    
    .portfolio-link:hover svg {
      transform: translateX(4px);
    }
    
    /* Hover Effects - GSAP Showcase Style */
    .portfolio-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }
    
    .portfolio-item:hover .portfolio-image {
      transform: scale(1.08);
    }
    
    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }
    
    /* ============================================
       FULL SCREEN HORIZONTAL PORTFOLIO CAROUSEL
       ============================================ */
    
    .portfolio-carousel-section {
      position: relative;
      width: 100%;
      background: none;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      bottom: 0;
    }
    
    .portfolio-carousel-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
      padding: 3rem 2rem 2rem;
      text-align: center;
      pointer-events: none;
    }
    
    @media (min-width: 1024px) {
      .portfolio-carousel-header {
        padding: 4rem 2rem 2rem;
      }
    }
    
    .portfolio-carousel-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      color: var(--text-gray-900);
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    
    .portfolio-carousel-subtitle {
      font-size: 1rem;
      color: var(--text-gray-700);
      opacity: 0.8;
    }
    
    .portfolio-carousel-wrapper {
      position: relative;
      width: 100%;
  overflow-x: hidden; /* Changed to hidden for marquee animation */
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
      padding-top: 0;
      scroll-behavior: auto; /* GSAP handles smooth scrolling */
      will-change: scroll-position;
    }
    
    .portfolio-carousel-wrapper::-webkit-scrollbar {
      display: none;
    }
    
    .portfolio-carousel-wrapper:active {
      cursor: grabbing;
    }
    
    .portfolio-carousel-wrapper:hover {
      cursor: grab;
    }
    
    /* Premium macOS-style frosted glass fade overlays - 2025 Trend */
    .portfolio-carousel-fade-left,
    .portfolio-carousel-fade-right {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 320px;
      z-index: 10;
      pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .portfolio-carousel-fade-left {
      left: 0;
      background: 
        /* Dark glass gradient - no color tint */ linear-gradient(
          to right,
          rgba(0, 0, 0, 0.95) 0%,
          rgba(0, 0, 0, 0.88) 8%,
          rgba(0, 0, 0, 0.75) 20%,
    rgba(0, 0, 0, 0.6) 35%,
          rgba(0, 0, 0, 0.45) 52%,
    rgba(0, 0, 0, 0.3) 70%,
          rgba(0, 0, 0, 0.18) 85%,
          rgba(0, 0, 0, 0.08) 95%,
          rgba(0, 0, 0, 0) 100%
        );
      backdrop-filter: blur(90px) saturate(180%) brightness(0.7);
      -webkit-backdrop-filter: blur(90px) saturate(180%) brightness(0.7);
      box-shadow: 
        /* Subtle dark edge highlight */ inset 3px 0 0
      rgba(255, 255, 255, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.06),
        inset 0 -2px 0 rgba(255, 255, 255, 0.06),
    /* Dark inner glow for glass depth */ inset 0 0 120px rgba(0, 0, 0, 0.5),
        inset 0 0 240px rgba(0, 0, 0, 0.3);
      mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.99) 10%,
        rgba(0, 0, 0, 0.96) 20%,
    rgba(0, 0, 0, 0.9) 35%,
    rgba(0, 0, 0, 0.8) 55%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0.08) 97%,
        rgba(0, 0, 0, 0) 100%
      );
      -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.99) 10%,
        rgba(0, 0, 0, 0.96) 20%,
    rgba(0, 0, 0, 0.9) 35%,
    rgba(0, 0, 0, 0.8) 55%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0.08) 97%,
        rgba(0, 0, 0, 0) 100%
      );
    }
    
    .portfolio-carousel-fade-right {
      right: 0;
      background: 
        /* Dark glass gradient - no color tint */ linear-gradient(
          to left,
          rgba(0, 0, 0, 0.95) 0%,
          rgba(0, 0, 0, 0.88) 8%,
          rgba(0, 0, 0, 0.75) 20%,
    rgba(0, 0, 0, 0.6) 35%,
          rgba(0, 0, 0, 0.45) 52%,
    rgba(0, 0, 0, 0.3) 70%,
          rgba(0, 0, 0, 0.18) 85%,
          rgba(0, 0, 0, 0.08) 95%,
          rgba(0, 0, 0, 0) 100%
        );
      backdrop-filter: blur(90px) saturate(180%) brightness(0.7);
      -webkit-backdrop-filter: blur(90px) saturate(180%) brightness(0.7);
      box-shadow: 
        /* Subtle dark edge highlight */ inset -3px 0 0 rgba(255, 255, 255, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.06),
        inset 0 -2px 0 rgba(255, 255, 255, 0.06),
    /* Dark inner glow for glass depth */ inset 0 0 120px rgba(0, 0, 0, 0.5),
        inset 0 0 240px rgba(0, 0, 0, 0.3);
      mask-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.99) 10%,
        rgba(0, 0, 0, 0.96) 20%,
    rgba(0, 0, 0, 0.9) 35%,
    rgba(0, 0, 0, 0.8) 55%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0.08) 97%,
        rgba(0, 0, 0, 0) 100%
      );
      -webkit-mask-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.99) 10%,
        rgba(0, 0, 0, 0.96) 20%,
    rgba(0, 0, 0, 0.9) 35%,
    rgba(0, 0, 0, 0.8) 55%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0.08) 97%,
        rgba(0, 0, 0, 0) 100%
      );
    }
    
    /* Enhanced hover effect - dark glass */
    .portfolio-carousel-section:hover .portfolio-carousel-fade-left,
    .portfolio-carousel-section:hover .portfolio-carousel-fade-right {
      backdrop-filter: blur(100px) saturate(200%) brightness(0.65);
      -webkit-backdrop-filter: blur(100px) saturate(200%) brightness(0.65);
  box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(255, 255, 255, 0.08), inset 0 0 140px rgba(0, 0, 0, 0.6),
        inset 0 0 280px rgba(0, 0, 0, 0.4);
    }
    
    .portfolio-carousel-section:hover .portfolio-carousel-fade-right {
  box-shadow: inset -3px 0 0 rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(255, 255, 255, 0.08), inset 0 0 140px rgba(0, 0, 0, 0.6),
        inset 0 0 280px rgba(0, 0, 0, 0.4);
    }
    
    /* Hide fade overlays when at start/end */
    .portfolio-carousel-wrapper.scroll-start .portfolio-carousel-fade-left {
      opacity: 0;
    }
    
    .portfolio-carousel-wrapper.scroll-end .portfolio-carousel-fade-right {
      opacity: 0;
    }
    
    @media (max-width: 767px) {
      .portfolio-carousel-fade-left,
      .portfolio-carousel-fade-right {
        width: 160px;
        backdrop-filter: blur(75px) saturate(180%) brightness(0.7);
        -webkit-backdrop-filter: blur(75px) saturate(180%) brightness(0.7);
    box-shadow: inset 2px 0 0 rgba(255, 255, 255, 0.08),
          inset 0 1.5px 0 rgba(255, 255, 255, 0.06),
          inset 0 -1.5px 0 rgba(255, 255, 255, 0.06),
      inset 0 0 80px rgba(0, 0, 0, 0.45), inset 0 0 160px rgba(0, 0, 0, 0.25);
      }
      
      .portfolio-carousel-fade-right {
    box-shadow: inset -2px 0 0 rgba(255, 255, 255, 0.08),
          inset 0 1.5px 0 rgba(255, 255, 255, 0.06),
          inset 0 -1.5px 0 rgba(255, 255, 255, 0.06),
      inset 0 0 80px rgba(0, 0, 0, 0.45), inset 0 0 160px rgba(0, 0, 0, 0.25);
  }
  
  /* Mobile marquee setup - very slow smooth animation */
  .portfolio-carousel-wrapper {
    overflow-x: hidden !important; /* Hide scrollbar for marquee */
  }
  
  .portfolio-carousel-track {
    gap: 20px !important; /* Add gap between cards */
    padding: 0 2rem !important; /* Reduced padding */
    flex-wrap: nowrap !important;
    width: fit-content !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    /* GSAP will handle transform - don't set it here */
      }
    }
    
    @media (min-width: 1440px) {
      .portfolio-carousel-fade-left,
      .portfolio-carousel-fade-right {
        width: 380px;
        backdrop-filter: blur(110px) saturate(200%) brightness(0.65);
        -webkit-backdrop-filter: blur(110px) saturate(200%) brightness(0.65);
    box-shadow: inset 3.5px 0 0 rgba(255, 255, 255, 0.1),
          inset 0 2.5px 0 rgba(255, 255, 255, 0.08),
          inset 0 -2.5px 0 rgba(255, 255, 255, 0.08),
      inset 0 0 140px rgba(0, 0, 0, 0.6), inset 0 0 280px rgba(0, 0, 0, 0.4);
      }
      
      .portfolio-carousel-fade-right {
    box-shadow: inset -3.5px 0 0 rgba(255, 255, 255, 0.1),
          inset 0 2.5px 0 rgba(255, 255, 255, 0.08),
          inset 0 -2.5px 0 rgba(255, 255, 255, 0.08),
      inset 0 0 140px rgba(0, 0, 0, 0.6), inset 0 0 280px rgba(0, 0, 0, 0.4);
      }
    }
    
    .portfolio-carousel-track {
      display: flex;
      height: 100%;
      gap: 0;
      padding: 0 5vw;
      will-change: transform;
      align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
  position: relative;
  /* GSAP will handle transform for marquee - don't set it here */
    }
    
    @media (min-width: 768px) {
      .portfolio-carousel-track {
        gap: 0;
        padding: 0 8vw;
      }
    }
    
    @media (min-width: 1024px) {
      .portfolio-carousel-track {
        gap: 0;
        padding: 0 10vw;
      }
    }
    
    @media (min-width: 1440px) {
      .portfolio-carousel-track {
        gap: 0;
        padding: 0;
      }
    }
    
    .portfolio-carousel-card {
      flex: 0 0 auto;
      width: 85vw;
      max-width: 500px;
      /* height: calc(100vh - 12rem); */
      min-height: 600px;
      position: relative;
      border-radius: 0;
      overflow: hidden;
      /* background: #ffffff; */
      /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); */
      /* will-change: transform, opacity; */
      /* transform-origin: center center; */
      margin-right: 0;
    }
    
    .portfolio-carousel-card:first-child {
      /* border-radius: 0; */
    }
    
    .portfolio-carousel-card:last-child {
      border-radius: 0 24px 24px 0;
    }
    
    @media (min-width: 768px) {
      .portfolio-carousel-card {
        width: 60vw;
        max-width: 550px;
      }
    }
    
    @media (min-width: 1024px) {
      .portfolio-carousel-card {
        width: 45vw;
        max-width: 600px;
      }
    }
    
    @media (min-width: 1440px) {
      .portfolio-carousel-card {
        width: 100vw;
        max-width: 760px;
        margin: 0 21px;
      }
    }
    
    .portfolio-carousel-card-inner {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    
    .portfolio-carousel-image {
      width: 100%;
      height: 504px;
      overflow: hidden;
      position: relative;
    }
    
    .portfolio-carousel-image img {
      width: 100%;
      /* object-fit: cover; */
      /* transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
      /* will-change: transform; */
    }
    
    .portfolio-carousel-content {
      flex: 1;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: linear-gradient(135deg, #fba801 0%, #ffc947 50%, #e09a00 100%);
      color: #ffffff;
    }
    
    @media (min-width: 1024px) {
      .portfolio-carousel-content {
        padding: 3rem;
      }
    }
    
    .portfolio-carousel-category {
      display: inline-block;
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      width: fit-content;
    }
    
    .portfolio-carousel-card-title {
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    
    .portfolio-carousel-card-description {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      opacity: 0.95;
    }
    
    @media (min-width: 1024px) {
      .portfolio-carousel-card-description {
        font-size: 1.125rem;
      }
    }
    
    .portfolio-carousel-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s ease;
      width: fit-content;
    }
    
    .portfolio-carousel-link:hover {
      gap: 1rem;
      transform: translateX(4px);
    }
    
    /* Hover Effects - Removed - cards stay same on hover */
    
    /* Mobile Responsive */
    @media (max-width: 767px) {
      .portfolio-carousel-card {
    width: 100%;
    padding: 0 !important;
      }
      
      .portfolio-carousel-content {
        padding: 2rem;
      }
      
      .portfolio-carousel-track {
        gap: 1.5rem;
        padding: 0 1.5rem;
      }
    }
    
    /* ============================================
       8. FAQ SECTION
       ============================================ */
    
    /* ============================================
       8. TESTIMONIALS MARQUEE SECTION - 2025 TRENDY DESIGN
       ============================================ */
    
    .testimonials-marquee-section {
      position: relative;
      padding: 9rem 0 0 0;
      background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    
    .testimonials-marquee-container {
      width: 100%;
      position: relative;
      z-index: 1;
    }
    
    .testimonials-marquee-container .container {
      margin-bottom: 3rem;
    }
    
    /* Section Header - Matching Stats Section Style */
    .testimonials-badge-column {
      min-width: 120px;
    }
    
    .testimonials-badge {
      width: 48px;
      height: 48px;
      background-color: #fba801;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px var(--glow-primary);
      margin-right: 0.75rem;
    }
    
    .testimonials-badge-number {
      font-size: 1.125rem;
      font-weight: 700;
      color: #000000;
    }
    
    .testimonials-divider-line {
      height: 1px;
      width: 48px;
      background: #fba801;
    }
    
    .testimonials-heading-responsive {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--text-gray-900);
      margin-bottom: 1rem;
      line-height: 57px;
      width: 80%;
    }
    
    .testimonials-paragraph {
      max-width: 42rem;
      font-size: 1.125rem;
      color: var(--text-gray-700);
      line-height: 1.6;
    }
    
    /* ============================================
       TOOLS & TECHNOLOGIES SECTION - MARQUEE DESIGN
       ============================================ */
    
    .tools-tech-section {
      padding: 5rem 0;
  background: linear-gradient(
    135deg,
    #0a0a0f 0%,
    #111118 50%,
    #0f0f1a 100%
  ) !important;
      position: relative;
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .tools-tech-section {
        padding: 6rem 0;
      }
    }
    
    @media (min-width: 1024px) {
      .tools-tech-section {
        padding: 60px 0 49px 0;
      }
    }
    
    .tools-tech-header {
      text-align: center;
      margin-bottom: 10px;
      position: relative;
      z-index: 2;
    }
    
    .tools-tech-heading {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300;
      color: #ffffff;
      margin-bottom: 1rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    
    .tools-tech-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Marquee Wrapper */
    .tools-marquee-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 2rem 0;
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      );
    }
    
    /* Marquee Track */
    .tools-marquee-track {
      display: flex;
      gap: 3rem;
      width: fit-content;
      will-change: transform;
      backface-visibility: hidden;
      transform: translateZ(0);
      animation: toolsMarquee 60s linear infinite;
    }
    
    @keyframes toolsMarquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
    /* Tool Logo Items */
    .tool-logo-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 23px 30px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 1.25rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      min-width: fit-content;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
      white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.tool-logo-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 1.25rem 1.25rem 0 0;
  pointer-events: none;
  z-index: 1;
}

.tool-logo-item img {
        width: 40px;
  position: relative;
  z-index: 2;
    }
    
    .tool-logo-item::before {
  content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 168, 1, 0.2),
    transparent
  );
      transition: left 0.6s ease;
    }
    
    .tool-logo-item:hover::before {
      left: 100%;
    }
    
    .tool-logo-item:hover {
      background: rgba(251, 168, 1, 0.15);
      border-color: rgba(251, 168, 1, 0.6);
      transform: none !important;
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 16px 40px rgba(251, 168, 1, 0.2),
    0 8px 20px rgba(251, 168, 1, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.tool-logo-item:hover::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 100%
  );
    }
    
    .tool-name {
      font-size: 18px;
      font-weight: 300;
  font-family: var(
    --font-heading,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif
  );
      color: rgba(255, 255, 255, 0.95);
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      letter-spacing: 0.5px;
      text-transform: uppercase;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      z-index: 1;
    }
    
    .tool-logo-item:hover .tool-name {
      background: linear-gradient(135deg, #fba801 0%, #ffc947 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transform: none !important;
      filter: drop-shadow(0 0 12px rgba(251, 168, 1, 0.5));
      letter-spacing: 0.8px;
    }
    
    /* Pause animation on hover */
    .tools-marquee-wrapper:hover .tools-marquee-track {
      animation-play-state: paused;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991px) {
      .tools-tech-section {
        padding: 4rem 0;
      }
      
      .tools-tech-header {
        margin-bottom: 2.5rem;
      }
      
      .tools-tech-heading {
        font-size: clamp(2rem, 5vw, 3rem);
      }
      
      .tools-tech-subtitle {
        font-size: 1rem;
      }
      
      .tools-marquee-track {
        gap: 2rem;
        animation-duration: 50s;
      }
      
      .tool-logo-item {
        padding: 1.25rem 2rem;
        min-width: fit-content;
      }
      
      .tool-name {
        font-size: clamp(1rem, 2vw, 1.25rem);
      }
    }
    
    @media (max-width: 767px) {
      .tools-tech-section {
    padding: 3rem 0 !important;
      }
      
      .tools-tech-header {
        margin-bottom: 2rem;
      }
      
      .tools-tech-heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
    font-weight: 800;
      }
      
      .tools-tech-subtitle {
        font-size: 0.9375rem;
      }
      
      .tools-marquee-wrapper {
        padding: 1.5rem 0;
      }
      
      .tools-marquee-track {
        gap: 1.5rem;
        animation-duration: 45s;
      }
      
      .tool-logo-item {
        padding: 1rem 1.75rem;
        min-width: fit-content;
        border-radius: 0.875rem;
    border: 0 !important;
      }
      
      .tool-name {
        font-size: clamp(0.9375rem, 2vw, 1.125rem);
        letter-spacing: 0.4px;
      }
    }
    
    /* ============================================
       INDUSTRIES WE SERVE SECTION
       ============================================ */
    
    .industries-section {
      padding: 5rem 0;
      background: #fba801 !important;
      position: relative;
      margin: 60px 0;
    }
    
    @media (min-width: 768px) {
      .industries-section {
        padding: 6rem 0;
      }
    }
    
    @media (min-width: 1024px) {
      .industries-section {
        padding: 0;
      }
    }
    
    /* Left Column - Badge, Heading & Description */
    .industries-left-column {
      position: sticky;
      top: 100px;
      align-self: flex-start;
    }
    
    .industries-left-content {
      padding-right: 2rem;
      margin-top: 60px;
      margin-bottom: 60px;
    }
    
    .industries-badge {
      width: 48px;
      height: 48px;
      background-color: #000000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(251, 168, 1, 0.3);
      flex-shrink: 0;
    }
    
    .industries-badge-number {
      font-size: 1.125rem;
      font-weight: 700;
      color: #fba801;
    }
    
    .industries-divider-line {
      height: 1px;
      width: 48px;
      background: #fba801;
    }
    
    .industries-heading-responsive {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      color: #000000;
      line-height: 54px;
      letter-spacing: -0.02em;
      margin-top: 0;
    }
    
    .industries-paragraph {
      font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
      color: #1d1f1e;
      line-height: 1.7;
      max-width: 100%;
    }
    
    /* Right Column - Industries Marquee */
    .industries-right-column {
      padding-left: 2rem;
    }
    
    @media (max-width: 991px) {
      .industries-left-column {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
      }
      
      .industries-left-content {
        padding-right: 0;
    margin-bottom: 30px;
      }
      
      .industries-right-column {
        padding-left: 0;
      }
    }
    
    /* Marquee Container */
    .industries-marquee-container {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      overflow: hidden;
      height: 600px;
      position: relative;
    }
    
    @media (max-width: 767px) {
      .industries-marquee-container {
        flex-direction: column;
        height: auto;
        gap: 1rem;
      }
    }
    
    /* Marquee Column */
    .industries-marquee-column {
      flex: 1;
      overflow: hidden;
      position: relative;
      /* mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
      ); */
      /* -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%); */
      padding: 0;
    }
    
    /* Marquee Track */
    .industries-marquee-track {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      will-change: transform;
      backface-visibility: hidden;
      transform: translateZ(0);
    }
    
    .industries-marquee-track-left {
      animation: industriesMarqueeBottomToTop 30s linear infinite;
    }
    
    .industries-marquee-track-right {
      animation: industriesMarqueeTopToBottom 30s linear infinite;
    }
    
    @keyframes industriesMarqueeBottomToTop {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-50%);
      }
    }
    
    @keyframes industriesMarqueeTopToBottom {
      0% {
        transform: translateY(-50%);
      }
      100% {
        transform: translateY(0);
      }
    }
    
    /* Industry Item */
    .industry-item {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem 1.5rem;
      background: none;
      border: 1px solid rgb(29 31 30);
      border-radius: 1.5rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      min-height: 160px;
      /* backdrop-filter: blur(12px); */
      -webkit-backdrop-filter: blur(12px);
      /* box-shadow: 0 4px 16px rgba(251, 168, 1, 0.1); */
    }
    
    .industry-item::before {
  content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(251, 168, 1, 0.2),
    transparent
  );
      transition: top 0.6s ease;
      display: none;
    }
    
    .industry-icon {
      width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }
    
    .industry-icon img {
      width: 100%;
      height: 100%;
    }
    
    .industry-name {
      font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
      font-weight: 700;
      color: var(--text-gray-900);
      text-align: center;
      transition: all 0.3s ease;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991px) {
      .industries-section {
        padding: 4rem 0;
      }
      
      .industries-heading-responsive {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
      }
      
      .industries-paragraph {
        font-size: 1rem;
      }
      
      .industries-marquee-container {
        height: 550px;
      }
      
      .industry-item {
        padding: 1.75rem 1.25rem;
        min-height: 140px;
      }
      
      .industry-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
      }
    }
    
    @media (max-width: 767px) {
      .industries-section {
    padding: 0 20px !important;
    margin-top: 0;
      }
      
      .industries-badge {
        width: 40px;
        height: 40px;
      }
      
      .industries-badge-number {
        font-size: 1rem;
      }
      
      .industries-divider-line {
        width: 40px;
      }
      
      .industries-heading-responsive {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 0;
      }
      
      .industries-paragraph {
        font-size: 0.9375rem;
      }
      
      .industries-marquee-container {
        height: auto;
        gap: 1rem;
    margin-bottom: 50px;
      }
      
      .industries-marquee-column {
    height: auto !important;
      }
      
      .industries-marquee-track {
        gap: 1rem;
    /* display: inline-flex; */
    width: 100%;
    /* display: flex; */
    /* flex-direction: row-reverse; */
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: space-around;
    display: block;
    margin-left: -3px;
      }
      
      .industry-item {
        padding: 1.5rem 1rem;
    height: 120px;
        border-radius: 1.25rem;
    width: 46%;
    float: left;
    margin-left: 10px;
    margin-bottom: 13px;
      }
      
      .industry-icon {
    width: 38px;
    height: 41px;
        margin-bottom: 0.75rem;
      }
      
      .industry-name {
        font-size: 0.875rem;
    line-height: 16px;
      }
    }
    
    /* ============================================
       OUR PROCESS SECTION - 2025 TRENDY DESIGN
       ============================================ */
    
    .process-section {
      padding: 5rem 0;
      background: #ffffff;
      position: relative;
    }
    
    @media (min-width: 768px) {
      .process-section {
        padding: 6rem 0;
      }
    }
    
    @media (min-width: 1024px) {
      .process-section {
        padding: 15rem 0 9.5rem 0;
      }
    }
    
    /* Left Column - Badge, Heading & Description */
    .process-left-column {
      position: sticky;
      top: 100px;
      align-self: flex-start;
    }
    
    .process-left-content {
      padding-right: 2rem;
    }
    
    .process-badge {
      width: 48px;
      height: 48px;
      background-color: #fba801;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(251, 168, 1, 0.3);
      flex-shrink: 0;
    }
    
    .process-badge-number {
      font-size: 1.125rem;
      font-weight: 700;
      color: #000000;
    }
    
    .process-divider-line {
      height: 1px;
      width: 48px;
      background: #fba801;
    }
    
    .process-heading-responsive {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      color: var(--text-gray-900);
      line-height: 60px;
      letter-spacing: -0.02em;
      margin-top: 0;
    }
    
    .process-paragraph {
      font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
      color: var(--text-gray-700);
      line-height: 1.7;
      max-width: 100%;
    }
    
    /* Right Column - Process Steps Grid */
    .process-right-column {
      padding-left: 2rem;
    }
    
    @media (max-width: 991px) {
      .process-left-column {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
      }
      
      .process-left-content {
        padding-right: 0;
      }
      
      .process-right-column {
        padding-left: 0;
      }
    }
    
    /* Process Steps Grid */
    .process-steps-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
      position: relative;
    }
    
    @media (max-width: 767px) {
      .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }
    
    /* Process Step Item */
    .process-step-item {
      position: relative;
      background: #fba801;
      border: 0;
      border-radius: 2rem;
      padding: 3rem 2.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      cursor: pointer;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      opacity: 0;
    }
    
    .process-step-item::before {
  content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.15) 0%,
    transparent 70%
  );
      opacity: 0;
  transition: opacity 0.3s ease;
    }
    
    .process-step-item:hover::before {
      opacity: 1;
    }
    
    .process-step-item::after {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 168, 1, 0.08) 0%,
    rgba(255, 201, 71, 0.04) 100%
  );
      opacity: 0;
  transition: opacity 0.3s ease;
      border-radius: 2rem;
    }
    
    .process-step-item:hover::after {
      opacity: 1;
    }
    
    .process-step-item:hover {
      border-color: rgba(251, 168, 1, 0.4);
  box-shadow: 0 32px 64px rgba(251, 168, 1, 0.25),
    0 16px 32px rgba(251, 168, 1, 0.15), 0 4px 16px rgba(251, 168, 1, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(251, 168, 1, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(251, 168, 1, 0.08) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
    }
    
    /* Step Number */
    .process-step-number {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 4rem;
      font-weight: 900;
      -webkit-background-clip: text;
      background-clip: text;
      line-height: 1;
  transition: background 0.3s ease, -webkit-background-clip 0.3s ease,
    background-clip 0.3s ease, -webkit-text-fill-color 0.3s ease;
  font-family: var(
    --font-heading,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif
  );
      letter-spacing: -0.05em;
      z-index: 1;
      color: #ffc34a;
    }
    
    .process-step-item:hover .process-step-number {
  background: linear-gradient(
    135deg,
    rgba(251, 168, 1, 0.25) 0%,
    rgba(251, 168, 1, 0.15) 100%
  );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* Step Content */
    .process-step-content {
      position: relative;
      z-index: 2;
    }
    
    /* Icon Wrapper */
    .process-step-icon-wrapper {
      position: relative;
      width: 120px;
      height: 120px;
      margin: 0 auto 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .process-step-icon {
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: 2px solid rgba(251, 168, 1, 0.2);
      border-radius: 2rem;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      z-index: 3;
  box-shadow: 0 8px 24px rgba(251, 168, 1, 0.1),
        inset 0 2px 8px rgba(255, 255, 255, 0.5),
        inset 0 -2px 8px rgba(251, 168, 1, 0.05);
    }
    
    .process-step-icon img {
      width: 56px;
      height: 56px;
    }
    
    .process-step-item:hover .process-step-icon {
  background: linear-gradient(
    135deg,
    rgba(251, 168, 1, 0.25) 0%,
    rgba(255, 201, 71, 0.18) 50%,
    rgba(251, 168, 1, 0.25) 100%
  );
      border-color: rgba(251, 168, 1, 0.5);
  box-shadow: 0 16px 40px rgba(251, 168, 1, 0.35),
        0 8px 20px rgba(251, 168, 1, 0.25),
        inset 0 2px 12px rgba(255, 255, 255, 0.6),
        inset 0 -2px 12px rgba(251, 168, 1, 0.15);
    }
    
    /* Decorative Elements */
    .process-step-decoration {
      position: absolute;
      border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.15) 0%,
    rgba(251, 168, 1, 0.05) 100%
  );
  transition: background 0.3s ease, border-color 0.3s ease;
      border: 2px solid rgba(251, 168, 1, 0.1);
    }
    
    .process-step-decoration-1 {
      width: 80px;
      height: 80px;
      top: -15px;
      right: -15px;
      z-index: 1;
      animation: floatDecoration1 6s ease-in-out infinite;
    }
    
    .process-step-decoration-2 {
      width: 60px;
      height: 60px;
      bottom: -10px;
      left: -10px;
      z-index: 1;
      animation: floatDecoration2 8s ease-in-out infinite;
    }
    
    @keyframes floatDecoration1 {
  0%,
  100% {
        transform: translate(0, 0) scale(1);
      }
      50% {
        transform: translate(5px, -5px) scale(1.1);
      }
    }
    
    @keyframes floatDecoration2 {
  0%,
  100% {
        transform: translate(0, 0) scale(1);
      }
      50% {
        transform: translate(-5px, 5px) scale(1.1);
      }
    }
    
    .process-step-item:hover .process-step-decoration-1 {
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.3) 0%,
    rgba(251, 168, 1, 0.15) 100%
  );
      border-color: rgba(251, 168, 1, 0.3);
      animation: none;
    }
    
    .process-step-item:hover .process-step-decoration-2 {
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.3) 0%,
    rgba(251, 168, 1, 0.15) 100%
  );
      border-color: rgba(251, 168, 1, 0.3);
      animation: none;
    }
    
    /* Step Title */
    .process-step-title {
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      font-weight: 800;
      color: var(--text-gray-900);
      margin-bottom: 1.25rem;
      line-height: 1.3;
  transition: color 0.3s ease;
      letter-spacing: -0.01em;
      position: relative;
    }
    
    .process-step-title::after {
  content: "";
      position: absolute;
      bottom: -0.5rem;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #fba801 0%, #ffc947 100%);
      border-radius: 2px;
  transition: width 0.3s ease;
    }
    
    .process-step-item:hover .process-step-title {
      color: #fba801;
    }
    
    /* Step Description */
    .process-step-description {
      font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
      color: #1d1f1eba;
      line-height: 1.75;
      margin: 0;
  transition: color 0.3s ease;
      position: relative;
      z-index: 2;
    }
    
    .process-step-item:hover .process-step-description {
      color: var(--text-gray-800);
    }
    
    /* Responsive adjustments */
    @media (max-width: 991px) {
      .process-section {
        padding: 4rem 0;
      }
      
      .process-heading-responsive {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
      }
      
      .process-paragraph {
        font-size: 1rem;
      }
      
      .process-steps-grid {
        gap: 2rem;
      }
      
      .process-step-item {
        padding: 2.5rem 2rem;
      }
      
      .process-step-number {
        font-size: 3.5rem;
        top: 1.25rem;
        right: 1.25rem;
      }
      
      .process-step-icon-wrapper {
        width: 110px;
        height: 110px;
        margin-bottom: 2rem;
      }
      
      .process-step-icon {
        width: 90px;
        height: 90px;
      }
      
      .process-step-icon svg {
        width: 48px;
        height: 48px;
      }
      
      .process-step-decoration-1 {
        width: 70px;
        height: 70px;
      }
      
      .process-step-decoration-2 {
        width: 55px;
        height: 55px;
      }
    }
    
    @media (max-width: 767px) {
      .process-section {
    padding: 20px 20px 60px 20px !important;
      }
      
      .process-badge {
        width: 40px;
        height: 40px;
      }
      
      .process-badge-number {
        font-size: 1rem;
      }
      
      .process-divider-line {
        width: 40px;
      }
      
      .process-heading-responsive {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 0;
      }
      
      .process-paragraph {
        font-size: 0.9375rem;
      }
      
      .process-steps-grid {
        gap: 1.75rem;
      }
      
      .process-step-item {
        padding: 2rem 1.75rem;
        border-radius: 1.75rem;
      }
      
      .process-step-number {
        top: 1rem;
        right: 1rem;
        font-size: 3rem;
      }
      
      .process-step-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.75rem;
      }
      
      .process-step-icon {
        width: 80px;
        height: 80px;
        border-radius: 1.75rem;
      }
      
      .process-step-icon svg {
        width: 44px;
        height: 44px;
      }
      
      .process-step-decoration-1 {
        width: 60px;
        height: 60px;
        top: -12px;
        right: -12px;
      }
      
      .process-step-decoration-2 {
        width: 45px;
        height: 45px;
        bottom: -8px;
        left: -8px;
      }
      
      .process-step-title {
        font-size: 1.1875rem;
        margin-bottom: 1rem;
    text-align: center;
    line-height: 29px !important;
      }
      
      .process-step-description {
        font-size: 0.9375rem;
        line-height: 1.7;
    text-align: center;
      }
    }
    
    /* ============================================
       FAQ SECTION - Matching Testimonials Style
       ============================================ */
    
    .faq-section {
      padding: 5rem 0;
      background: #ffffff;
      position: relative;
      min-height: 100vh;
    }
    
    @media (min-width: 768px) {
      .faq-section {
        padding: 6rem 0;
      }
    }
    
    @media (min-width: 1024px) {
      .faq-section {
        padding: 7rem 0;
      }
    }
    
    /* Left Column - Badge, Heading & Description */
    .faq-left-column {
      position: sticky;
      top: 100px;
      align-self: flex-start;
    }
    
    .faq-left-content {
      padding-right: 2rem;
    }
    
    .faq-badge {
      width: 48px;
      height: 48px;
      background-color: #fba801;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(251, 168, 1, 0.3);
      flex-shrink: 0;
    }
    
    .faq-badge-number {
      font-size: 1.125rem;
      font-weight: 700;
      color: #000000;
    }
    
    .faq-label {
      color: var(--text-gray-700);
      font-size: 0.875rem;
      letter-spacing: 2px;
      margin-left: 0.5rem;
    }
    
    .faq-main-heading {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      color: var(--text-gray-900);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-top: 2rem;
    }
    
    .faq-description-text {
      font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
      color: var(--text-gray-700);
      line-height: 1.7;
      margin-top: 1.5rem;
      max-width: 100%;
    }
    
    /* Right Column - FAQ Questions List */
    .faq-right-column {
      padding-left: 2rem;
    }
    
    @media (max-width: 991px) {
      .faq-left-column {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
      }
      
      .faq-left-content {
        padding-right: 0;
      }
      
      .faq-right-column {
        padding-left: 0;
      }
    }
    
    .faq-questions-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .faq-question-item {
      background: #fba801;
      border: 1px solid rgba(251, 168, 1, 0.3);
      border-radius: 12px;
      padding: 1.5rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(251, 168, 1, 0.2);
    }
    
    .faq-question-item:hover {
      background: #ffc947;
      border-color: rgba(251, 168, 1, 0.5);
      transform: translateX(4px);
      box-shadow: 0 4px 16px rgba(251, 168, 1, 0.3);
    }
    
    .faq-question-active {
      background: #fba801;
      border-color: rgba(251, 168, 1, 0.6);
      box-shadow: 0 4px 16px rgba(251, 168, 1, 0.25);
    }
    
    .faq-question-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    
    .faq-question-text {
      font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
      font-weight: 600;
      color: #1d1f1e;
      line-height: 1.5;
      flex: 1;
    }
    
    .faq-plus-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1d1f1e;
      background: rgba(0, 0, 0, 0.1);
      border-radius: 50%;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .faq-plus-icon svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .faq-plus-active {
      background: rgba(0, 0, 0, 0.2);
      color: #1d1f1e;
      transform: rotate(45deg);
    }
    
    .faq-plus-active svg {
      transform: rotate(45deg);
    }
    
    .faq-answer-panel {
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    
    .faq-answer-panel p {
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      color: #1d1f1e;
      line-height: 1.7;
      margin: 0;
      font-weight: 400;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991px) {
      .faq-section {
        padding: 4rem 0;
      }
      
      .faq-main-heading {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-top: 1.5rem;
      }
      
      .faq-description-text {
        font-size: 0.9375rem;
        margin-top: 1rem;
      }
    }
    
    @media (max-width: 767px) {
      .faq-section {
    padding: 0 25px !important;
      }
      
      .faq-badge {
        width: 40px;
        height: 40px;
      }
      
      .faq-badge-number {
        font-size: 1rem;
      }
      
      .faq-label {
        font-size: 0.8125rem;
      }
      
      .faq-main-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 1rem;
      }
      
      .faq-description-text {
        font-size: 0.875rem;
      }
      
      .faq-question-item {
        padding: 1.25rem;
      }
      
      .faq-question-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
      }
      
      .faq-plus-icon {
        width: 28px;
        height: 28px;
      }
      
      .faq-plus-icon svg {
        width: 18px;
        height: 18px;
      }
      
      .faq-answer-panel {
        margin-top: 1rem;
        padding-top: 1rem;
      }
      
      .faq-answer-panel p {
        font-size: 0.875rem;
      }
    }
    
[x-cloak] {
  display: none !important;
}
    
    /* Marquee Rows */
    .testimonials-marquee-row {
      width: 100%;
      overflow: hidden;
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .testimonials-marquee-track {
      display: flex;
      align-items: stretch; /* Ensure all cards stretch to same height */
      gap: 2rem;
      width: fit-content;
      will-change: transform;
      backface-visibility: hidden;
      padding: 80px 0;
      margin-top: -70px;
      flex-wrap: nowrap; /* Ensure single row */
      position: relative;
      /* GSAP will handle transform via inline styles - don't set transform in CSS */
      -webkit-box-align: stretch; /* Safari fix */
      -webkit-align-items: stretch; /* Safari fix */
    }

/* Ensure GSAP inline styles take precedence */
.testimonials-marquee-track[style*="transform"] {
  /* GSAP inline styles will override any CSS */
    }
    
    /* Testimonial Cards */
    .testimonial-card {
      flex-shrink: 0;
      margin: 10px 0;
      display: flex; /* Make card a flex container */
      flex-direction: column;
      align-self: stretch; /* Stretch to match tallest card */
      -webkit-align-self: stretch; /* Safari fix */
      height: auto; /* Allow height to be determined by content */
      min-height: 100%; /* Ensure minimum height */
    }
    
    /* Variant 1: Yellow/Brand Color (Medium Size) */
    .testimonial-card-variant-1 {
      width: 380px;
    }
    
    .testimonial-card-variant-1 .testimonial-card-inner {
      position: relative;
      background: linear-gradient(135deg, #fba801 0%, #ffc947 100%);
      border-radius: 1.5rem;
      padding: 2.5rem;
      box-shadow: 0 12px 40px rgba(251, 168, 1, 0.25),
        0 4px 12px rgba(251, 168, 1, 0.15);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      min-height: 100%; /* Safari fix - ensure minimum height */
      display: flex;
      flex-direction: column;
      overflow: hidden;
      -webkit-box-flex: 1; /* Safari fix */
      -webkit-flex: 1 1 auto; /* Safari fix */
      flex: 1 1 auto; /* Ensure flex behavior */
    }
    
    .testimonial-card-variant-1 .testimonial-label {
      color: #000000;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .testimonial-card-variant-1 .testimonial-text {
      color: #000000;
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 2rem;
      flex-grow: 1;
    }
    
    .testimonial-card-variant-1 .testimonial-author-name {
      color: #000000;
    }
    
    .testimonial-card-variant-1 .testimonial-author-role {
      color: rgba(0, 0, 0, 0.7);
    }
    
    .testimonial-card-variant-1 .testimonial-avatar {
      background: rgba(0, 0, 0, 0.1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .testimonial-card-variant-1 .testimonial-avatar-initial {
      color: #000000;
    }
    
    /* Variant 2: Dark Gray (Large Size with Quote) */
    .testimonial-card-variant-2 {
      width: 480px;
    }
    
    .testimonial-card-variant-2 .testimonial-card-inner {
      position: relative;
      background: #1a1a1a;
      border-radius: 1.5rem;
      padding: 3rem;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      min-height: 100%; /* Safari fix - ensure minimum height */
      display: flex;
      flex-direction: column;
      overflow: hidden;
      -webkit-box-flex: 1; /* Safari fix */
      -webkit-flex: 1 1 auto; /* Safari fix */
      flex: 1 1 auto; /* Ensure flex behavior */
    }
    
    .testimonial-card-variant-2 .testimonial-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .testimonial-card-variant-2 .testimonial-text {
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 2rem;
      flex-grow: 1;
    }
    
    .testimonial-card-variant-2 .testimonial-author-name {
      color: #ffffff;
    }
    
    .testimonial-card-variant-2 .testimonial-author-role {
      color: rgba(255, 255, 255, 0.7);
    }
    
    .testimonial-card-variant-2 .testimonial-avatar {
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .testimonial-card-variant-2 .testimonial-avatar-initial {
      color: #ffffff;
    }
    
    .testimonial-card-variant-2 .testimonial-quote-decoration {
      position: absolute;
      bottom: 1.5rem;
      right: 2rem;
      font-size: 8rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.1);
      line-height: 1;
      font-family: Georgia, serif;
      pointer-events: none;
    }
    
    /* Variant 3: White (Small Size) */
    .testimonial-card-variant-3 {
      width: 340px;
    }
    
    .testimonial-card-variant-3 .testimonial-card-inner {
      position: relative;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      min-height: 100%; /* Safari fix - ensure minimum height */
      display: flex;
      flex-direction: column;
      overflow: hidden;
      -webkit-box-flex: 1; /* Safari fix */
      -webkit-flex: 1 1 auto; /* Safari fix */
      flex: 1 1 auto; /* Ensure flex behavior */
    }
    
    .testimonial-card-variant-3 .testimonial-label {
      color: rgba(0, 0, 0, 0.6);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .testimonial-card-variant-3 .testimonial-text {
      color: #000000;
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 1.75rem;
      flex-grow: 1;
    }
    
    .testimonial-card-variant-3 .testimonial-author-name {
      color: #000000;
    }
    
    .testimonial-card-variant-3 .testimonial-author-role {
      color: rgba(0, 0, 0, 0.6);
    }
    
    .testimonial-card-variant-3 .testimonial-avatar {
      background: linear-gradient(135deg, #fba801 0%, #ffc947 100%);
      box-shadow: 0 4px 12px rgba(251, 168, 1, 0.3);
    }
    
    .testimonial-card-variant-3 .testimonial-avatar-initial {
      color: #000000;
    }
    
    /* Default card inner (for backward compatibility) */
    .testimonial-card-inner {
      position: relative;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(30px) saturate(180%);
      -webkit-backdrop-filter: blur(30px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 1.75rem;
      padding: 2.75rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(251, 168, 1, 0.05);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      min-height: 100%; /* Safari fix - ensure minimum height */
      display: flex;
      flex-direction: column;
      overflow: hidden;
      -webkit-box-flex: 1; /* Safari fix */
      -webkit-flex: 1 1 auto; /* Safari fix */
      flex: 1 1 auto; /* Ensure flex behavior */
    }
    
    /* Testimonial Label */
    .testimonial-label {
      font-family: "Figtree", sans-serif;
    }
    
    /* Rating Section for Variant 2 */
    .testimonial-rating {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    
    .testimonial-rating .testimonial-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 0;
    }
    
    .testimonial-rating .testimonial-stars svg {
      color: #ffffff;
      flex-shrink: 0;
    }
    
    .testimonial-rating-number {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 600;
      font-family: "Figtree", sans-serif;
    }
    
    /* Glass effect overlay */
    .testimonial-card-inner::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
  background: linear-gradient(
    90deg,
        transparent 0%, 
        rgba(251, 168, 1, 0.3) 50%, 
    transparent 100%
  );
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    /* Gradient shine effect */
    .testimonial-card-inner::after {
  content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(
        circle at center,
        rgba(251, 168, 1, 0.08) 0%,
        transparent 70%
      );
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }
    
    /* Stars */
    .testimonial-stars {
      display: flex;
      gap: 0.35rem;
      margin-bottom: 1.75rem;
      position: relative;
      z-index: 1;
    }
    
    .testimonial-stars svg {
      color: #fba801;
      flex-shrink: 0;
      filter: drop-shadow(0 2px 4px rgba(251, 168, 1, 0.2));
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    
    .testimonial-card:hover .testimonial-stars svg {
      transform: scale(1.1);
    }
    
    /* Testimonial Text */
    .testimonial-text {
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--text-primary);
      margin-bottom: 2rem;
      flex-grow: 1;
      font-family: "Figtree", sans-serif;
      position: relative;
      z-index: 1;
      font-weight: 400;
      transition: color 0.3s ease;
    }
   
    /* Author Section */
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }
    
    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fba801 0%, #ff8c00 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(251, 168, 1, 0.35),
        0 0 0 3px rgba(255, 255, 255, 0.5) inset;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    
    .testimonial-avatar::before {
  content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .testimonial-card:hover .testimonial-avatar {
      transform: scale(1.1) rotate(5deg);
    }
    
    .testimonial-card:hover .testimonial-avatar::before {
      opacity: 1;
    }
    
    .testimonial-avatar-initial {
      font-size: 1.375rem;
      font-weight: 800;
      color: #000000;
      font-family: "Figtree", sans-serif;
      position: relative;
      z-index: 1;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    }
    
    .testimonial-author-info {
      flex: 1;
    }
    
    .testimonial-author-name {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.375rem;
      font-family: "Figtree", sans-serif;
      transition: color 0.3s ease;
    }
    
    .testimonial-card:hover .testimonial-author-name {
      color: #fba801;
    }
    
    .testimonial-author-role {
      font-size: 0.875rem;
      color: var(--text-secondary);
      font-family: "Figtree", sans-serif;
    }
    
    /* Responsive Design */
    @media (max-width: 767px) {
      .testimonials-marquee-section {
    padding: 4rem 0 1rem 0 !important;
        min-height: auto;
      }
      
      .testimonials-marquee-container .container {
        margin-bottom: 2rem;
      }
      
      .testimonials-marquee-row {
        margin-bottom: 1rem;
    overflow-x: hidden; /* Ensure smooth scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  /* Ensure single row on mobile - no wrapping */
  .testimonials-marquee-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 1.5rem; /* Slightly reduced gap for mobile */
    padding: 40px 0; /* Reduced padding */
    margin-top: -30px; /* Adjusted margin */
    width: fit-content !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    /* Don't set transform here - let GSAP handle it */
    position: relative;
      }
      
      .testimonials-badge-column {
        margin-bottom: 2rem !important;
      }
      
  /* Optimized card sizes for mobile - still visible but compact */
      .testimonial-card-variant-1 {
    width: 280px; /* Reduced from 300px */
    flex-shrink: 0;
      }
      
      .testimonial-card-variant-2 {
    width: 320px; /* Reduced from 340px */
    flex-shrink: 0;
      }
      
      .testimonial-card-variant-3 {
    width: 260px; /* Reduced from 280px */
    flex-shrink: 0;
  }

  .testimonial-card {
    flex-shrink: 0 !important;
    margin: 0 !important;
      }
      
      .testimonial-card-variant-1 .testimonial-card-inner,
      .testimonial-card-variant-2 .testimonial-card-inner,
      .testimonial-card-variant-3 .testimonial-card-inner {
    padding: 1.5rem; /* Reduced padding */
        border-radius: 1.25rem;
      }
      
      .testimonial-card-variant-1 .testimonial-text,
      .testimonial-card-variant-2 .testimonial-text,
      .testimonial-card-variant-3 .testimonial-text {
    font-size: 1rem; /* Slightly smaller for mobile */
    line-height: 1.5;
      }
      
      .testimonial-card-variant-2 .testimonial-text {
    font-size: 1.125rem; /* Adjusted for variant 2 */
      }
      
      .testimonial-card-variant-2 .testimonial-quote-decoration {
        font-size: 6rem;
        bottom: 1rem;
        right: 1.5rem;
      }
      
      .testimonial-card {
        width: 320px;
      }
      
      .testimonial-card-inner {
        padding: 2rem;
        border-radius: 1.5rem;
      }
      
      .testimonials-marquee-track {
        gap: 1.5rem;
      }
      
      .testimonial-avatar {
        width: 52px;
        height: 52px;
      }
      
      .testimonial-avatar-initial {
        font-size: 1.25rem;
      }
    }
    
    @media (min-width: 768px) and (max-width: 1023px) {
      .testimonial-card {
        width: 380px;
      }
      
      .testimonial-card-inner {
        padding: 2.25rem;
      }
    }
    
    /* ============================================
       9. CTA SECTION - MODERN DARK THEME - ENHANCED
       ============================================ */
    
    .cta-section {
      position: relative;
      padding: 5rem 0;
  background: url(../images/form-branding-bg.png) no-repeat right center;
      overflow: hidden;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      isolation: isolate;
    }

.cta-section:before {
  content: "";
        width: 200px;
        height: 100%;
        position: absolute;
  right: -10px;
        top: 70px;
        background: url(../images/form-branding-bg.png) no-repeat right top;
        background-size: 100%;
      }
    
    /* Animated Background Gradient */
    .cta-bg-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(
        ellipse at center,
        rgba(251, 168, 1, 0.15) 0%,
        rgba(251, 168, 1, 0.05) 40%,
        transparent 70%
      );
      animation: ctaGradientPulse 8s ease-in-out infinite;
      z-index: 1;
    }
    
    @keyframes ctaGradientPulse {
  0%,
  100% {
        opacity: 0.6;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1.1);
      }
    }
    
    /* Background Pattern */
    .cta-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  background-image: linear-gradient(
      rgba(251, 168, 1, 0.03) 1px,
      transparent 1px
    ),
        linear-gradient(90deg, rgba(251, 168, 1, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
      opacity: 0.5;
      z-index: 1;
      animation: ctaPatternMove 20s linear infinite;
    }
    
    @keyframes ctaPatternMove {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(50px, 50px);
      }
    }
    
    .cta-container {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      z-index: 2;
    }
    
    .cta-content {
      text-align: center;
      position: relative;
      z-index: 3;
    }
    
    /* Badge */
    .cta-badge {
      display: inline-block;
      margin-bottom: 2rem;
      padding: 0.5rem 1.25rem;
      background: rgba(251, 168, 1, 0.1);
      border: 1px solid rgba(251, 168, 1, 0.2);
      border-radius: 50px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    
    .cta-badge-text {
      font-size: 0.875rem;
      font-weight: 600;
      color: #fba801;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-family: "Figtree", sans-serif;
    }
    
    .cta-heading {
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 2rem;
      line-height: 1.1;
      font-family: "Figtree", sans-serif;
      letter-spacing: -0.03em;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .cta-heading-line {
      display: block;
      opacity: 0;
      animation: ctaHeadingReveal 1s ease-out forwards;
    }
    
    .cta-heading-line:nth-child(1) {
      animation-delay: 0.2s;
    }
    
    .cta-heading-line:nth-child(2) {
      animation-delay: 0.4s;
    }
    
    .cta-heading-accent {
      background: linear-gradient(135deg, #ffffff 0%, #fba801 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    @keyframes ctaHeadingReveal {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .cta-description {
      font-size: clamp(1.125rem, 2.5vw, 1.375rem);
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 3.5rem;
      line-height: 1.7;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
      font-family: "Figtree", sans-serif;
      font-weight: 400;
    }
    
    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0;
      background: #f5f5f0;
      color: #000000;
      padding: 1.5rem 3rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.25rem;
      font-family: "Figtree", sans-serif;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
  box-shadow: 0 8px 32px rgba(245, 245, 240, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      isolation: isolate;
    }
    
    .cta-button-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #ffffff 0%, #f5f5f0 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 0;
    }
    
    .cta-button-shine {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
      );
      transform: rotate(45deg);
      transition: left 0.6s ease;
      z-index: 1;
    }
    
    .cta-button:hover .cta-button-shine {
      left: 100%;
    }
    
    .cta-button-text {
      position: relative;
      z-index: 2;
      padding-right: 1.25rem;
      transition: transform 0.3s ease;
    }
    
    .cta-button-icon {
      position: relative;
      z-index: 2;
      width: 52px;
      height: 52px;
      background: #000000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      border: 2px solid rgba(255, 255, 255, 0.15);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .cta-button:hover {
      transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(245, 245, 240, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 60px rgba(251, 168, 1, 0.3);
      background: #ffffff;
    }
    
    .cta-button:hover .cta-button-bg {
      opacity: 1;
    }
    
    .cta-button:hover .cta-button-text {
      transform: translateX(-2px);
    }
    
    .cta-button:hover .cta-button-icon {
      background: linear-gradient(135deg, #fba801 0%, #ffc947 100%);
    }
    
    /* Request a Quote Form Styles */
    .quote-form-container {
      margin-top: 4rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      animation: formSlideIn 0.6s ease-out;
      position: relative;
      z-index: 10;
      opacity: 1;
      visibility: visible;
    }

    /* Chrome, Edge, Safari */
.quote-form-container input::-webkit-input-placeholder,
.quote-form-container textarea::-webkit-input-placeholder {
  color: #999;
}

/* Firefox */
.quote-form-container input::-moz-placeholder,
.quote-form-container textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* Internet Explorer 10+ */
.quote-form-container input:-ms-input-placeholder,
.quote-form-container textarea:-ms-input-placeholder {
  color: #999;
}

/* Old Edge */
.quote-form-container input::-ms-input-placeholder,
.quote-form-container textarea:-ms-input-placeholder {
  color: #999;
}
    
    @keyframes formSlideIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .quote-form {
      -webkit-backdrop-filter: blur(20px);
      border-radius: 24px;
      opacity: 1;
      visibility: visible;
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    
    .form-group {
      position: relative;
    }
    
    .form-group-full {
      grid-column: 1 / -1;
    }
    
    .form-label {
      display: block;
      color: #ffffff;
      font-size: 0.9375rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      font-family: "Figtree", sans-serif;
      letter-spacing: 0.02em;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .required {
  color: #fba801;
      margin-left: 2px;
    }
    
    /* Phone wrapper for home form */
    .form-group .quote-phone-wrapper {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.75rem;
      align-items: stretch;
      width: 100%;
    }

    .form-group .country-code-select-wrapper {
      position: relative;
      min-width: 120px;
      max-width: 130px;
      height: 100%;
    }

    .form-group .country-code-flag-wrapper {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 1.4rem 1.25rem;
      background: #f3f3f3;
      border: 2px solid transparent;
      border-radius: 0.75rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      height: 100%;
      min-height: auto;
      box-sizing: border-box;
      outline: none;
    }

    .form-group .country-code-flag-wrapper:hover {
      background: #ffffff;
      border-color: #fba801;
      box-shadow: 0 4px 12px rgba(251, 168, 1, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .form-group .country-code-flag-wrapper::after {
      content: '';
      position: absolute;
      right: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid #1d1f1e;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .form-group .country-code-flag-wrapper:hover::after {
      border-top-color: #fba801;
    }

    .form-group .country-flag-icon {
      width: 22px;
      height: 16px;
      object-fit: cover;
      border-radius: 2px;
      flex-shrink: 0;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    }

    .form-group .country-code-text {
      font-size: 0.9375rem;
      font-weight: 500;
      color: #1d1f1e;
      font-family: "Figtree", sans-serif;
      line-height: 1;
    }

    .form-group .quote-country-select {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 10;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    .form-group .quote-country-select:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: #fba801;
      box-shadow: 0 4px 12px rgba(251, 168, 1, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .form-group .quote-country-select option {
      background: #1d1f1e;
      color: #ffffff;
    }

    .form-group .quote-phone-input {
      flex: 1;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 1.4rem 1.25rem;
      background: none;
      border: 0;
      border-radius: 12px;
      color: #242424;
      font-size: 1rem;
      font-family: "Figtree", sans-serif;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      outline: none;
      background: #f3f3f3;
      border: 2px solid transparent !important;
    }
    
    .form-input::placeholder,
    .form-textarea::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
  border-color: #fba801;
      transform: translateY(-2px);
    }
    
    .form-input:valid:not(:placeholder-shown),
    .form-select:valid:not([value=""]),
    .form-textarea:valid:not(:placeholder-shown) {
      border-color: rgba(76, 175, 80, 0.5);
    }
    
    /* Don't show invalid state for select until it's been interacted with */
    .form-input:invalid:not(:placeholder-shown):not(:focus),
    .form-textarea:invalid:not(:placeholder-shown):not(:focus) {
      border-color: rgba(244, 67, 54, 0.5);
    }
    
    /* Only show error for select when it has error class */
    .form-select:invalid:not([value=""]):not(:focus) {
      border-color: inherit;
    }
    
    .form-select {
      cursor: pointer;
      appearance: none;
      background-repeat: no-repeat;
      background-position: right 1.25rem center;
      padding-right: 3rem;
    }
    
    .form-select option {
      background: #1a1a1f;
      color: #ffffff;
      padding: 0.5rem;
    }
    
    .form-select:focus option {
      background: #25252f;
    }
    
    .form-textarea {
  resize: none;
      min-height: 120px;
      line-height: 1.6;
    }
    
    .form-error {
      display: none;
      color: #ff6b6b;
      font-size: 0.8125rem;
      margin-top: 0.5rem;
      font-weight: 500;
      opacity: 0;
      transform: translateY(-5px);
      transition: all 0.3s ease;
      display: none !important;
    }
    
    .form-group.error .form-error {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    
    .form-group.error .form-input,
    .form-group.error .form-select,
    .form-group.error .form-textarea {
      border-color: #ff6b6b !important;
    }
    
    .form-group.valid .form-input,
    .form-group.valid .form-select,
    .form-group.valid .form-textarea {
  border-color: #72d376bf !important;
    }
    
    .form-submit-wrapper {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
    }
    
    .form-submit-btn {
      position: relative;
  background: linear-gradient(135deg, #fba801 0%, #ffc947 100%);
      color: #000000;
      border: none;
      padding: 1.25rem 3rem;
      border-radius: 50px;
      font-size: 1.125rem;
      font-weight: 700;
      font-family: "Figtree", sans-serif;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      min-width: 200px;
  box-shadow: 0 8px 24px rgba(251, 168, 1, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
    
    .form-submit-btn::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-btn:hover::before {
      left: 100%;
    }
    
    .form-submit-btn:hover {
      transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(251, 168, 1, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
    
    .form-submit-btn:active {
      transform: translateY(-1px);
    }
    
    .form-submit-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }
    
    .submit-btn-text {
      display: inline-block;
      position: relative;
      z-index: 2;
      transition: opacity 0.3s ease;
    }
    
    .submit-btn-loader {
      display: none;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 24px;
      height: 24px;
      z-index: 3;
    }
    
    .form-submit-btn.loading .submit-btn-text {
      opacity: 0;
    }
    
    .form-submit-btn.loading .submit-btn-loader {
      display: block;
    }
    
    .loader-svg {
      width: 100%;
      height: 100%;
      color: #000000;
    }
    
    /* Success Message */
    .form-success-message {
      background: rgba(76, 175, 80, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(76, 175, 80, 0.3);
      border-radius: 24px;
      padding: 3rem;
      text-align: center;
      animation: successSlideIn 0.6s ease-out;
    }
    
    @keyframes successSlideIn {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }
    
    .success-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      animation: successIconPop 0.6s ease-out 0.2s both;
    }
    
    @keyframes successIconPop {
      from {
        transform: scale(0);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }
    
    .success-icon svg {
      width: 40px;
      height: 40px;
    }
    
    .success-title {
  color: #61b965;
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      font-family: "Figtree", sans-serif;
    }
    
    .success-text {
  color: rgb(97 185 101);
      font-size: 1.125rem;
      line-height: 1.6;
      font-family: "Figtree", sans-serif;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .quote-form {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        background: #1a1a1f;
        border: 2px solid rgba(251, 168, 1, 0.3);
      }
      
      .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
      }
      
      .form-input,
      .form-select,
      .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    /* background: #0f0f14; */
        border: 2px solid rgba(255, 255, 255, 0.25);
    /* color: #ffffff; */
      }
      
      .form-submit-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
      }
      
      .form-success-message {
        padding: 2rem 1.5rem;
      }
      
      .success-icon {
        width: 64px;
        height: 64px;
      }
      
      .success-icon svg {
        width: 32px;
        height: 32px;
      }
      
      .success-title {
        font-size: 1.5rem;
      }
      
      .success-text {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .quote-form-container {
        margin-top: 3rem;
      }
      
      .quote-form {
        padding: 1.5rem 1rem;
    background: none;
    border: 0;
      }
      
      .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
      }
      
      .form-input,
      .form-select,
      .form-textarea {
    /* background: #0f0f14; */
    /* border: 2px solid rgba(255, 255, 255, 0.25); */
    /* color: #ffffff; */
      }
    }
    
    .cta-button-icon svg {
      width: 22px;
      height: 22px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .cta-button:hover .cta-button-icon svg {
      transform: translateX(2px);
    }
    
    /* Grid Overlay */
    .cta-grid-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  background-image: linear-gradient(
      rgba(251, 168, 1, 0.05) 1px,
      transparent 1px
    ),
        linear-gradient(90deg, rgba(251, 168, 1, 0.05) 1px, transparent 1px);
      background-size: 100px 100px;
      opacity: 0.3;
      z-index: 1;
      pointer-events: none;
    }
    
    /* Enhanced Decorative Elements */
    .cta-decoration {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      filter: blur(40px);
    }
    
    .cta-decoration-1 {
      width: 400px;
      height: 400px;
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.15) 0%,
    transparent 70%
  );
      top: -200px;
      left: -200px;
      animation: ctaFloat 20s ease-in-out infinite;
    }
    
    .cta-decoration-2 {
      width: 300px;
      height: 300px;
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.12) 0%,
    transparent 70%
  );
      bottom: -150px;
      right: 10%;
      animation: ctaFloat 18s ease-in-out infinite reverse;
    }
    
    .cta-decoration-3 {
      width: 250px;
      height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 201, 71, 0.15) 0%,
    transparent 70%
  );
      top: 50%;
      right: -125px;
      animation: ctaFloat 22s ease-in-out infinite;
    }
    
    .cta-decoration-4 {
      width: 200px;
      height: 200px;
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.1) 0%,
    transparent 70%
  );
      top: 20%;
      left: 5%;
      animation: ctaFloat 25s ease-in-out infinite reverse;
    }
    
    @keyframes ctaFloat {
  0%,
  100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
      }
      33% {
        transform: translate(40px, -40px) scale(1.15);
        opacity: 0.9;
      }
      66% {
        transform: translate(-30px, 30px) scale(0.95);
        opacity: 0.6;
      }
    }
    
    /* Responsive Design */
    @media (max-width: 767px) {
      .cta-section {
    padding: 6rem 0 !important;
      }
      
      .cta-container {
        padding: 0 1.5rem;
      }
      
      .cta-badge {
        margin-bottom: 1.5rem;
        padding: 0.4rem 1rem;
      }
      
      .cta-badge-text {
        font-size: 0.75rem;
      }
      
      .cta-heading {
        margin-bottom: 1.5rem;
        gap: 0.2rem;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    opacity: 1 !important;
    font-size: 32px !important;
      }
      
      .cta-description {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    opacity: 1 !important;
      }
      
      .cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        flex-direction: row;
        width: auto;
      }
      
      .cta-button-text {
        padding-right: 1rem;
      }
      
      .cta-button-icon {
        width: 48px;
        height: 48px;
      }
      
      .cta-button-icon svg {
        width: 20px;
        height: 20px;
      }
      
      .cta-decoration-1 {
        width: 250px;
        height: 250px;
        top: -125px;
        left: -125px;
      }
      
      .cta-decoration-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
      }
      
      .cta-decoration-3 {
        width: 150px;
        height: 150px;
        right: -75px;
      }
      
      .cta-decoration-4 {
        width: 120px;
        height: 120px;
        left: -60px;
      }
    }
    
    @media (min-width: 768px) and (max-width: 1023px) {
      .cta-section {
        padding: 8rem 0;
      }
      
      .cta-container {
        padding: 0 2rem;
      }
      
      .cta-heading {
        font-size: clamp(2.5rem, 6vw, 4rem);
      }
    }
    
    .faq-section {
      padding: 3rem 0;
      background: transparent;
      position: relative;
    }
    
    /* Glass effect overlay */
    .faq-section::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur-light);
      -webkit-backdrop-filter: var(--glass-blur-light);
      z-index: 0;
      pointer-events: none;
      opacity: 0.5;
    }
    
    @media (min-width: 1024px) {
      .faq-section {
        padding: 6rem 0;
      }
    }
    
    .faq-heading-container {
      text-align: center;
      margin-bottom: 5rem;
      position: relative;
      z-index: 1;
    }
    
    .faq-main-heading {
      font-family: inherit;
      font-size: 3.75rem;
      margin-bottom: 1.5rem;
      color: var(--text-gray-900);
    }
    
    .faq-subheading {
      color: var(--text-gray-700);
    }
    
    .faq-container {
      max-width: 64rem;
      margin: 0 auto;
    }
    
    .faq-accordion-button {
      display: flex;
      width: 100%;
      padding: 1.5rem 2rem;
      margin-bottom: 1rem;
      align-items: flex-start;
      justify-content: space-between;
      text-align: left;
      box-shadow: var(--shadow-glass);
      border-radius: 1rem;
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: 1px solid var(--glass-border);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }
    
    .faq-accordion-button:hover {
  box-shadow: 0 8px 40px rgba(251, 168, 1, 0.3), 0 0 0 1px var(--brand-primary),
                  var(--shadow-glass);
      background: var(--glass-bg-light);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      transform: translateY(-2px);
      border-color: var(--glass-border-glow);
    }
    
    .faq-accordion-content {
      overflow: hidden;
      height: 0;
      padding-right: 1.25rem;
      transition: height 0.5s ease;
    }
    
    .faq-accordion-question {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--text-primary);
    }
    
    .faq-accordion-answer {
      color: var(--text-secondary);
      margin-top: 1rem;
      line-height: 1.75;
    }
    
    .faq-accordion-icon {
      flex-shrink: 0;
    }
    
    .faq-help-box {
      display: flex;
      flex-direction: column;
      padding: 2.5rem 1.25rem;
      background: var(--glass-bg-light);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: 1px solid var(--glass-border);
      border-radius: 1.5rem;
  box-shadow: var(--shadow-glass), 0 0 0 1px rgba(251, 168, 1, 0.2) inset,
                  0 0 40px rgba(251, 168, 1, 0.15);
      position: relative;
      z-index: 1;
    }
    
    @media (min-width: 640px) {
      .faq-help-box {
        flex-direction: row;
        padding: 2.5rem 2.5rem;
      }
    }
    
    .faq-help-icon {
      margin-bottom: 1rem;
    }
    
    @media (min-width: 640px) {
      .faq-help-icon {
        margin-bottom: 0;
        margin-right: 1.5rem;
      }
    }
    
    .faq-help-heading {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    
    .faq-help-text {
      color: #374151;
      line-height: 1.75;
    }
    
    .faq-help-link {
      display: inline-block;
      color: #000000;
      font-weight: 500;
      text-decoration: underline;
    }
    
    .faq-help-phone {
      color: #000000;
      font-weight: 500;
    }
    
    /* ============================================
       9. WHY CHOOSE US SECTION
       ============================================ */
    
    .why-choose-qf-sec {
      padding: 5rem 0;
      overflow: hidden;
      background: #ffffff;
      position: relative;
    }
    
    @media (min-width: 768px) {
      .why-choose-qf-sec {
        padding: 6rem 0;
      }
    }
    
    @media (min-width: 1024px) {
      .why-choose-qf-sec {
        padding: 7rem 0;
      }
    }
    
    /* Glass effect background */
    .why-choose-qf-sec::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: var(--glass-bg); */
      /* backdrop-filter: var(--glass-blur); */
      -webkit-backdrop-filter: var(--glass-blur);
      z-index: 0;
      pointer-events: none;
      opacity: 0;
      display: none;
    }
    
    /* Animated gradient background */
    .why-choose-bg-gradient {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: none;
      pointer-events: none;
      z-index: 1;
    }
    
    @keyframes why-gradient-shift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
    }
    
    @media (min-width: 1024px) {
      .why-choose-qf-sec {
        padding: 5rem 0;
      }
    }
    
    .why-choose-badge {
      width: 56px;
      height: 56px;
      background: #fba801;
      color: #1d1f1e;
      font-size: 1.125rem;
      font-weight: 700;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(251, 168, 1, 0.3);
    }
    
    .why-choose-badge:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 24px rgba(251, 168, 1, 0.4),
                  0 0 0 8px rgba(251, 168, 1, 0.15);
    }
    
    .why-choose-badge-glow {
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
      animation: why-badge-rotate 3s linear infinite;
      display: none;
    }
    
    @keyframes why-badge-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
    }
    
    .why-choose-divider {
      height: 1px;
      width: 48px;
      background: #fcb950;
      margin-right: 12px;
      flex-shrink: 0;
    }
    
    .why-choose-button {
      padding: 0.5rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #1d1f1e;
      background: #fba801;
      border-radius: 9999px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      border: 0;
      box-shadow: 0 2px 8px rgba(251, 168, 1, 0.25);
      text-transform: capitalize;
    }
    
    .why-choose-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.5s;
    }
    
    .why-choose-button:hover {
      background: #ffc947;
      color: #1d1f1e;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(251, 168, 1, 0.35);
    }
    
    .why-choose-button:hover::before {
      left: 100%;
    }
    
    /* Gradient heading */
    .why-choose-heading-gradient {
      /* background: var(--gradient-brand); */
      /* -webkit-background-clip: text; */
      /* -webkit-text-fill-color: transparent; */
      background-clip: text;
    }
    
    .why-choose-heading {
      color: var(--text-gray-900);
      font-size: clamp(2.25rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 60px !important;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
      margin-top: 60px;
    }
    
    .why-choose-description {
      color: var(--text-gray-700);
      font-size: clamp(1rem, 2vw, 1.25rem);
      line-height: 1.7;
      font-weight: 400;
      max-width: 90%;
    }
    
    .why-testi-box-modern {
      position: relative;
      z-index: 1;
      padding: 2.5rem;
      background: #fba801;
      border-radius: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      box-shadow: 0 8px 30px rgba(251, 168, 1, 0.25),
                  0 0 0 1px rgba(0, 0, 0, 0.05) inset;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }
    
    @media (min-width: 768px) {
      .why-testi-box-modern {
        padding: 3rem;
      }
    }
    
    .why-testi-box-modern:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(251, 168, 1, 0.35),
                  0 0 0 1px rgba(0, 0, 0, 0.08) inset;
    }
    
    .why-testi-gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
      pointer-events: none;
    }
    
    .why-testi-stars {
      gap: 0.25rem;
    }
    
    .why-star {
      transition: all 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
      color: #1d1f1e;
    }
    
    .why-testi-box-modern:hover .why-star {
      transform: scale(1.1) rotate(5deg);
    }
    
    .why-testi-stat-label {
      color: #000000;
      font-size: clamp(0.9375rem, 1.5vw, 1rem);
      font-weight: 500;
      line-height: 11px;
      margin-top: 0.5rem;
    }
    
    .why-stats-label {
      color: #374151;
      font-size: clamp(0.9375rem, 1.5vw, 1rem);
      font-weight: 500;
      line-height: 1.5;
      margin-top: 0.5rem;
    }
    
    .why-content-stat-label {
      color: #6b7280;
      font-size: clamp(0.9375rem, 1.5vw, 1rem);
      font-weight: 500;
      line-height: 1.5;
      margin-top: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .why-content-description {
      color: #374151;
      font-size: clamp(1rem, 2vw, 1.125rem);
      line-height: 1.7;
      font-weight: 400;
      margin-bottom: 0;
    }
    
    .why-testi-quote {
      position: relative;
      z-index: 1;
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      line-height: 1.6;
      font-weight: 600;
      color: #1d1f1e;
      margin-bottom: 1.5rem;
    }
    
    .why-testi-stat {
      position: relative;
      z-index: 1;
      margin-bottom: 0 !important;
    }
    
    .why-testi-number {
      font-size: clamp(3rem, 6vw, 4.5rem);
      line-height: 1;
      letter-spacing: -0.03em;
      font-weight: 700;
      color: #1d1f1e;
    }
    
    .why-testi-profile {
      position: relative;
      z-index: 1;
      margin-top: auto;
      padding-top: 1.5rem;
    }
    
    .why-avatar-ring {
      position: absolute;
      top: -4px;
      left: -4px;
      right: -4px;
      bottom: -4px;
      border: 2px solid rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      animation: why-ring-pulse 2s ease-in-out infinite;
    }
    
    @keyframes why-ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
    }
    
    .why-choose-avatar {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.3);
      border: 3px solid rgba(0, 0, 0, 0.1);
      flex-shrink: 0;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .why-choose-avatar:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      border-color: rgba(0, 0, 0, 0.2);
    }
    
    .why-testi-profile div {
      color: #1d1f1e;
      font-weight: 600;
    }
    
    .why-testi-profile .small {
      color: #000000;
      font-weight: 400;
    }
    
    .why-choose-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    
    .why-choose-avatar:hover img {
      transform: scale(1.1);
    }
    
    /* Keep old class for backward compatibility */
    .why-choose-small-avatar {
      width: 40px;
      height: 40px;
      background-color: #374151;
      flex-shrink: 0;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid #ffffff;
    }
    
    .why-choose-small-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .why-choose-image-container-modern {
      background: #f9fafb;
      flex-grow: 1;
      position: relative;
      overflow: hidden;
      /* min-height: 280px; */
      border-radius: 1.5rem 1.5rem 0 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 0;
    }
    
    @media (min-width: 768px) {
      .why-choose-image-container-modern {
        /* min-height: 320px; */
      }
    }
    
    .why-choose-image-container-modern:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    
    .why-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
      z-index: 1;
      pointer-events: none;
    }
    
    .why-image-img {
      width: 100%;
      /* height: 100%; */
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .why-choose-image-container-modern:hover .why-image-img {
      transform: scale(1.05);
    }
    
    .why-image-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 56px;
      height: 56px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fba801;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      animation: why-badge-float 3s ease-in-out infinite;
      border: 2px solid rgba(251, 168, 1, 0.2);
    }
    
    .why-image-badge svg {
      width: 24px;
      height: 24px;
    }
    
    @keyframes why-badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
    }
    
    .why-stats-card-modern {
      background: linear-gradient(135deg, #ffd89b 0%, #ffb88c 100%);
      border-radius: 0 0 1.5rem 1.5rem;
      box-shadow: 0 8px 30px rgba(255, 184, 140, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      padding: 2.5rem !important;
      position: relative;
    }
    
    @media (min-width: 768px) {
      .why-stats-card-modern {
        padding: 2rem !important;
      }
    }
    
    .why-stats-card-modern:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(255, 184, 140, 0.4);
    }
    
    .why-stats-gradient {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 60%
  );
      pointer-events: none;
    }
    
    .why-stats-number {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      line-height: 1;
      letter-spacing: -0.03em;
      font-weight: 700;
  color: #c75101 !important;
      margin-bottom: 0.5rem;
    }

    .why-stats-card-modern p {
  color: #6d3913 !important;
      font-size: clamp(0.9375rem, 1.5vw, 1rem);
      font-weight: 500;
  line-height: 1.2;
  margin-top: 0 !important;
    }
    
    .why-team-avatars {
      gap: 0;
    }
    
    .why-choose-small-avatar-modern {
      width: 48px;
      height: 48px;
  background-color: #f88d38;
      flex-shrink: 0;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid rgba(255, 255, 255, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    
    .why-choose-small-avatar-modern:hover {
      transform: translateY(-4px) scale(1.1);
      border-color: rgba(255, 255, 255, 0.5);
      z-index: 10;
    }
    
    .why-avatar-glow {
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .why-choose-small-avatar-modern:hover .why-avatar-glow {
      opacity: 1;
    }
    
    .why-choose-small-avatar-modern img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    
    .why-choose-small-avatar-modern:hover img {
      transform: scale(1.1);
    }
    
    /* Content card modern styles */
    .why-content-card-modern {
  background: url(../images/form-branding-bg.png) no-repeat right bottom;
      border-radius: 1.5rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      padding: 2.5rem !important;
      border: 1px solid rgba(0, 0, 0, 0.05);
  background-size: 40%;
  border: 1px solid #fba801;
    }
    
    @media (min-width: 768px) {
      .why-content-card-modern {
        padding: 3rem !important;
      }
    }
    
    .why-content-card-modern:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      border-color: rgba(251, 168, 1, 0.2);
    }
    
    .why-content-gradient {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 168, 1, 0.05) 0%,
    rgba(255, 201, 71, 0.03) 100%
  );
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }
    
    .why-content-card-modern:hover .why-content-gradient {
      opacity: 1;
    }
    
    .why-content-number {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      line-height: 1;
      letter-spacing: -0.03em;
      font-weight: 700;
      color: #1d1f1e;
      margin-bottom: 0.5rem;
    }
    
    .why-number-gradient {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      color: #1d1f1e;
  background: linear-gradient(135deg, #1d1f1e 0%, #fba801 50%, #1d1f1e 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    }
    
    .why-content-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      line-height: 1.1;
      font-weight: 700;
      color: #1d1f1e;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    
    .why-title-gradient {
      color: #000000;
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      font-size: 34px;
  background: linear-gradient(
7deg, #1d1f1e 0%, #fba801 50%, #1d1f1e 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    }
    
    .why-content-card-modern p {
      color: #374151;
      font-size: clamp(1rem, 2vw, 1.125rem);
      line-height: 25px;
      font-weight: 400;
    }
    
    /* Responsive adjustments for Why Choose Us */
    @media (max-width: 991.98px) {
      .why-choose-qf-sec .display-2 {
        font-size: 3rem;
      }
      
      .why-choose-qf-sec .display-4 {
        font-size: 2.5rem;
      }
      
      .why-choose-qf-sec .display-5 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 767.98px) {
      .why-choose-qf-sec .row > div {
        min-height: auto !important;
      }
      
      .why-choose-image-container {
        min-height: 250px !important;
      }
      
      .why-choose-qf-sec .display-2 {
        font-size: 2.5rem !important;
      }
      
      .why-choose-qf-sec .display-4 {
        font-size: 2rem !important;
      }
      
      .why-choose-qf-sec .display-5 {
        font-size: 1.75rem !important;
    margin: 0 !important;
      }
      
      .why-choose-qf-sec .fs-5 {
        font-size: 1rem !important;
      }
      
      .why-choose-qf-sec .fs-6 {
        font-size: 0.875rem !important;
      }
      
      .why-choose-qf-sec .p-4 {
        padding: 1.5rem !important;
      }
      
      .why-choose-qf-sec .p-md-5 {
        padding: 1.5rem !important;
      }
    }
    
    /* ============================================
       10. CTA SECTION
       ============================================ */
    
    .cta-section {
    }
    
    .cta-container {
      max-width: 56rem;
      margin: 0 auto;
      padding: 1.25rem 1.25rem 4rem;
      background: url(../images/cta-bg.png) no-repeat;
      background-size: cover;
      border-radius: 1.5rem;
  box-shadow: var(--shadow-glass), 0 0 0 1px rgba(251, 168, 1, 0.15) inset,
                  0 0 40px rgba(251, 168, 1, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .cta-container::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  background: radial-gradient(
      circle at top right,
      rgba(251, 168, 1, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 201, 71, 0.12) 0%,
      transparent 50%
    );
      pointer-events: none;
    }
    
    @media (min-width: 768px) {
      .cta-container {
        padding-left: 3rem;
        padding-right: 3rem;
      }
    }
    
    @media (min-width: 1280px) {
      .cta-container {
        max-width: none;
        padding-left: 6rem;
        padding-right: 6rem;
      }
    }
    
    .cta-heading {
      font-family: inherit;
      font-size: 66px;
      letter-spacing: -0.025em;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
      font-weight: 600;
    }
    
    .cta-description {
      font-size: 25px;
      color: var(--text-secondary);
      position: relative;
      z-index: 1;
      line-height: 33px;
    }
    
    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.5rem;
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--bg-unified);
      border: 1px solid var(--brand-primary);
      background: var(--gradient-brand);
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px var(--glow-primary);
    }
    
    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px var(--glow-primary);
      background: var(--gradient-brand-reverse);
    }
    
    /* ============================================
       11. FOOTER SECTION
       ============================================ */
    
    .footer-section {
      position: relative;
      padding: 3rem 0;
      background: var(--bg-orange-50);
      overflow: hidden;
    }
    
    /* Glass effect overlay */
    .footer-section::before {
  content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--glass-bg-orange);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      pointer-events: none;
      z-index: 0;
      opacity: 0.7;
    }
    
    @media (min-width: 1024px) {
      .footer-section {
        padding: 6rem 0;
      }
    }
    
    .footer-bg-image {
      position: absolute;
      bottom: 0;
      left: 0;
    }
    
    .footer-logo {
      margin-bottom: 1rem;
    }
    
    .footer-columns-container {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 4rem;
      margin-left: -1rem;
      margin-right: -1rem;
    }
    
    .footer-column {
      width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
      margin-bottom: 4rem;
    }
    
    @media (min-width: 768px) {
      .footer-column {
        width: 58.333333%;
      }
    }
    
    @media (min-width: 1024px) {
      .footer-column {
        width: 50%;
        margin-bottom: 0;
      }
    }
    
    @media (min-width: 1280px) {
      .footer-column {
        width: 16.666667%;
      }
    }
    
    .footer-column-wide {
      width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    @media (min-width: 768px) {
      .footer-column-wide {
        width: 41.666667%;
      }
    }
    
    @media (min-width: 1024px) {
      .footer-column-wide {
        width: 33.333333%;
      }
    }
    
    .footer-column-title {
      margin-bottom: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      position: relative;
      z-index: 1;
    }
    
    .footer-link-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-link-item {
      margin-bottom: 1rem;
    }
    
    .footer-link {
      display: inline-block;
      color: var(--text-secondary);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }
    
    .footer-link:hover {
      color: var(--brand-primary);
      text-shadow: 0 0 10px var(--glow-primary);
    }
    
    .footer-newsletter-box {
      max-width: 24rem;
      padding: 2rem;
      background: rgba(30, 30, 46, 0.6);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      margin: 0 auto;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 1;
    }
    
    @media (min-width: 768px) {
      .footer-newsletter-box {
        margin-right: 0;
      }
    }
    
    .footer-newsletter-heading {
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }
    
    .footer-newsletter-text {
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.5;
      margin-bottom: 2.5rem;
    }
    
    .footer-newsletter-input {
      height: 3rem;
      width: 100%;
      padding: 0.25rem 1rem;
      color: var(--text-primary);
      background: var(--glass-bg-dark);
      backdrop-filter: var(--glass-blur-light);
      -webkit-backdrop-filter: var(--glass-blur-light);
      border: 1px solid var(--glass-border-light);
      border-radius: 9999px;
      outline: none;
      box-shadow: var(--shadow-glass);
      transition: all 0.3s ease;
    }
    
    .footer-newsletter-input:focus {
  box-shadow: 0 0 0 2px var(--brand-primary), 0 4px 20px var(--glow-primary),
                  var(--shadow-glass);
      border-color: var(--brand-primary);
      background: var(--glass-bg-light);
    }
    
    .footer-newsletter-input::placeholder {
      color: var(--text-muted);
    }
    
    .footer-newsletter-button {
      height: 3rem;
      display: inline-flex;
      margin-top: 0.75rem;
      padding: 0.25rem 1.25rem;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      color: var(--bg-unified);
      border: 1px solid var(--brand-primary);
      background: var(--gradient-brand);
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px var(--glow-primary);
    }
    
    .footer-newsletter-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px var(--glow-primary);
      background: var(--gradient-brand-reverse);
    }
    
    .footer-bottom-container {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: -0.75rem;
      justify-content: space-between;
    }
    
    .footer-social-links {
      display: flex;
      align-items: center;
      margin-bottom: 0.75rem;
    }
    
    .footer-social-link {
      display: inline-block;
      margin-right: 1rem;
      color: var(--text-secondary);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }
    
    .footer-social-link:hover {
      color: var(--brand-primary);
      transform: translateY(-2px);
      filter: drop-shadow(0 0 8px var(--glow-primary));
    }
    
    .footer-copyright {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.875rem;
      position: relative;
      z-index: 1;
      margin-bottom: 0.75rem;
    }
    
    .footer-credit-link {
      display: inline-block;
      color: var(--text-secondary);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-credit-link:hover {
      color: var(--brand-primary);
      text-shadow: 0 0 10px var(--glow-primary);
    }
    
    /* ============================================
       12. CURSOR FOLLOWER STYLES
       ============================================ */
    
    @media (min-width: 769px) {
      * {
        cursor: none !important;
      }
    }
    
    .cursor-follower {
      position: fixed;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
    height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease-out,
    background-color 0.4s ease-out, box-shadow 0.4s ease-out,
                  opacity 0.3s ease-out;
      transform: translate(-50%, -50%);
      background: #fba800;
      will-change: transform, width, height;
      mix-blend-mode: difference;
      opacity: 1;
      display: block;
      left: 0;
      top: 0;
    }
    
    .cursor-follower.invert {
      border-color: #ffffff;
      background: #ffffff;
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5),
                  0 0 20px rgba(255, 255, 255, 0.4);
    }
    
    .cursor-follower.invert::before {
      border-color: rgba(0, 0, 0, 0.3);
    }
    
    .cursor-follower.hover {
      width: 75px;
      height: 75px;
      background: #fba800;
    }
    
    .cursor-follower.hover.invert {
      border-color: #ffffff;
      background: #ffffff;
    }
    
    .cursor-follower.click {
      width: 38px;
      height: 38px;
      background: #fba800;
      transform: translate(-50%, -50%) scale(0.9);
    }
    
    .cursor-follower.click.invert {
      border-color: #000000;
      background: #ffffff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2), 0 0 25px rgba(255, 255, 255, 0.6);
    }
    
    .cursor-dot {
      position: fixed;
      width: 8px;
      height: 8px;
      background: #fba800;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease-out,
    box-shadow 0.4s ease-out, opacity 0.3s ease-out;
      transform: translate(-50%, -50%);
      will-change: transform, width, height;
      mix-blend-mode: difference;
      opacity: 1;
      display: block;
      left: 0;
      top: 0;
    }
    
    .cursor-dot.invert {
      background: #000000;
    }
    
    .cursor-dot.hover {
      width: 14px;
      height: 14px;
    }
    
    .cursor-dot.hover.invert {
      background: #ffffff;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                  0 0 8px rgba(255, 255, 255, 0.7);
    }
    
    .cursor-dot.click {
      width: 6px;
      height: 6px;
      background: #fba800;
      transform: translate(-50%, -50%) scale(1.4);
    }
    
    .cursor-dot.click.invert {
      background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 1), 0 0 6px rgba(255, 255, 255, 0.8);
    }
    
    /* Hide cursor follower on mobile devices */
    @media (max-width: 768px) {
      .cursor-follower,
      .cursor-dot {
        display: none;
      }
      
      * {
        cursor: auto !important;
      }
    }
    
    /* Statistics Cards - Modern Design */
    .stats-card {
      position: relative;
      width: 100%;
      max-width: 280px;
      min-width: 250px;
      height: 230px;
      border-radius: 1rem;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgb(255 255 255);
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
      flex: 1 1 250px;
    }
    
    /* Cards with hover image - white background by default */
    .stats-card-hover-image {
      background: #ffffff;
      border: 1px solid rgb(7 7 7);
    }
    
    .stats-card-hover-image .stats-label {
      color: #000000;
    }
    
    .stats-card-hover-image .stats-number {
      color: #000000;
    }
    
    .stats-card-hover-image .stats-icon {
      color: rgba(0, 0, 0, 0.6);
      border-color: rgba(0, 0, 0, 0.2);
      /* background: rgba(0, 0, 0, 0.05); */
    }
    
    @media (min-width: 1024px) {
      .stats-card {
        flex: 1 1 0;
        max-width: none;
      }
    }
    
    .stats-card:hover {
      transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 168, 0, 0.15),
                  0 0 0 1px rgba(251, 168, 0, 0.3) inset;
      border-color: rgba(251, 168, 0, 0.4);
    }
    
    /* Card Image Container */
    .stats-card-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
    }
    
    .stats-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    
    /* First card - image always visible */
    .stats-card-with-image .stats-card-image {
      opacity: 0.4;
    }
    
    .stats-card-with-image:hover .stats-card-image {
      opacity: 0.6;
    }
    
    /* Other cards - image on hover only */
    .stats-card-hover-image .stats-card-image {
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .stats-card-hover-image:hover .stats-card-image {
      opacity: 0.5;
    }
    
    .stats-card-hover-image:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
    }
    
    .stats-card-hover-image:hover .stats-label {
      color: #ffffff;
    }
    
    .stats-card-hover-image:hover .stats-number {
      color: #ffffff;
    }
    
    .stats-card-hover-image:hover .stats-icon {
      color: rgba(255, 255, 255, 0.6);
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.05);
    }
    
    /* Dark overlay for text readability */
    .stats-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); */
      z-index: 1;
      transition: opacity 0.4s ease;
    }
    
    .stats-card-with-image .stats-card-overlay {
      opacity: 0.2;
    }
    
    .stats-card-with-image:hover .stats-card-overlay {
      opacity: 0.6;
    }
    
    /* Hover cards - no overlay by default, show on hover */
    .stats-card-hover-image .stats-card-overlay {
      opacity: 0;
    }
    
    .stats-card-hover-image:hover .stats-card-overlay {
      opacity: 0.2;
    }
    
    .stats-card-content {
      position: relative;
      height: 100%;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 2;
    }
    
    /* Stats Flex Container - All cards in one line */
    .stats-flex-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* Cards positioned up (2nd and 4th) */
    .stats-card-up {
      margin-top: -50px;
      transform: translateY(0);
    }
    
    /* Cards positioned down (1st and 3rd) */
    .stats-card-down {
      margin-top: 50px;
      transform: translateY(0);
    }
    
    @media (max-width: 1024px) {
      .stats-flex-container {
        flex-direction: column;
        align-items: center;
      }
      
      .stats-card-up,
      .stats-card-down {
        margin-top: 0;
      }
    }
    
    /* Stats & Facts Section Styles */
    .stats-badge {
      background-color: #fba801;
      width: 48px;
      height: 48px;
    }
    
    .stats-cta-button {
      background-color: rgb(var(--color-primary-accent-rgb));
      box-shadow: 0 4px 15px rgba(251, 168, 0, 0.3);
      color: #1d1f1e;
    }
    
    .stats-cta-button:hover {
      box-shadow: 0 6px 20px rgba(251, 168, 0, 0.4);
      transform: translateY(-2px);
      color: #1d1f1e;
    }
    
    .hover-shadow-lg {
      transition: all 0.3s ease;
    }
    
    .hover-shadow-lg:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .group-hover-translate-x-1 {
      transition: transform 0.3s ease;
    }
    
    .group:hover .group-hover-translate-x-1 {
      transform: translateX(4px);
    }
    
    .letter-spacing-1 {
      letter-spacing: 0.1em;
    }
    
    .stat-item {
      transition: all 0.3s ease;
      padding: 0;
    }
    
    .stat-item:hover {
      transform: translateY(-2px);
    }
    
    .stat-number-display {
      font-size: 3rem;
      font-weight: 700;
      color: rgb(29 31 30);
      line-height: 1.2;
      letter-spacing: -0.02em;
      font-family: inherit;
      display: block;
    }
    
    @media (min-width: 640px) {
      .stat-number-display {
        font-size: 3.5rem;
      }
    }
    
    @media (min-width: 1024px) {
      .stat-number-display {
    font-size: 2rem;
      }
    }
    
    .stat-description {
      font-size: 1rem;
      color: rgb(100 106 105);
      line-height: 1.6;
      font-weight: 400;
    }
    
    @media (min-width: 1024px) {
      .stat-description {
    font-size: 20px;
        line-height: 1.7;
      }
    }
    
    .stats-text {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      align-items: flex-start;
    }
    
    .stats-text-right {
      align-items: flex-end;
      text-align: right;
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
    }
    
    .stats-label {
      display: block;
      color: #ffffff;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.9;
      transition: all 0.3s ease;
    }
    
    .stats-card:hover .stats-label {
      opacity: 1;
      color: #fba800;
      transform: translateX(4px);
    }
    
    .stats-number {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      font-size: 3.5rem;
      font-weight: 700;
      font-family: inherit;
      color: #ffffff;
      line-height: 1;
      /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      letter-spacing: -0.02em;
    }
    
    .stats-card:hover .stats-number {
      color: #fba800;
      transform: scale(1.1);
  text-shadow: 0 0 20px rgba(251, 168, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
    }
    
    .stats-icon {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      /* border: 1px solid rgba(255, 255, 255, 0.2); */
      border-radius: 0.5rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      background: rgba(255, 255, 255, 0.05);
      /* backdrop-filter: blur(10px); */
    }
    
    .stats-card:hover .stats-icon {
      color: #fba800;
      border-color: rgba(251, 168, 0, 0.5);
      background: rgba(251, 168, 0, 0.1);
      transform: translate(-4px, -4px) rotate(5deg) scale(1.1);
      box-shadow: 0 4px 15px rgba(251, 168, 0, 0.3);
    }
    
    .stats-icon svg {
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .stats-card:hover .stats-icon svg {
      transform: translate(2px, -2px);
    }
    
    /* Animated gradient border on hover */
    .stats-card::before {
      /* content: ''; */
      position: absolute;
      inset: 0;
      border-radius: 1rem;
      padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(251, 168, 0, 0.5),
    rgba(255, 255, 255, 0.1),
    rgba(251, 168, 0, 0.5)
  );
      background-size: 200% 200%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
      animation: gradient-rotate 3s linear infinite;
    }
    
    .stats-card:hover::before {
      opacity: 1;
    }
    
    @keyframes gradient-rotate {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    
    /* Responsive adjustments */
    @media (max-width: 640px) {
      .stats-card {
        height: 240px;
      }
      
      .stats-number {
        font-size: 2.5rem;
      }
    }
    
    /* Service Badge Styling */
    .service-sec-box .stats-badge {
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur-light);
      -webkit-backdrop-filter: var(--glass-blur-light);
    }

    .service-sec-box .mySwiper {
      height: 331px !important;
    }

    /* Smooth auto-scroll transitions for Swiper */
    .service-sec-box swiper-container.mySwiper,
    .service-sec-box .mySwiper {
      transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
      will-change: transform;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }

    .service-sec-box swiper-container.mySwiper .swiper-wrapper,
    .service-sec-box .mySwiper .swiper-wrapper {
      transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
      will-change: transform;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
    
    /* Mobile responsive - 1 card per view */
    @media (max-width: 767px) {
      .service-sec-box swiper-container.mySwiper {
        padding: 0 1rem; /* Add padding for better mobile display */
      }
      
      .service-sec-box swiper-container.mySwiper .swiper-slide {
        width: 100% !important;
        padding: 0 0.5rem;
      }
      
      .service-sec-box .mySwiper {
        height: auto !important;
        min-height: 280px;
      }
    }


      
    
    .service-sec-box .service-badge-number {
      color: #030303;
    }
  
        .service-card-modern:hover .service-icon-modern svg {
          color: #fba801;
      }
    
.why-choose-qf-sec {
  padding: 17px 0 150px 0 !important;
  background: none !important;
  margin: 0;
  }
      
.why-testi-box {
          background: #fba801;
          padding: 30px 23px;
        }
    
.why-testi-box [x-text] {
              font-size: 35px;
          }
    
    /* Typing Animation Styles */
    @keyframes blink {
  0%,
  50% {
        opacity: 1;
      }
  51%,
  100% {
        opacity: 0;
      }
    }
    
    .typing-cursor {
      animation: blink 1s infinite;
      display: inline-block;
      vertical-align: baseline;
    }
    
    /* Smooth text transition */
    [x-text] {
      transition: all 0.2s ease-in-out;
      display: inline-block;
    }
    
    /* Smooth typing animation container */
    .typing-animation-container {
      transition: all 0.3s ease-in-out;
    }
    
    /* Typing text wrapper - no background, just text */
    .typing-text-wrapper {
      display: inline-block;
      position: relative;
    }
    
    /* Gradient text effect */
    .typing-text-gradient {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fba800 40%,
    #ffffff 80%,
    #fba800 100%
  );
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 800;
      /* letter-spacing: 0.02em; */
      animation: gradient-shift 4s ease infinite;
      /* filter: drop-shadow(0 0 15px rgba(251, 168, 0, 0.6)); */
      position: relative;
      font-size: 86px;
      line-height: 99px;
      height: 99px;
      width: 100%;
    }
    
    @keyframes gradient-shift {
  0%,
  100% {
        background-position: 0% center;
      }
      50% {
        background-position: 100% center;
      }
    }
    
    /* Gradient cursor */
    .typing-cursor-gradient {
      background: linear-gradient(180deg, #fba800 0%, #ffffff 50%, #fba800 100%);
  box-shadow: 0 0 10px rgba(251, 168, 0, 0.8), 0 0 20px rgba(251, 168, 0, 0.4);
      border-radius: 2px;
      animation: cursor-glow 1.5s ease-in-out infinite;
    }
    
    @keyframes cursor-glow {
  0%,
  100% {
        opacity: 1;
    box-shadow: 0 0 10px rgba(251, 168, 0, 0.8), 0 0 20px rgba(251, 168, 0, 0.4);
      }
      50% {
        opacity: 0.7;
    box-shadow: 0 0 15px rgba(251, 168, 0, 1), 0 0 30px rgba(251, 168, 0, 0.6);
      }
    }
  
    /* Modern Navigation Link Styles */
  .nav-link {
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
    margin: 0 7px;
    margin-top: 7px;
  }
  
  .nav-link::before {
  content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fba800 0%, #ffffff 50%, #fba800 100%);
    background-size: 200% 100%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(251, 168, 0, 0.6), 0 0 20px rgba(251, 168, 0, 0.3);
  }
  
  .nav-link:hover {
    color: #fba800;
    transform: translateY(-2px);
  text-shadow: 0 0 15px rgba(251, 168, 0, 0.5), 0 0 30px rgba(251, 168, 0, 0.3);
  }
  
  .nav-link:hover::before {
    width: 100%;
    animation: gradient-slide 2s ease infinite;
  }
  
  @keyframes gradient-slide {
  0%,
  100% {
      background-position: 0% center;
    }
    50% {
      background-position: 100% center;
    }
  }
  
  /* Mobile Navigation Link Styles */
  .nav-link-mobile {
    display: inline-block;
    position: relative;
    color: rgb(2 44 34);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
  }
  
  .nav-link-mobile::before {
  content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
  background: linear-gradient(
    90deg,
    #fba800 0%,
    rgb(2 44 34) 50%,
    #fba800 100%
  );
    background-size: 200% 100%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-link-mobile:hover {
    color: #fba800;
    transform: translateX(5px);
    padding-left: 0.5rem;
  }
  
  .nav-link-mobile:hover::before {
    width: 100%;
    animation: gradient-slide 2s ease infinite;
  }
    
    /* ============================================
       END OF CUSTOM CSS
       ============================================ */
    
.primary-btn-1 {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 1rem 2.2rem;
          font-size: 1.125rem;
          font-weight: 500;
          color: #000000;
          background: #fba801;
          border-radius: 9999px;
          text-decoration: none;
          transition: all 0.3s ease;
          /* box-shadow: 0 4px 20px var(--glow-primary); */
          border: 1px solid transparent;
        }
  
.primary-btn-1:hover {
      background: var(--gradient-brand-reverse);
      color: var(--bg-unified);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px var(--glow-primary);
          }
  
.primary-btn-2 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.2rem;
            font-size: 1.125rem;
            font-weight: 500;
            color: #000000;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #000000;
            /* background: var(--glass-bg); */
            backdrop-filter: var(--glass-blur-light);
            -webkit-backdrop-filter: var(--glass-blur-light);
            /* box-shadow: var(--shadow-glass); */
          }
    
.primary-btn-2:hover {
        background: #000000;
        color: var(--bg-unified);
        transform: translateY(-2px);
        /* box-shadow: 0 8px 30px var(--glow-primary); */
        border-color: transparent;
        }

.portfolio-sec-area {
                background: #030303 !important;
                padding: 109px 0 0 0;
                height: 643px;
                margin-bottom: 200px;
              }

.portfolio-sec-area h2 {
  color: #fff;
                  font-size: 50px;
                  text-align: center;
                  font-weight: 300;
                  padding: 0 160px;
                  margin-bottom: 100px;
                }

.portfolio-sec-area h2 span {
  color: #e09a00;
                    font-weight: 700;
                  }

    /* ============================================
       13. DARK FOOTER SECTION
       ============================================ */
    
    .footer-section-dark {
      position: relative;
      background: linear-gradient(135deg, #0a0a0f 0%, #111118 50%, #0f0f1a 100%);
      padding: 4rem 0 2rem;
      margin-top: 4rem;
    }
    
    .footer-section-dark::before {
  content: "";
      position: absolute;
      top: -22px;
      left: 0;
      right: 0;
      background: #fefefe;
      width: 40px;
      height: 40px;
      margin: 0 auto;
      border-radius: 50%;
    }

     .footer-section-dark::after {
  content: "";
      position: absolute;
      top: -15px;
      left: 0;
      right: 0;
      background: #fba801;
      width: 25px;
      height: 25px;
      margin: 0 auto;
      border-radius: 50%;
    }
    
    .footer-content-wrapper {
      position: relative;
      z-index: 1;
    }
    
    /* Footer Logo Header Section */
    .footer-logo-header-section {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .footer-logo-header-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 100%;
    }
    
    .footer-logo-header-link {
      display: inline-block;
      margin-bottom: 1.5rem;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .footer-logo-header-link:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }
    
    .footer-logo-header-img {
      height: 4.5rem;
      width: auto;
      display: block;
    }
    
    @media (min-width: 768px) {
      .footer-logo-header-img {
        height: 5.5rem;
      }
    }
    
    .footer-logo-header-divider {
      width: 100%;
      height: 1px;
      background: #272731;
      margin: 0 auto 1.25rem;
      position: relative;
    }
    
    .footer-logo-header-tagline {
      color: rgb(68 68 72);
      font-size: 0.875rem;
      font-weight: 300;
      margin: 0;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: #101019;
      display: inline;
      padding: 0 20px;
      position: relative;
      top: -10px;
      letter-spacing: 3px;
    }
    
    @media (min-width: 768px) {
      .footer-logo-header-tagline {
        font-size: 0.9375rem;
      }
    }
    
    .footer-top-section {
      margin-bottom: 3rem;
    }
    
    /* Footer Brand Column */
    .footer-brand-column {
      margin-bottom: 2.5rem;
      margin-top: 17px;
    }
    
    @media (min-width: 992px) {
      .footer-brand-column {
        margin-bottom: 0;
      }
    }
    
    .footer-brand-content {
      max-width: 100%;
    }
    
    .footer-logo-link {
      display: inline-block;
      margin-bottom: 1rem;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .footer-logo-link:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }
    
    .footer-logo-img {
      height: 3rem;
      width: auto;
      filter: brightness(0) invert(1);
    }
    
    .footer-tagline {
      color: #ffffff;
      font-size: 0.875rem;
      font-weight: 400;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
      opacity: 0.9;
    }
    
    /* Our Global Presence - Amazing Modern Design */
    .footer-global-presence-map {
      margin-top: 0;
      padding: 0;
      position: relative;
      background: url(../images/mapvector.png) no-repeat center top;
      background-size: 70%;
    }
    
    .footer-global-map-title {
      color: #ffffff;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }
    
    .footer-global-map-title::after {
  content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 3px;
  background: linear-gradient(90deg, #fba801 0%, rgba(251, 168, 1, 0) 100%);
      border-radius: 2px;
    }
    
    /* Countries List */
    .footer-global-countries-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    
    .footer-global-country-item {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 0;
      background: none;
      /* backdrop-filter: blur(20px); */
      -webkit-backdrop-filter: blur(20px);
      border: 0;
      /* border-radius: 16px; */
      position: relative;
      overflow: hidden;
      /* isolation: isolate; */
    }
    
    /* Flag Container */
    .footer-country-flag-container {
      position: relative;
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      z-index: 2;
    }
    
    .footer-country-flag {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 2;
      display: block;
    }
    
    .footer-flag-glow {
      display: none;
    }
    
    /* Country Text */
    .footer-country-text {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 0.5;
      text-transform: capitalize;
      position: relative;
      z-index: 2;
      line-height: 1.4;
    }
    
    /* Staggered Animation on Load */
    .footer-global-country-item:nth-child(1) {
      animation: slideInLeft 0.6s ease-out 0.1s both;
    }
    
    .footer-global-country-item:nth-child(2) {
      animation: slideInLeft 0.6s ease-out 0.2s both;
    }
    
    .footer-global-country-item:nth-child(3) {
      animation: slideInLeft 0.6s ease-out 0.3s both;
    }
    
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    /* Responsive Design */
    @media (max-width: 991px) {
      .footer-global-map-title {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
      }
      
      .footer-global-country-item {
        padding: 1.125rem 1.25rem;
        gap: 1rem;
      }
      
      .footer-country-flag-container {
        width: 44px;
        height: 44px;
      }
      
      .footer-country-text {
        font-size: 0.9375rem;
      }
    }
    
    @media (max-width: 767px) {
      .footer-global-presence-map {
        margin-top: 0;
      }
      
      .footer-global-map-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }
      
      .footer-global-map-title::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
      }
      
      .footer-global-countries-list {
        gap: 0.875rem;
      }
      
      .footer-global-country-item {
        padding: 1rem 1.125rem;
        gap: 0.875rem;
        border-radius: 12px;
      }
      
      .footer-country-flag-container {
        width: 40px;
        height: 40px;
      }
      
      .footer-country-text {
        font-size: 0.875rem;
      }
    }
    
    @media (max-width: 480px) {
      .footer-global-map-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
      }
      
      .footer-global-countries-list {
        gap: 0.75rem;
      }
      
      .footer-global-country-item {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
      }
      
      .footer-country-flag-container {
        width: 36px;
        height: 36px;
      }
      
      .footer-country-text {
        font-size: 0.8125rem;
      }
    }
    
    /* Footer Links Columns */
    .footer-links-column {
      margin-bottom: 2rem;
      margin-top: 20px;
    }
    
    @media (min-width: 992px) {
      .footer-links-column {
        margin-bottom: 0;
      }
    }
    
    .footer-column-title {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 0.875rem;
    }
    
    .footer-link-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-link-item {
      margin-bottom: 0.75rem;
    }
    
    .footer-link-item:last-child {
      margin-bottom: 0;
    }
    
    .footer-link {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 400;
      transition: all 0.3s ease;
      display: inline-block;
      position: relative;
    }
    
    .footer-link::before {
  content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--brand-primary);
      transition: width 0.3s ease;
    }
    
    .footer-link:hover {
      color: #ffffff;
      transform: translateX(4px);
    }
    
    .footer-link:hover::before {
      width: 100%;
    }
    
    /* Footer Contact Column */
    .footer-contact-column {
      margin-bottom: 2rem;
      margin-top: 13px;
    }
    
    @media (min-width: 992px) {
      .footer-contact-column {
        margin-bottom: 0;
      }
    }
    
    .footer-contact-info {
      margin-bottom: 2rem;
    }
    
    .footer-email-link {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-size: 0.9375rem;
      font-weight: 500;
  padding: 0;
  background: none;
  border: 0;
      border-radius: 8px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
  font-size: 21px;
    }
    
    .footer-email-link:hover {
      color: #ffffff;
  /* background: rgba(251, 168, 1, 0.15); */
  /* border-color: rgba(251, 168, 1, 0.3); */
      transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(251, 168, 1, 0.2); */
  color: #fba801;
    }
    
    .footer-icon {
  width: 26px;
  height: 30px;
      color: var(--brand-primary);
      flex-shrink: 0;
    }
    
    /* Footer Social Section */
    .footer-social-section {
      margin-top: 1.5rem;
    }
    
    .footer-social-title {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .footer-social-links-dark {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .footer-social-link-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: rgba(255, 255, 255, 0.7);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    
    .footer-social-link-dark:hover {
      color: #ffffff;
      background: rgba(251, 168, 1, 0.2);
      border-color: var(--brand-primary);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 4px 12px rgba(251, 168, 1, 0.3);
    }
    
    .footer-social-link-dark svg {
      width: 18px;
      height: 18px;
    }
    
    /* Footer Divider */
    .footer-divider {
      height: 195px;
      background: url(../images/footerlogowater.png) no-repeat center top;
      width: 100%;
      background-size: 91%;
      border-bottom: 1px solid #373636b0;
      margin-top: 110px;
    }
    
    /* Footer Bottom Section */
    .footer-bottom-section {
      padding-top: 1.5rem;
    }
    
    .footer-copyright-dark {
      text-align: center;
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .footer-copyright-dark {
        text-align: left;
        margin-bottom: 0;
      }
    }
    
    .footer-copyright-dark p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.8125rem;
      margin: 0;
      font-weight: 400;
    }
    
    .footer-bottom-links {
      text-align: center;
      margin-bottom: 1rem;
    }
    
    @media (min-width: 768px) {
      .footer-bottom-links {
        text-align: right;
        margin-bottom: 0;
      }
    }
    
    .footer-bottom-links-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    @media (min-width: 768px) {
      .footer-bottom-links-wrapper {
        justify-content: flex-end;
      }
    }
    
    .footer-bottom-link {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.8125rem;
      font-weight: 400;
      transition: color 0.3s ease;
    }
    
    .footer-bottom-link:hover {
      color: var(--brand-primary);
    }
    
    .footer-link-separator {
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.8125rem;
      margin: 0 0.25rem;
    }
    
    /* Footer Background Decoration */
    .footer-bg-decoration {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 200px;
  background: radial-gradient(
    ellipse at bottom,
    rgba(251, 168, 1, 0.05) 0%,
    transparent 70%
  );
      pointer-events: none;
      z-index: 0;
    }
    
    .footer-bg-decoration::before {
  content: "";
      position: absolute;
      bottom: -50px;
      left: 10%;
      width: 300px;
      height: 300px;
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.08) 0%,
    transparent 70%
  );
      border-radius: 50%;
      filter: blur(60px);
    }
    
    .footer-bg-decoration::after {
  content: "";
      position: absolute;
      bottom: -30px;
      right: 15%;
      width: 200px;
      height: 200px;
  background: radial-gradient(
    circle,
    rgba(251, 168, 1, 0.06) 0%,
    transparent 70%
  );
      border-radius: 50%;
      filter: blur(40px);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991px) {
      .footer-section-dark {
        padding: 3rem 0 1.5rem;
      }
      
      .footer-top-section {
        margin-bottom: 2rem;
      }
      
      .footer-divider {
        margin: 2rem 0 1.5rem;
      }
    }
    
    @media (max-width: 767px) {
      .footer-section-dark {
        padding: 2.5rem 0 1.5rem;
      }
      
      .footer-logo-img {
        height: 2.5rem;
      }
      
      .footer-tagline {
        font-size: 0.8125rem;
      }
      
      .footer-column-title {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
      }
      
      .footer-link {
        font-size: 0.8125rem;
      }
      
      .footer-email-link {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
      }
      
      .footer-social-link-dark {
        width: 36px;
        height: 36px;
      }
      
      .footer-social-link-dark svg {
        width: 16px;
        height: 16px;
      }
    }

.make-me-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}


.getfreebtn 
  {
    color: #c75101;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    padding-top: 10px;
    display: inline-block;
  }

  .getfreebtn svg
    {
      
    }




/* ============================================
       COMPREHENSIVE MOBILE-FIRST OPTIMIZATIONS
       ============================================ */

@media (max-width: 767px) {
  /* Container optimizations */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Section spacing */
  section {
    padding: 2rem 0 !important;
  }

  /* Typography optimizations */
  h1,
  .h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  h2,
  .h2 {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }

  h3,
  .h3 {
    font-size: clamp(1.25rem, 6vw, 1.5rem) !important;
    line-height: 1.4 !important;
  }

  p {
    font-size: clamp(0.9375rem, 4vw, 1rem) !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }

  /* Button optimizations */
  .btn,
  button,
  a[class*="button"],
  a[class*="btn"] {
    /* min-height: 44px !important; */
    /* padding: 12px 20px !important; */
    /* font-size: 1rem !important; */
    /* width: 100% !important; */
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Form optimizations */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    min-height: 44px !important;
    padding: 12px 16px !important;
    font-size: 16px !important; /* Prevents zoom on iOS */
    width: 100% !important;
    border-radius: 8px !important;
  }

  textarea {
    min-height: 120px !important;
  }

  /* Card optimizations */
  [class*="card"] {
    margin-bottom: 1.5rem !important;
    /* padding: 1.5rem !important; */
  }

  /* Grid and flex optimizations */
  .row {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .row > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  /* Spacing utilities */
  .mb-4,
  .mb-5,
  .mb-6,
  .mb-7 {
    margin-bottom: 1.5rem !important;
  }

  .mt-4,
  .mt-5,
  .mt-6,
  .mt-7 {
    margin-top: 1.5rem !important;
  }

  .py-4,
  .py-5,
  .py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Hide fade overlays on mobile carousels */
  .portfolio-carousel-fade-left,
  .portfolio-carousel-fade-right {
    display: none !important;
  }

  /* Optimize tools marquee - show static on mobile */
  .tools-marquee-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .tools-marquee-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 1rem !important;
    animation: none !important; /* Disable tools marquee animation on mobile */
  }

  /* Keep testimonials marquee animation smooth on mobile */
  .testimonials-marquee-wrapper,
  .testimonials-marquee-row {
    overflow: hidden !important; /* Keep hidden for smooth animation */
  }

  .testimonials-marquee-track {
    /* Animation handled by GSAP - keep it smooth */
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 1.5rem !important; /* Consistent gap on mobile */
    will-change: transform !important; /* Optimize for animation */
    backface-visibility: hidden !important;
    /* Don't set transform here - GSAP will handle it */
    position: relative !important;
  }

  /* Footer optimizations */
  .footer-section-dark {
    padding: 2rem 0 !important;
  }

  .footer-divider {
    height: 61px !important;
    margin-top: 2rem !important;
    background-size: 100% !important;
  }

  /* Stats cards */
  .stats-card {
    margin-bottom: 1rem !important;
  }

  /* Process steps */
  .process-step-item {
    margin-bottom: 1.5rem !important;
    padding: 2rem 1.5rem !important;
  }

  /* Service cards - optimized sizes allow more cards visible */
  .service-carousel-item {
    margin-right: 0.75rem !important; /* Reduced gap between cards */
  }

  .services-carousel-wrapper {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .service-card-modern {
    margin-bottom: 1rem !important; /* Reduced margin */
  }

  /* FAQ optimizations */
  .faq-question-item {
    padding: 1rem !important;
  }

  /* CTA section */
  .cta-section {
    padding: 0 25px !important;
    margin-top: 100px;
  }

  /* Hero section mobile optimizations */
  .hero-section-container {
    padding: 3rem 0 2rem 0 !important;
  }

  .hero-scroll-indicator {
    bottom: 2rem !important;
    display: none !important; /* Hide on very small screens */
  }

  /* Video background - disable on mobile for performance */
  .header-hero-video {
    display: block !important;
  }

  .hero-dark-bg {
    background: linear-gradient(
      135deg,
      #1d1d1d 0%,
      #1d1d1d 50%,
      #0f0f1a 100%
    ) !important;
    padding: 17px 0 32px 0 !important;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  section {
    padding: 1.5rem 0 !important;
  }

  h1,
  .h1 {
    font-size: clamp(1.5rem, 10vw, 2rem) !important;
  }

  h2,
  .h2 {
    font-size: clamp(1.25rem, 9vw, 1.75rem) !important;
  }

  .hero-heading {
    font-size: clamp(1.75rem, 12vw, 2.5rem) !important;
    line-height: 1 !important;
  }

  .hero-description {
    font-size: clamp(0.875rem, 5vw, 1rem) !important;
    padding: 0 0.5rem !important;
    line-height: 23px !important;
  }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  section {
    padding: 3rem 0 !important;
  }
}

/* Ensure proper viewport handling */
@supports (-webkit-touch-callout: none) {
  /* iOS specific optimizations */
  body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  input,
  textarea {
    -webkit-user-select: text;
    user-select: text;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 767px) {
  /* Reduce backdrop filters on mobile */
  * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Keep essential backdrop filters */
  .fullscreen-menu-overlay,
  .header-mobile-overlay {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  /* Images are optimized via HTML loading="lazy" attribute */

  .hero-dark-bg::before {
    display: none;
  }

  .typing-text-gradient {
    font-size: 36px;
    line-height: 47px;
  }

  .make-me-sticky {
    position: relative;
    height: auto;
  }

  .header-nav-container {
    padding: 0;
  }

  .typing-animation-container {
    height: 59px;
  }

  .stats-card {
    min-width: 100%;
  }

  .stats-cards-section {
    margin-top: 20px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-shadow: none;
  }

  .hero-section-container .hero-button-primary,
  .hero-section-container .hero-button-secondary {
    border: 1px solid #fff;
  }

  .hero-section-container .hero-button-primary {
    background: #e09a00;
    color: #030303;
    border: 1px solid #e09a00;
    margin-top: 10px;
  }

  .hero-section-container .hero-button-secondary {
    background: #fff;
    color: #030303;
    border: 1px solid #030303;
  }

  .stat-number-display {
    margin-bottom: 0 !important;
  }

  .stats-facts-section .primary-btn-2 {
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .stats-facts-section {
    padding-bottom: 60px !important;
  }

  .service-section-container {
    padding-top: 60px;
    padding-bottom: 180px;
  }

  .why-choose-qf-sec {
    padding-left: 30px !important;
    padding-right: 30px !important;
    margin-top: 50px;
  }

  .service-sec-box {
    top: 0;
    margin-top: -130px;
  }

  .stats-facts-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .portfolio-sec-area h2 {
    padding: 0 25px;
  }

  .portfolio-sec-area {
    padding-top: 60px !important;
    margin-bottom: 50px;
  }

  .portfolio-carousel-card-inner [class*="card"] {
    padding: 0 !important;
  }

  .portfolio-carousel-card {
    height: auto;
    min-height: auto;
  }

  .portfolio-carousel-image {
    height: auto;
  }

  .portfolio-sec-area {
    height: auto;
  }

  .portfolio-sec-area h2 {
    margin-bottom: 50px !important;
  }

  .testimonials-heading-responsive {
    font-size: 33px !important;
    line-height: 28px !important;
  }

  .cta-section:before {
    opacity: 0.3;
    right: -80px;
    filter: grayscale(1);
  }

  .menu-button-text {
    font-size: 19px;
    margin-right: 10px;
  }

  .header-cta-button {
    font-size: 17px;
  }

  .header-menu-button {
    margin-left: 10px !important;
  }

  .hero-section-container .hero-button-primary,
  .hero-section-container .hero-button-secondary {
    font-weight: 800;
  }

  /* Header Fixed State - Mobile Only */
  @media (max-width: 767px) {
    .header-nav-container {
      transition: all 0.3s ease;
    }

    .header-nav-container.fixed {
      position: fixed !important;
      width: 95%;
      left: 0;
      right: 0;
      background: rgb(0 0 0 / 45%);
      backdrop-filter: blur(20px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
      z-index: 999 !important;
      padding: 9px 0!important;
      top: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      animation: slideDown 0.3s ease;
      margin: 0 auto;
      border-radius: 66px;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Ensure logo and buttons are visible when fixed */
    .header-nav-container.fixed .header-nav-logo {
      height: 1.75rem;
    }
    

  }

  .footer-logo-header-tagline
    {
      font-size: 13px !important;
    letter-spacing: 2px;
    }

    .footer-global-country-item
      {
        padding:0;
      }

      .footer-email-link
        {
          padding-left:0;
        }

        .footer-divider
          {
            margin-bottom:0;
          }

          .footer-link-item
            {
              margin-bottom:0;
            }

            .stat-number-display
              {
                font-size: 28px !important;
              }

              .stats-heading-responsive br
                {
                    display: none;
                }


                .fullscreen-menu-close
                  {
                    width: 35px;
                    height: 35px;
                    position: relative;
                    top:-5px;
                  }


                  .why-content-card-modern 
                    {
                      background-size:26%;
                    }


}

/* ============================================
   QUOTE MODAL - GLASS MORPHISM DESIGN
   ============================================ */

.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 67%);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-overlay.active .quote-modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.quote-modal-container {
  position: relative;
    width: 100%;
  max-width: 940px;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: auto;
  /* height: 650px; */
}

.quote-modal-container:before 
  {
    content: "";
    width: 100%;
    height: 133px;
    position: absolute;
    right:0;
    bottom:0;
    background:url(../images/footerlogowater.png) no-repeat center top;
    background-size: 86%;
    opacity: 0;
  }

/* Mobile styles moved to bottom for better organization */

.quote-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1d1f1e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.quote-modal-close:hover {
  background: rgba(251, 168, 1, 0.1);
  border-color: rgba(251, 168, 1, 0.3);
  color: #fba801;
  transform: rotate(90deg);
}

.quote-modal-content {
  position: relative;
}

.quote-modal-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 53px;
  text-align: center;
  letter-spacing: -0.02em;
}

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

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

@media (max-width: 767px) {
  .quote-form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.quote-form-group {
  position: relative;
  width: 32%;
}

.quote-form-group-full {
  grid-column: 1 / -1;
}

.quote-form-label {
  display: block;
  color: #1d1f1e;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quote-form-input,
.quote-form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #f3f3f3;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  color: #1d1f1e;
  font-size: 1rem;
  font-family: "Figtree", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-form-input::placeholder {
  color: rgba(29, 31, 30, 0.5);
}

.quote-form-input:focus,
.quote-form-select:focus {
  background: #ffffff;
  border-color: #fba801;
  box-shadow: 0 4px 12px rgba(251, 168, 1, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.quote-form-group.error .quote-form-input,
.quote-form-group.error .quote-form-select {
  border-color: #ff6b6b;
  background: #fff5f5;
}

.quote-form-group.valid .quote-form-input,
.quote-form-group.valid .quote-form-select {
  border-color: #72d376;
  background: #f5fff5;
}

.quote-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231d1f1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.quote-form-select option {
  background: #ffffff;
  color: #1d1f1e;
  padding: 0.5rem;
}

.quote-phone-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

.country-code-select-wrapper {
  position: relative;
  min-width: 120px;
  max-width: 130px;
  height: 100%;
}

.country-code-flag-wrapper {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: #f3f3f3;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  height: 100%;
  min-height: auto;
  box-sizing: border-box;
  outline: none;
}

.country-code-flag-wrapper:hover {
  background: #ffffff;
  border-color: #fba801;
  box-shadow: 0 4px 12px rgba(251, 168, 1, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.country-code-flag-wrapper::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1d1f1e;
  pointer-events: none;
  transition: all 0.3s ease;
}

.country-code-flag-wrapper:hover::after {
  border-top-color: #fba801;
}

.country-flag-icon {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.country-code-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1d1f1e;
  font-family: "Figtree", sans-serif;
  line-height: 1;
}

.quote-country-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.quote-country-select:focus + .country-code-flag-wrapper,
.country-code-flag-wrapper:has(.quote-country-select:focus) {
  background: #ffffff;
  border-color: #fba801;
  box-shadow: 0 4px 12px rgba(251, 168, 1, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.quote-country-select:focus + .country-code-flag-wrapper::after,
.country-code-flag-wrapper:has(.quote-country-select:focus)::after {
  border-top-color: #fba801;
}

.quote-country-select option {
  background: #ffffff;
  color: #1d1f1e;
}

.quote-phone-input {
  flex: 1;
}

.quote-form-error {
  display: none !important;
  color: #ff6b6b;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.quote-form-group.error .quote-form-error {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.quote-form-privacy {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.quote-form-privacy p {
  color: rgba(29, 31, 30, 0.7);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
}

.quote-privacy-link {
  color: #fba801;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quote-privacy-link:hover {
  color: #ffc947;
  text-decoration: underline;
}

.quote-form-submit-wrapper {
  margin-top: 1rem;
  display: flex;
}

.quote-form-submit-btn {
  width: 46%;
  padding: 1.125rem 2rem;
  background: linear-gradient(90deg, #ffc947 0%, #fba801 100%);
  border: none;
  border-radius: 0.75rem;
  color: #1d1f1e;
  font-size: 19px;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(251, 168, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.quote-form-submit-btn::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;
}

.quote-form-submit-btn:hover::before {
  left: 100%;
}

.quote-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 168, 1, 0.4);
}

.quote-form-submit-btn:active {
  transform: translateY(0);
}

.quote-form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.quote-submit-btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-loader-svg {
  width: 20px;
  height: 20px;
  color: #1d1f1e;
}

.quote-modal-success {
  text-align: center;
  padding: 2rem 0;
  animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(114, 211, 118, 0.2) 0%, rgba(114, 211, 118, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #72d376;
}

.quote-success-icon svg {
  width: 40px;
  height: 40px;
}

.quote-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 0.75rem;
}

.quote-success-text {
  color: rgba(29, 31, 30, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.quote-modal-content .or
  {font-size: 18px;padding: 0 15px;text-transform: uppercase;line-height: 65px;background: #ffffff;border-radius: 50%;width: 62px;height: 62px;margin-left: -10px;margin-right: -10px;position: relative;z-index: 9;}

.quote-modal-content .discuss-btn 
  {width: 46%;padding: 0;background: linear-gradient(90deg, #ffc947 0%, #fba801 100%);border: none;border-radius: 0.75rem;color: #1d1f1e;font-size: 18px;font-weight: 700;font-family: "Figtree", sans-serif;cursor: pointer;transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);position: relative;overflow: hidden;box-shadow: 0 4px 16px rgba(251, 168, 1, 0.3);display: flex;align-items: center;justify-content: center;text-decoration: none;}  

/* Mobile Responsive */
@media (max-width: 767px) {
  .quote-modal-overlay {
    padding: 0;
    align-items: flex-start;
    padding-top: 0;
  }
  
  .quote-modal-overlay.active .quote-modal-container {
    transform: translateY(0);
  }
  
  .quote-modal-container {
    max-width: 100%;
    width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 1.75rem 1.25rem 2rem;
    margin-top: 0;
    margin-bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    box-shadow: none;
    padding: 21px 31px !important;
    border-radius: 0 !important;
    border: 0;
    height: 100vh;
  }
  
  .quote-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    padding-right: 3rem;
    margin-bottom: 45px !important;
  }
  
  .quote-modal-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .quote-modal-close svg {
    width: 20px;
    height: 20px;
  }
  
  .quote-modal-form {
    gap: 1.25rem;
    margin-top: 33px;
  }
  
  .quote-form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    display: block;
    margin-top: -13px !important;
  }
  
  .quote-form-group {
    width: 100%;
    margin: 11px 0 0 0;
  }
  
  .quote-form-label {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
  }
  
  .quote-form-input,
  .quote-form-select,
  .quote-country-select {
    padding: 1rem 1.125rem !important;
    font-size: 1rem;
    min-height: 52px;
    border-radius: 0.875rem;
    -webkit-appearance: none;
    appearance: none;
    padding: 0 !important;
  }

  /* Home form phone wrapper mobile */
  .form-group .quote-phone-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group .country-code-select-wrapper {
    width: 100%;
    min-width: 100%;
  }

  .form-group .country-code-flag-wrapper {
    width: 100%;
    padding: 0.875rem 1rem !important;
    min-height: 50px;
    gap: 0.5rem;
  }

  .form-group .country-code-flag-wrapper::after {
    right: 1rem;
  }

  .form-group .country-flag-icon {
    width: 20px;
    height: 15px;
  }

  .form-group .country-code-text {
    font-size: 0.9375rem;
  }

  .form-group .quote-country-select {
    width: 100%;
    height: 100%;
  }

  .form-group .quote-phone-input {
    width: 100%;
  }
  
  .quote-form-input::placeholder {
    font-size: 1rem;
  }
  
  .quote-form-input:focus,
  .quote-form-select:focus {
    transform: none;
    box-shadow: 0 0 0 3px rgba(251, 168, 1, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .quote-form-select {
    padding-right: 2.75rem;
    background-position: right 1rem center;
    padding: 13px 12px !important;
  }
  
  .quote-phone-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .quote-country-select {
    min-width: 100%;
    width: 100%;
    padding-right: 2rem;
    background-position: right 0.5rem center;
    text-align: left;
  }
  
  .quote-phone-input {
    width: 100%;
  }
  
  .quote-form-error {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }
  
  .quote-form-privacy {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .quote-form-privacy p {
    font-size: 0.75rem !important;
    line-height: 1.6 !important;
  }
  
  .quote-form-submit-wrapper {
    margin-top: 0;
    padding-top: 0;
  }
  
  .quote-form-submit-btn {
    padding: 15px 0 !important;
    font-size: 16px !important;
    font-weight: 700;
    min-height: 46px;
    border-radius: 0.875rem;
    width: 49%;
    box-shadow: 0 6px 20px rgba(251, 168, 1, 0.35);
  }
  
  .quote-form-submit-btn:active {
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(251, 168, 1, 0.3);
  }
  
  .quote-success-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  
  .quote-success-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .quote-success-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  
  .quote-success-text {
    font-size: 0.9375rem;
  }
  
  /* Smooth scrollbar for mobile */
  .quote-modal-container::-webkit-scrollbar {
    width: 4px;
  }
  
  .quote-modal-container::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .quote-modal-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
  }
  
  .quote-modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .quote-modal-container {
    padding: 1.5rem 1rem 1.75rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  
  .quote-modal-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
  
  .quote-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
  
  .quote-form-input,
  .quote-form-select,
  .quote-country-select {
    padding: 0.9375rem 0.75rem;
    font-size: 0.9375rem;
    min-height: 50px;
  }
  
  .quote-country-select {
    text-align: center;
  }
  
  .quote-form-submit-btn {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
  
  .quote-modal-form {
    gap: 1rem;
  }
  
  .quote-form-row {
    gap: 1rem;
  }

  .quote-modal-content .or
    {width: 30px;height: 30px;line-height: 31px;font-size: 12px;padding: 0;text-align: center;margin-top: 15px;}

    .quote-modal-content .discuss-btn
      {
        font-size: 15px;
      }
}

/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

.privacy-policy-page {
  padding: 6rem 0 8rem;
  background: transparent;
  min-height: 100vh;
}

.privacy-page-header {
  margin: 0 auto 4rem;
  padding: 0;
}

.privacy-badge-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.privacy-badge {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 2px solid rgba(251, 168, 1, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.privacy-badge-number {
  font-size: 1.25rem;
  color: #1d1f1e;
  font-weight: 700;
}

.privacy-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(251, 168, 1, 0.3) 0%, rgba(251, 168, 1, 0.1) 100%);
  margin-left: 1.5rem;
  max-width: 200px;
}

.privacy-header-content {
  max-width: 800px;
}

.privacy-page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.privacy-page-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-last-updated {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}

.privacy-last-updated span {
  font-weight: 600;
  color: #fba801;
}

.privacy-content-wrapper {
  max-width: max-content;
  margin: 0 auto;
  padding: 0 1rem;
}

.privacy-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1d1f1e;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 1rem;
}

.privacy-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: calc(100% - 1rem);
  background: linear-gradient(180deg, #fba801 0%, #ffc947 100%);
  border-radius: 2px;
}

.privacy-section-content {
  color: #374151;
  line-height: 1.8;
  font-size: 1rem;
}

.privacy-section-content p {
  margin-bottom: 1.25rem;
  color: #374151;
  font-size: 18px;
}

.privacy-section-content p:last-child {
  margin-bottom: 0;
}

.privacy-subsection-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #1d1f1e;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.privacy-list li {
  padding: 5px 0 5px 16px;
  position: relative;
  color: #374151;
  line-height: 1.2;
  font-size: 17px;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: #fba801;
  border-radius: 50%;
  transform: translateY(-50%);
}

.privacy-list li strong {
  color: #1d1f1e;
  font-weight: 600;
}

.privacy-contact-info {
  background: #f9fafb;
  border-left: 4px solid #fba801;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.privacy-contact-info p {
  margin-bottom: 0.75rem;
  color: #374151;
}

.privacy-contact-info p:last-child {
  margin-bottom: 0;
}

.privacy-contact-info a {
  color: #fba801;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.privacy-contact-info a:hover {
  color: #e09a00;
  text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
.service-sec-box .mySwiper
  {
    height: 261px !important;
  }

  .privacy-policy-page {
    padding: 4rem 0 5rem;
  }

  .privacy-page-header {
    margin-bottom: 3rem;
  }

  .privacy-badge {
    width: 50px;
    height: 50px;
  }

  .privacy-badge-number {
    font-size: 1rem;
  }

  .privacy-divider-line {
    max-width: 100px;
    margin-left: 1rem;
  }

  .privacy-page-title {
    margin-bottom: 1rem;
  }

  .privacy-page-subtitle {
    margin-bottom: 0.75rem;
  }

  .privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }

  .privacy-section-title {
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .privacy-section-title::before {
    width: 3px;
    left: 0;
  }

  .privacy-section-content {
    font-size: 0.9375rem;
  }

  .privacy-section-content p {
    margin-bottom: 1rem;
  }

  .privacy-subsection-title {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .privacy-list {
    margin: 1.25rem 0;
  }

  .privacy-list li {
    padding: 0.625rem 0 0.625rem 1.5rem;
    font-size: 0.9375rem;
  }

  .privacy-contact-info {
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
  }

  .privacy-contact-info p {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy-page {
    padding: 3rem 0 4rem;
  }

  .privacy-page-header {
    margin-bottom: 2.5rem;
    padding: 0 0.75rem;
  }

  .privacy-badge-wrapper {
    margin-bottom: 1.5rem;
  }

  .privacy-badge {
    width: 45px;
    height: 45px;
  }

  .privacy-badge-number {
    font-size: 0.875rem;
  }

  .privacy-divider-line {
    max-width: 80px;
  }

  .privacy-content-wrapper {
    padding: 0 0.75rem;
  }

  .privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .privacy-section-title {
    padding-left: 0.625rem;
    font-size: 1.5rem;
  }

  .privacy-section-title::before {
    width: 3px;
  }

  .privacy-section-content {
    font-size: 0.875rem;
  }

  .privacy-subsection-title {
    font-size: 1.125rem;
  }

  .privacy-list li {
    padding-left: 1.25rem;
    font-size: 0.875rem;
  }

  .privacy-list li::before {
    width: 5px;
    height: 5px;
  }

  .privacy-contact-info {
    padding: 1rem 1.25rem;
    border-left-width: 3px;
  }

  .privacy-contact-info p {
    font-size: 0.875rem;
  }
    }


    .inner-header
      {
        background: #1d1f1e !important;
      }


          