    :root {
      --bg-primary: #ffffff;
      --bg-secondary: #e5f0fd;
      --bg-tertiary: #f4f5f8;
      --text-primary: #1f2937;
      --text-secondary: #4b5563;
      --header-bg: rgba(255, 255, 255, 1);
      --main-header-bg: transparent;
      --main-header-border: transparent;
      --card-bg: #f9fafb;
      --border-color: #e5e7eb;
      --accent: #6366f1;
      --accent-hover: #4f46e5;
      --nav-text: #374151;
      --nav-hover-bg: rgba(99, 102, 241, 0.08);
      --wave-fill: #ffffff;
      --testimonial-bg: #fafbff;
      --scrollbar-track: #f1f5f9;
      --scrollbar-thumb: #6366f1;
      --scrollbar-thumb-hover: #4f46e5;

      /* Wave Colors - Light Theme (Lighter, more subtle) */
      --wave-layer-1-start: rgba(99, 102, 241, 0.1);
      --wave-layer-1-end: rgba(59, 130, 246, 0.2);
      --wave-layer-2: rgba(59, 130, 246, 0.15);
      --wave-layer-3: rgba(30, 64, 175, 0.1);
    }

    [data-theme="dark"] {
      --bg-primary: #0f172a;
      --bg-secondary: #1e293b;
      --text-primary: #f8fafc;
      --text-secondary: #94a3b8;
      --header-bg: rgba(15, 23, 42, 1);
      --main-header-bg: rgba(30, 41, 59, 0.5);
      --main-header-border: transparent;
      --card-bg: #1e293b;
      --border-color: #334155;
      --nav-text: #e2e8f0;
      --nav-hover-bg: rgba(255, 255, 255, 0.05);
      --wave-fill: #0f172a;
      --testimonial-bg: #020617;
      --scrollbar-track: #0f172a;
      --scrollbar-thumb: #6366f1;
      --scrollbar-thumb-hover: #4f46e5;

      /* Wave Colors - Dark Theme (Original Intense Colors) */
      --wave-layer-1-start: rgba(99, 102, 241, 0.2);
      --wave-layer-1-end: rgba(59, 130, 246, 0.4);
      --wave-layer-2: rgba(59, 130, 246, 0.3);
      --wave-layer-3: rgba(30, 64, 175, 0.2);
    }

    /* Custom Scrollbar - ONLY for Dark Theme */
    [data-theme="dark"]::-webkit-scrollbar {
      width: 14px;
    }

    [data-theme="dark"]::-webkit-scrollbar-track {
      background: #0f172a;
    }

    [data-theme="dark"]::-webkit-scrollbar-thumb {
      background: #334155;
      border-radius: 8px;
      border: 3px solid #0f172a;
    }

    [data-theme="dark"]::-webkit-scrollbar-thumb:hover {
      background: #475569;
    }

    /* Firefox Dark Theme Scrollbar */
    html {
      scroll-behavior: smooth;
    }

    [data-theme="dark"] {
      scrollbar-width: auto;
      scrollbar-color: #334155 #0f172a;
    }


    body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: auto;
      min-height: 100vh;
      overflow-x: hidden;
      background-color: var(--bg-primary);
      color: var(--text-primary);
      transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header {
      user-select: none;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: calc(0.75vh + 0.75vw);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 5000;
      background-color: transparent;
      pointer-events: none;
    }

    .main-header {
      width: 60%;
      display: grid;
      grid-template-columns: 0.8fr 0.5fr 2.5fr 0.4fr;
      /* Adjusted for better spacing */
      align-items: center;
      /* Vertical alignment for all grid items */
      padding: 10px 25px;
      border-radius: 50px;
      cursor: default;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 2000;
      /* Sit way above any overlay */
      border: 1px solid var(--main-header-border);
      background-color: transparent;
      pointer-events: auto;
      /* Ensure clicks are caught */
    }

    /* Theme Switcher Styles */
    .theme-toggle {
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.2);
      padding: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 12px;
      margin-left: 15px;
      width: 42px;
      height: 42px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      align-self: center;
      /* Individual safety alignment */
    }

    .theme-toggle:hover {
      background-color: var(--accent);
      color: white;
      transform: translateY(-2px) rotate(15deg);
      box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    }

    .theme-toggle i {
      font-size: 1.2rem;
    }

    [data-theme="dark"] .theme-toggle {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.1);
      color: #fcd34d;
      /* Bright sun yellow */
    }

    [data-theme="dark"] .theme-toggle:hover {
      background: #fcd34d;
      color: #0f172a;
      box-shadow: 0 8px 20px rgba(252, 211, 77, 0.3);
    }

    .theme-toggle .fa-sun {
      display: none;
    }

    .theme-toggle .fa-moon {
      display: block;
    }

    [data-theme="dark"] .theme-toggle .fa-sun {
      display: block;
    }

    [data-theme="dark"] .theme-toggle .fa-moon {
      display: none;
    }

    .right-side-header {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 1.2fr 1.6fr;
      gap: 2vw;
      align-content: center;
      justify-items: center;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .safonas-logo {
      font-size: 1.85vw;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-weight: 700;
      color: var(--text-primary);
      cursor: pointer;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
    }

    .safonas-logo:hover {
      color: var(--accent);
    }

    .header-option {
      text-align: center;
      font-size: 1.15vw;
      cursor: pointer;
      padding: 0.6vw 1.2vw;
      border-radius: 50px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      color: var(--nav-text);
      font-weight: 500;
      position: relative;
      opacity: 0;
      animation: fadeInDown 0.5s ease-out forwards;
      display: flex;
      align-items: center;
    }

    .header-option:nth-child(1) {
      animation-delay: 0.1s;
    }

    .header-option:nth-child(2) {
      animation-delay: 0.2s;
    }

    .header-option:nth-child(3) {
      animation-delay: 0.3s;
    }

    .header-option:nth-child(4) {
      animation-delay: 0.4s;
    }

    .header-option:hover {
      background-color: var(--nav-hover-bg);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .header-option:active {
      transform: translateY(0);
      background-color: var(--nav-hover-bg);
    }

    .header-option::after {
      content: '';
      position: absolute;
      bottom: 0.4vw;
      left: 50%;
      width: 0;
      height: 2px;
      background-color: #6366f1;
      transition: all 0.3s ease;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .header-option:hover::after {
      width: 30%;
    }

    .contact-btn {
      background: linear-gradient(90deg, #38bdf8, #1d4ed8, #38bdf8);
      background-size: 200% auto;
      background-position: left center;
      color: white !important;
      font-weight: 700 !important;
      border-radius: 12px !important;
      padding: 0.8vw 1.8vw !important;
      box-shadow: 0 4px 15px rgba(29, 78, 216, 0.2);
      transition: all 0.5s ease !important;
    }

    .contact-btn::after {
      display: none !important;
    }

    .contact-btn:hover {
      transform: translateY(-2px) scale(1.03) !important;
      box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
      background-position: right center;
    }

    .contact-btn:active {
      transform: translateY(0) scale(0.98) !important;
    }

    /* Hamburger Menu Styles */
    .hamburger-box {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      /* Slightly wider for better touch */
      height: 20px;
      cursor: pointer;
      z-index: 5001;
      /* Must be higher than header and overlay */
      position: relative;
    }

    .hamburger-box span {
      display: block;
      width: 100%;
      height: 2.5px;
      /* Thicker lines for visibility */
      background-color: var(--text-primary);
      border-radius: 4px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Hamburger Animation to X */
    .hamburger-box.active span {
      background-color: #6366f1 !important;
      /* Force a vibrant indigo-blue for high contrast */
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
      /* Subtle glow to distinguish from blur */
    }

    .hamburger-box.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .hamburger-box.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(20px);
    }

    .hamburger-box.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--header-bg);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 101;
      opacity: 0;
      pointer-events: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .mobile-menu-option {
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-size: 1.75rem;
      margin: 15px 0;
      cursor: pointer;
      color: var(--text-primary);
      font-weight: 500;
      padding: 10px 30px;
      border-radius: 30px;
      transition: all 0.3s ease;
      width: 80%;
      text-align: center;
    }

    .mobile-menu-option:hover {
      background-color: var(--nav-hover-bg);
      color: var(--accent);
      transform: scale(1.05);
    }

    .hero-section {
      width: 100%;
      min-height: 92.5vh;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      background: var(--bg-secondary);
      padding-top: 15vh;
      position: relative;
      overflow: hidden;
      transition: background 0.4s ease;
    }



    .lottie-wrap {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 90%;
      height: 130%;
      z-index: 1;
      opacity: 0;
      pointer-events: none;
      /* Animation now triggered via JS after preloader */
    }

    .lottie-wrap.start-lottie {
      animation: lottieLoop 7.5s infinite ease-in-out;
    }

    .lottie-left {
      left: -6%;
    }

    .lottie-right {
      right: -6%;
      transform: translateY(-50%) scaleX(-1);
    }

    /* Hide background animations in vertical/mobile mode for clarity */
    @media (max-width: 768px) {
      .lottie-wrap {
        display: none !important;
      }
    }




    .neural-particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: #6366f1;
      border-radius: 50%;
      opacity: 0.3;
      pointer-events: none;
      z-index: 2;
      box-shadow: 0 0 10px #6366f1;
    }

    .hero-container {
      margin-top: calc(1vh + 2vw);
      margin-left: auto;
      margin-right: auto;
      width: 85%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      z-index: 10;
      position: relative;
    }



    .hero-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 0px;
      /* Removed horizontal padding since background/border are gone */
      background: transparent;
      border: none;
      border-radius: 100px;
      color: #6366f1;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      animation: fadeInUp 0.8s ease-out;
    }

    .hero-title {
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.1;
      margin-top: 0;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .hero-title span {
      background: linear-gradient(90deg, var(--accent), #3b82f6);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      font-weight: 900;
      transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      min-width: 280px;
      text-align: left;
      transform-origin: center bottom;
    }

    .hero-title span.text-hidden {
      opacity: 0;
      transform: rotateX(-90deg) translateY(20px);
      filter: blur(4px);
    }

    .hero-description {
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-size: clamp(1.1rem, 1.5vw, 1.4rem);
      color: var(--text-secondary);
      max-width: 800px;
      line-height: 1.6;
      margin-bottom: 3rem;
      animation: fadeInUp 0.8s ease-out 0.4s backwards;
    }

    .hero-btn {
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      padding: 1.2rem 2.5rem;
      background: linear-gradient(90deg, #6366f1, #4f46e5);
      color: white;
      font-size: 1.2rem;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
      transition: all 0.3s ease;
      animation: fadeInUp 0.8s ease-out 0.6s backwards;
      display: inline-block;
    }

    .hero-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    }

    .hero-proof {
      margin-top: 3rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      color: #6b7280;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      font-size: 1rem;
      animation: fadeInUp 0.8s ease-out 0.8s backwards;
    }

    .hero-proof span {
      font-weight: 700;
      color: #374151;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shimmerROI {
      to {
        background-position: 200% center;
      }
    }

    @keyframes lottieLoop {

      0%,
      53.33%,
      100% {
        opacity: 0;
      }

      13.33%,
      40% {
        opacity: 0.65;
      }
    }

    @keyframes waveFlow {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .section-divider {
      position: relative;
      background: var(--bg-primary);
      padding-top: 120px;
      padding-bottom: 200px;
      bottom: -2.5px !important;
      z-index: 5;
    }

    .wave-divider {
      position: absolute;
      bottom: -2.5px !important;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      z-index: 15;
    }

    .wave-divider svg {
      position: relative;
      display: block;
      width: 200%;
      /* Wider for seamless loop of a single curve */
      height: 120px;
      animation: waveFlow 10s linear infinite;
    }

    /* --- Animated Multi-Waves Styles --- */
    .wave-divider-animated {
      position: relative;
      bottom: -2.5px !important;
      width: 100%;
      height: 15vh;
      min-height: 100px;
      background: var(--testimonial-bg);
      overflow: hidden;
      margin-top: -2px;
      z-index: 5;
      border: none;
      outline: none;
    }

    .waves-container {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100%;
    }

    .parallax-waves>use {
      animation: wave-move 25s cubic-bezier(.55, .5, .45, .5) infinite;
    }

    .parallax-waves>use:nth-child(1) {
      animation-delay: -2s;
      animation-duration: 7s;
    }

    .parallax-waves>use:nth-child(2) {
      animation-delay: -3s;
      animation-duration: 10s;
    }

    .parallax-waves>use:nth-child(3) {
      animation-delay: -4s;
      animation-duration: 13s;
    }

    .parallax-waves>use:nth-child(4) {
      animation-delay: -5s;
      animation-duration: 20s;
    }

    @keyframes wave-move {
      0% {
        transform: translate3d(-90px, 0, 0);
      }

      100% {
        transform: translate3d(86px, 0, 0);
      }
    }

    .section-content {
      width: 85%;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .section-title {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    /* Word Reveal Animation Styles */
    .word-reveal-title {
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
    }

    .word-reveal-title span {
      display: inline-block;
      opacity: 0;
      transform: translateY(1.5rem);
      transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease;
    }

    .word-reveal-title.active span {
      opacity: 1;
      transform: translateY(0);
    }


    body:hover .cursor-glow {
      opacity: 1;
    }

    /* Neural Grid Background */
    .neural-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      opacity: 1;
      z-index: 2;
    }

    /* Features Grid (Adapted from compare.html) */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
    }

    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 2.5rem;
      text-align: left;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: var(--accent);
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      color: var(--accent);
      font-size: 1.75rem;
      transition: all 0.4s ease;
    }

    .feature-card:hover .feature-icon {
      background: var(--accent);
      color: white;
      transform: scale(1.1) rotate(5deg);
    }

    .feature-card:hover .feature-icon svg path {
      fill: white;
      fill-opacity: 1;
    }

    .feature-card h3 {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .feature-card p {
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 1.05rem;
    }

    /* Additional Metrics Grid */
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 5rem;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--border-color);
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .metric-card:hover {
      transform: translateY(-5px);
      transition: all 0.3s ease;
      border-color: var(--accent);
      background: rgba(99, 102, 241, 0.05);
    }

    .metric-value {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 0.5rem;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .metric-label {
      color: var(--text-secondary);
      font-size: 0.95rem;
      font-weight: 500;
    }

    /* Feature Section Animations */
    .animate-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-in.show {
      opacity: 1;
      transform: translateY(0);
    }

    .section-title.animate-in {
      transform: translateY(25px);
    }

    .section-subtitle.animate-in {
      transform: translateY(20px);
    }

    /* Subtle CTA Pop-up Animation */
    .cta-pop-up {
      opacity: 0;
      transform: translateY(15px) scale(0.98);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    /* Unique Contact Form Animation */
    .contact-animate-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .contact-animate-up.show {
      opacity: 1;
      transform: translateY(0);
    }


    .cta-pop-up.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Unique Testimonials Section Reveal */
    .testimonials-pop-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .testimonials-pop-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Testimonials Section Theme */
    .testimonial-themed-section {
      background: var(--testimonial-bg);
      /* Extra light pure background for light theme */
      background-image: radial-gradient(rgba(0, 112, 243, 0.04) 1px, transparent 1px);
      background-size: 30px 30px;
      border-top: none;
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }

    [data-theme="dark"] .testimonial-themed-section {
      background: var(--testimonial-bg);
      /* Much darker navy/black for dark theme */
      background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    }

    .testimonial-themed-section .testimonial-new-card {
      border: 1px solid rgba(0, 112, 243, 0.08);
      background: #ffffff;
    }

    [data-theme="dark"] .testimonial-themed-section .testimonial-new-card {
      background: rgba(30, 41, 59, 0.5);
      /* Glassmorphism in dark mode */
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    /* Testimonials Section Styles */
    /* New Focused Testimonial Carousel Styles */
    .testimonial-section-wrapper {
      width: 100%;
      overflow: hidden;
      padding: 4rem 0;
      position: relative;
    }

    .testimonial-carousel-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      padding: 0;
      perspective: 1500px;
      /* Crucial for 3D card effects */
    }

    .testimonial-slider {
      display: flex;
      align-items: center;
      transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
      /* Bouncy, game-like transition */
      transform-style: preserve-3d;
      cursor: grab;
    }

    .testimonial-slider:active {
      cursor: grabbing;
    }

    .testimonial-card-wrapper {
      flex: 0 0 35%;
      /* Increased base width to avoid need for scale(1.1) */
      padding: 2rem;
      transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
      opacity: 0.4;
      transform: scale(0.85) translateZ(-150px);
      z-index: 1;
      will-change: transform, opacity;
      transform-style: preserve-3d;
      filter: grayscale(0.2);
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      backface-visibility: hidden;
    }

    /* Card positions relative to active */
    .testimonial-card-wrapper.active {
      opacity: 1;
      transform: translateZ(0);
      /* Hardware accelerate without 3D tilt blur */
      filter: grayscale(0);
      z-index: 10;
    }

    /* Target the cards next to active for a slightly larger feel than outer ones */
    .testimonial-card-wrapper.prev {
      transform: scale(0.85) translateZ(-200px) rotateY(35deg);
      opacity: 0.6;
    }

    .testimonial-card-wrapper.next {
      transform: scale(0.85) translateZ(-200px) rotateY(-35deg);
      opacity: 0.6;
    }

    /* Individual items inside the card */
    .testimonial-new-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 2.5rem;
      text-align: center;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0, 0, 0, 0.05);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.4s ease;
      backface-visibility: hidden;
    }


    .testimonial-avatar-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1.5rem;
      border: 4px solid #fff;
      box-shadow: 0 4px 12px rgba(0, 112, 243, 0.2);
    }

    .testimonial-quote-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #334155;
      margin-bottom: 2rem;
      font-style: italic;
      flex-grow: 1;
    }

    [data-theme="dark"] .testimonial-quote-text {
      color: #94a3b8;
    }

    .testimonial-stars-container {
      display: flex;
      gap: 5px;
      margin-bottom: 1.5rem;
      color: #f59e0b;
      background: #fff9eb;
      padding: 8px 15px;
      border-radius: 50px;
    }

    [data-theme="dark"] .testimonial-stars-container {
      background: rgba(245, 158, 11, 0.1);
    }

    .testimonial-author-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0070f3;
      margin-bottom: 0.25rem;
    }

    .testimonial-author-role {
      font-size: 0.95rem;
      color: #64748b;
      font-weight: 500;
    }

    /* Navigation Arrows */
    .slider-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      color: #64748b;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .slider-nav-btn:hover {
      background: #0070f3;
      color: #ffffff;
      border-color: #0070f3;
      transform: translateY(-50%) scale(1.1);
    }

    .slider-prev {
      left: 10px;
    }

    .slider-next {
      right: 10px;
    }

    /* Indicator dot above the slider */
    .slider-top-indicator {
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .slider-indicator-dot {
      width: 12px;
      height: 12px;
      background: #0070f3;
      border-radius: 50%;
      opacity: 0.3;
      transition: all 0.3s ease;
    }

    @media (max-width: 1024px) {
      .testimonial-card-wrapper {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 768px) {
      .testimonial-card-wrapper {
        flex: 0 0 100%;
        padding: 1.5rem;
        /* Reduced for tablet */
      }

      .testimonial-carousel-container {
        padding: 0;
        /* Remove padding to simplify centering math on mobile */
        width: 100%;
        max-width: 100%;
      }

      .slider-nav-btn {
        display: flex;
        /* Re-enable buttons */
        top: auto;
        bottom: -60px;
        /* Move below the cards */
        transform: none;
        width: 45px;
        height: 45px;
      }

      .slider-nav-btn:hover {
        transform: scale(1.1);
      }

      .slider-prev {
        left: calc(50% - 60px);
      }

      .slider-next {
        right: calc(50% - 60px);
      }

      .testimonial-section-wrapper {
        padding-bottom: 80px;
        /* Space for buttons */
      }
    }

    /* Target specific dots or swipe indicator */
    .mobile-swipe-hint {
      display: none;
      text-align: center;
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: 1rem;
      opacity: 0.6;
    }

    @media (max-width: 768px) {
      .mobile-swipe-hint {
        display: block;
      }
    }

    /* Vertical Phone Mode Fix */
    @media (max-width: 480px) {

      /* Disable 3D to ensure text clarity */
      .testimonial-carousel-container {
        perspective: none !important;
      }

      .testimonial-slider {
        transform-style: flat !important;
      }

      .testimonial-card-wrapper {
        padding: 0.5rem;
        /* Drastically reduced to prevent cut-off on small screens */
      }

      .testimonial-new-card {
        padding: 1.5rem;
        /* Smaller inner padding */
      }

      .testimonial-quote-text {
        font-size: 0.95rem;
        /* Smaller text for compact layout */
        margin-bottom: 1.5rem;
      }

      .testimonial-avatar-img {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
      }

      .testimonial-themed-section {
        padding-top: 30px;
      }
    }

    @media (max-width: 768px) {
      .testimonial-card {
        padding: 2rem 1.5rem;
      }

      .quote-mark {
        font-size: 3rem;
        top: 1rem;
        left: 1rem;
      }

      .testimonial-text {
        font-size: 1rem;
      }

      .testimonial-carousel {
        padding: 0 45px;
        margin: 2rem auto;
      }

      .carousel-nav {
        width: 40px;
        height: 40px;
      }

      .carousel-prev {
        left: 5px;
      }

      .carousel-next {
        right: 5px;
      }
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: rotate(10deg) scale(1.1);
    }

    .service-card h3 {
      font-family: 'Gill Sans', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1.25rem;
    }

    .service-card p {
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 1.05rem;
    }

    .section-subtitle {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 1.35rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    @media (max-width: 768px) {
      .section-divider {
        padding-top: 80px;
        padding-bottom: 60px;
      }

      .wave-divider svg {
        height: 60px;
      }
    }

    @media (max-width: 1050px) {
      .main-header {
        width: 80% !important;
      }
    }

    @media (max-width: 950px) {
      .main-header {
        width: 92%;
        grid-template-columns: 1fr auto auto;
        gap: 15px;
        padding: 10px 20px;
        align-items: center;
      }

      .main-header>div:nth-child(2),
      .main-header>div:nth-child(3) {
        display: none !important;
      }

      .hamburger-box {
        display: flex;
      }

      .right-side-header {
        display: none !important;
      }

      .theme-toggle {
        margin-left: 0;
        width: 40px;
        height: 40px;
      }
    }



    @media (max-width: 480px) {
      .main-header {
        width: 91.5%;
        padding: 5px 12px;
      }

      .safonas-logo {
        font-size: 1.8rem;
      }

      .hero-title {
        font-size: 1.8rem;
      }

      .hero-title span {
        font-size: 2rem;
        min-width: auto;
      }

      .hero-container::before {
        display: none !important;
      }

      .hero-section {
        align-items: center !important;
        padding-top: 60px !important;
        /* Standardized top padding for header space */
      }
    }

    /* Landscape mode adjustments for phones */
    @media (max-height: 500px) and (orientation: landscape) {
      .hero-section {
        min-height: 100vh !important;
        height: auto !important;
        padding: 60px 0 !important;
      }

      /* Hide floating label in landscape as it clutters the tight space */
      .hero-container::before {
        display: none !important;
      }

      .hero-title span {
        display: inline-block !important;
        margin: 0 10px !important;
        vertical-align: baseline;
        min-width: auto !important;
      }

      .hero-container {
        width: 90% !important;
        max-width: none !important;
        margin-top: 5vh !important;
      }

      /* Header Landscape Adjustment: Make it like desktop (no hamburger) */
      .main-header {
        width: 93.5% !important;
        grid-template-columns: auto 1fr auto !important;
        padding: 5px 20px !important;
        display: grid !important;
      }

      .main-header>div:nth-child(2),
      .main-header>div:last-child {
        display: none !important;
      }

      /* Force display of the navigation links (3rd child) */
      .main-header>div:nth-child(3).right-side-header {
        display: flex !important;
        gap: 1.5rem !important;
        justify-content: center !important;
        align-items: center !important;
      }

      .header-option {
        font-size: 0.9rem !important;
        opacity: 1 !important;
        animation: none !important;
        padding: 5px 10px !important;
      }

      .contact-btn {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
      }

      .safonas-logo {
        font-size: 1.5rem !important;
      }

      .hero-title {
        font-size: 1.8rem !important;
      }

      .hero-description {
        width: 50% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 1rem !important;
        line-height: 1.4 !important;
      }

      /* Center the third feature card in 2-column grid */
      .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .features-grid .feature-card:nth-child(3) {
        grid-column: 1 / span 2 !important;
        justify-self: center !important;
        max-width: 500px !important;
        width: 100% !important;
      }

      /* Center the fourth metric card in landscape */
      .metrics-grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }

      .metrics-grid .metric-card:nth-child(4) {
        grid-column: 1 / span 3 !important;
        justify-self: center !important;
        max-width: 300px !important;
        width: 100% !important;
      }
    }

    /* Preloader Styles */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--bg-primary);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .loader-content {
      width: 300px;
      height: 300px;
      position: relative;
    }

    .loader-text {
      margin-top: 20px;
      font-family: 'Gill Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: #6366f1;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: pulse 1.5s infinite ease-in-out;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 0.5;
      }

      50% {
        opacity: 1;
      }
    }

    /* Sparrow AI Chatbot Styles */
    /* Floating Chatbot Widget Styles */
    .chatbot-floating-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 6000;
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      gap: 20px;
      pointer-events: none;
    }

    .chatbot-widget {
      width: 400px;
      max-width: calc(100vw - 120px);
      height: 550px;
      max-height: calc(100vh - 100px);
      background: #ffffff;
      /* backdrop-filter: blur(25px) saturate(210%); - Removed for solid opacity */
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
      transform: translateX(40px) scale(0.9);
      opacity: 0;
      pointer-events: none;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: flex;
      flex-direction: column;
    }

    .chatbot-widget.active {
      transform: translateX(0) scale(1);
      opacity: 1;
      pointer-events: auto;
    }

    [data-theme="dark"] .chatbot-widget {
      background: #1e293b;
      /* backdrop-filter: blur(25px) saturate(200%); - Removed for solid opacity */
      border-color: var(--border-color);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }

    .chatbot-toggle-btn {
      width: 90px;
      height: 90px;
      background: transparent;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.8rem;
      cursor: pointer;
      /* Removed box-shadow for cleaner floating character look */
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      pointer-events: auto;
    }

    .chatbot-toggle-btn:hover {
      transform: scale(1.25) rotate(5deg);
      /* Subtle glow on hover instead of box shadow block */
      filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4));
    }

    .chatbot-toggle-btn i {
      transition: all 0.3s ease;
      position: absolute;
    }

    .chatbot-toggle-btn.active .fa-robot {
      transform: rotate(90deg) scale(0);
      opacity: 0;
    }

    .chatbot-toggle-btn .fa-times {
      transform: rotate(-90deg) scale(0);
      opacity: 0;
    }

    .chatbot-toggle-btn.active .fa-times {
      transform: rotate(0) scale(1);
      opacity: 1;
      color: #334155;
    }

    [data-theme="dark"] .chatbot-toggle-btn.active .fa-times {
      color: white;
    }

    /* Robot Lottie Styles */
    .toggle-lottie {
      position: absolute;
      width: 140%;
      height: 140%;
      top: -20%;
      left: -20%;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .chatbot-toggle-btn .fa-robot {
      display: none;
    }

    .chatbot-toggle-btn.active .toggle-lottie {
      transform: scale(0);
      opacity: 0;
    }

    .chatbot-hero-header {
      padding: 1.25rem;
      background: transparent;
      border-bottom: 1px solid rgba(99, 102, 241, 0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    [data-theme="dark"] .chatbot-hero-header {
      background: transparent;
      border-bottom-color: var(--border-color);
    }

    .chatbot-avatar-small {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.3rem;
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    }

    .chatbot-hero-messages {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(99, 102, 241, 0.3) transparent;
      text-align: left;
    }

    .chatbot-hero-messages::-webkit-scrollbar {
      width: 6px;
    }

    .chatbot-hero-messages::-webkit-scrollbar-thumb {
      background: rgba(99, 102, 241, 0.3);
      border-radius: 10px;
    }

    [data-theme="dark"] .chatbot-hero-messages::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.1);
    }

    .message {
      max-width: 80%;
      padding: 0.9rem 1.3rem;
      border-radius: 18px;
      font-size: 0.95rem;
      line-height: 1.6;
      position: relative;
      animation: messageAppear 0.3s ease-out;
      margin-bottom: 5px;
      /* Space for timestamp overlap prevention */
    }

    .rtl-content {
      direction: rtl;
      text-align: right;
    }

    @keyframes messageAppear {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .bot-message {
      align-self: flex-start;
      background: rgba(99, 102, 241, 0.1);
      color: var(--text-primary);
      border-bottom-left-radius: 4px;
    }

    [data-theme="dark"] .bot-message {
      background: rgba(51, 65, 85, 0.5);
      /* Slate-based bubble */
      color: var(--text-primary);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .user-message {
      align-self: flex-end;
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      color: white;
      border-bottom-right-radius: 4px;
    }

    .message-time {
      font-size: 0.65rem;
      opacity: 0.7;
      position: absolute;
      bottom: -18px;
      white-space: nowrap;
      color: var(--text-secondary);
    }

    .user-message .message-time {
      right: 2px;
    }

    .bot-message .message-time {
      left: 2px;
    }

    /* Chat Date Separator */
    .chat-date-separator {
      display: flex;
      align-items: center;
      text-align: center;
      margin: 1.5rem 0 1rem;
      width: 100%;
    }

    .chat-date-separator::before,
    .chat-date-separator::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    [data-theme="dark"] .chat-date-separator::before,
    [data-theme="dark"] .chat-date-separator::after {
      border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .chat-date-separator span {
      padding: 0 0.75rem;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-secondary);
      opacity: 0.8;
    }

    .chatbot-hero-input {
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.5);
      border-top: 1px solid rgba(99, 102, 241, 0.1);
      display: flex;
      gap: 0.75rem;
    }

    [data-theme="dark"] .chatbot-hero-input {
      background: rgba(15, 23, 42, 0.3);
      border-top-color: var(--border-color);
    }

    .chatbot-input {
      flex: 1;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 14px;
      padding: 0.8rem 1.1rem;
      color: var(--text-primary);
      font-size: 0.95rem;
      outline: none;
      transition: all 0.3s ease;
    }

    [data-theme="dark"] .chatbot-input {
      background: rgba(15, 23, 42, 0.6);
      border-color: var(--border-color);
      color: var(--text-primary);
    }

    /* Fix Chatbot Autocomplete Styling */
    .chatbot-input:-webkit-autofill,
    .chatbot-input:-webkit-autofill:hover,
    .chatbot-input:-webkit-autofill:focus {
      -webkit-text-fill-color: var(--text-primary);
      -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
      transition: background-color 5000s ease-in-out 0s;
    }

    [data-theme="dark"] .chatbot-input:-webkit-autofill,
    [data-theme="dark"] .chatbot-input:-webkit-autofill:hover,
    [data-theme="dark"] .chatbot-input:-webkit-autofill:focus {
      -webkit-box-shadow: 0 0 0px 1000px #0f172a inset;
    }


    .chatbot-input:focus {
      border-color: #6366f1;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    .chatbot-send-btn {
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      color: white;
      border: none;
      border-radius: 14px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .chatbot-send-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    }

    .typing-indicator {
      display: flex;
      gap: 4px;
      padding: 8px 12px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 12px;
      width: fit-content;
    }

    .typing-dot {
      width: 6px;
      height: 6px;
      background: #6366f1;
      border-radius: 50%;
      animation: typingPulse 1.4s infinite ease-in-out;
    }

    .typing-dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes typingPulse {

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

      30% {
        transform: translateY(-4px);
        opacity: 1;
      }
    }

    @media (max-width: 480px) {
      .chatbot-floating-container {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
      }

      .chatbot-widget {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        height: 500px;
        transform: translateY(30px) scale(0.95);
      }

      .chatbot-widget.active {
        transform: translateY(0) scale(1);
      }

      .chatbot-toggle-btn {
        width: 100px;
        height: 100px;
        font-size: 2rem;
      }
    }

    /* CTA Section - Ready to Start */
    .cta-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .cta-container {
      width: 100%;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
    }

    .cta-glass-card {
      background: #ffffff;
      /* Solid white for maximum clarity in light mode */
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(99, 102, 241, 0.2);
      padding: 80px 40px;
      border-radius: 40px;
      box-shadow: 0 40px 80px rgba(99, 102, 241, 0.12);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    [data-theme="dark"] .cta-glass-card {
      background: rgba(15, 23, 42, 0.7);
      border-color: rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    /* Decorative Orb - Only visible in dark mode for theme depth */
    [data-theme="dark"] .cta-glass-card::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }



    .cta-glass-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
      transform: skewX(-25deg);
      animation: shineGlass 6s infinite;
      pointer-events: none;
    }

    @keyframes shineGlass {
      0% {
        left: -150%;
      }

      20% {
        left: 150%;
      }

      100% {
        left: 150%;
      }
    }

    .cta-title {
      font-size: clamp(2.2rem, 6vw, 3.8rem);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      letter-spacing: -1px;
    }

    .cta-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      color: var(--text-secondary);
      margin-bottom: 3rem;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn-primary {
      background: linear-gradient(90deg, #0070f3, #3b82f6);
      color: white;
      padding: 18px 40px;
      border-radius: 16px;
      font-weight: 700;
      font-size: 1.15rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 25px rgba(0, 112, 243, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-btn-primary:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0, 112, 243, 0.4);
      color: white;
    }

    .cta-btn-secondary {
      background: transparent;
      color: var(--accent);
      padding: 18px 40px;
      border-radius: 16px;
      font-weight: 700;
      font-size: 1.15rem;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }


    .cta-btn-secondary:hover {
      background: var(--nav-hover-bg);
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-5px);
    }


    /* Mobile adjustments for CTA */
    @media (max-width: 768px) {
      .section-content {
        width: 100%;
        /* Go full width on mobile for centering safety */
        padding: 0 15px;
        box-sizing: border-box;
      }

      .cta-section {
        padding: 20px 0 60px 0;
      }

      .cta-wrapper-in-section {
        margin-top: 40px;
        padding: 0;
        display: block;
        /* Remove flex centering to avoid weird offsets */
      }

      .cta-glass-card {
        padding: 35px 20px;
        border-radius: 20px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
      }

      .cta-title {
        font-size: 1.8rem;
        /* Slightly smaller for better fit */
        margin-bottom: 0.8rem;
      }

      .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
      }

      .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
      }

      .cta-btn-primary,
      .cta-btn-secondary {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
        box-sizing: border-box;
      }
    }

    .cta-wrapper-in-section {
      margin-top: 100px;
      padding-bottom: 60px;
      display: flex;
      justify-content: center;
    }

    /* --- NEW: Contact Premium Styling --- */
    .contact-section-new {
      padding: 120px 0;
      background: var(--bg-primary);
      position: relative;
      overflow: hidden;
    }

    .contact-section-new .hero-container::before {
      display: none !important;
    }

    .contact-grid {
      display: flex;
      justify-content: center;
      align-items: start;
    }



    @media (max-width: 991px) {
      .contact-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
      }
    }

    .contact-grid {
      border-radius: 25px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.225);
    }



    [data-theme="dark"] .contact-info-card {
      background: var(--card-bg);
      border-color: var(--border-color);
      box-shadow: none;
    }


    .contact-glass-form {
      background: #ffffff;
      /* Solid white for clarity in light mode */
      border: 1px solid rgba(99, 102, 241, 0.15);
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      /* Concentrated dark shadow for better pop */
      text-align: left;
    }


    /* Keep dark theme glass effect unchanged */
    [data-theme="dark"] .contact-glass-form {
      background: var(--card-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-color);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

    .form-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 30px;
      background: linear-gradient(90deg, #6366f1, #3b82f6);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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

    .form-label-new {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 8px;
      margin-left: 4px;
    }

    .error-message {
      display: none;
      color: #991b1b;
      font-size: 0.8rem;
      margin-top: 5px;
      margin-left: 4px;
      font-weight: 500;
    }

    .form-group-new.error .error-message {
      display: block;
    }

    .form-group-new.error .input-premium {
      border-color: #991b1b;
    }

    .input-premium {
      width: 100%;
      background: #f8fafc;
      /* Lighter background for better contrast in light mode */
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 14px 18px;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }

    [data-theme="dark"] .input-premium {
      background: rgba(255, 255, 255, 0.03);
    }

    .input-premium option {
      background-color: var(--card-bg);
      color: var(--text-primary);
    }

    /* Fix Autocomplete Styling */
    .input-premium:-webkit-autofill,
    .input-premium:-webkit-autofill:hover,
    .input-premium:-webkit-autofill:focus {
      -webkit-text-fill-color: var(--text-primary);
      -webkit-box-shadow: 0 0 0px 1000px var(--card-bg) inset;
      transition: background-color 5000s ease-in-out 0s;
    }

    .input-premium:focus {
      outline: none;
      border-color: var(--accent);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    }

    [data-theme="dark"] .input-premium:focus {
      background: rgba(255, 255, 255, 0.08);
    }


    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

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

      .contact-glass-form {
        padding: 25px;
      }
    }

    .btn-submit-premium {
      width: 100%;
      background: linear-gradient(90deg, #6366f1, #4f46e5);
      color: white;
      border: none;
      border-radius: 14px;
      padding: 16px;
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      margin-top: 10px;
    }

    .btn-submit-premium:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
      background: linear-gradient(90deg, #4f46e5, #4338ca);
    }

    .contact-icon-box {
      width: 32px;
      height: 32px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      flex-shrink: 0;
    }

    /* Radio Buttons Styling */
    .radio-group {
      display: flex;
      gap: 24px;
      margin-bottom: 25px;
      background: rgba(255, 255, 255, 0.02);
      padding: 15px;
      border-radius: 16px;
      border: 1px solid var(--border-color);
    }

    .radio-option {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      padding: 8px 16px;
      border-radius: 10px;
      transition: all 0.2s ease;
    }

    /* ONLY PHONE VERTICAL MODE - NO DESKTOP OR LANDSCAPE EFFECTS */
    @media (max-width: 450px) and (orientation: portrait) {
      .g-recaptcha {
        transform: scale(0.8);
        transform-origin: center;
        margin: 10px auto;
      }

      .loader-content {
        width: 200px !important;
        height: 200px !important;
      }

      .loader-text {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
        width: 80% !important;
        text-align: center !important;
        margin-top: 10px !important;
        line-height: 1.4 !important;
      }

      /* Contact Section Phone Adjustments */
      .contact-section-new .hero-container {
        width: 80% !important;
      }

      .contact-grid {
        width: 100% !important;
      }

      .contact-glass-form {
        padding: 20px 15px !important;
        width: 100% !important;
        border-radius: 20px !important;
      }

      .form-title {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
      }

      .radio-group {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 12px !important;
      }

      .radio-option {
        width: 100% !important;
        padding: 8px 12px !important;
      }
    }



    .radio-option:hover {
      background: rgba(99, 102, 241, 0.05);
    }

    .radio-option input[type="radio"] {
      accent-color: var(--accent);
      width: 18px;
      height: 18px;
    }

    /* Success Popup */
    .success-popup {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #10b981;
      color: white;
      padding: 20px 30px;
      border-radius: 16px;
      box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
      display: flex;
      align-items: center;
      gap: 15px;
      transform: translateY(150%);
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 10000;
    }

    .success-popup.active {
      transform: translateY(0);
    }

    .success-icon {
      width: 30px;
      height: 30px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    /* FAQ Section Styles - Premium Accordion */
    .faq-new-section {
      padding: 100px 0;
      background: var(--bg-primary);
      position: relative;
      z-index: 10;
    }

    .faq-container {
      width: 85%;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .faq-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 20px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 100px;
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(99, 102, 241, 0.2);
    }

    .faq-title {
      font-family: 'Gill Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .faq-subtitle {
      color: var(--text-secondary);
      font-size: 1.15rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .faq-item-new {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item-new.animate-in {
      opacity: 0;
      transform: translateY(30px) rotate(0deg) scale(1);
      transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-item-new.animate-in.show {
      opacity: 1;
      transform: translateY(0) rotate(0deg) scale(1);
    }

    .faq-item-new:hover {
      border-color: var(--accent);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transform: translateY(-2px);
    }

    .faq-trigger {
      width: 100%;
      padding: 1.75rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      outline: none;
    }

    .faq-question-text {
      font-family: 'Gill Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      padding-right: 2rem;
      transition: color 0.3s ease;
    }

    .faq-icon-wrapper {
      width: 36px;
      height: 36px;
      background: rgba(99, 102, 241, 0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .faq-item-new.active {
      border-color: var(--accent);
      background: var(--bg-primary);
      box-shadow: 0 15px 45px rgba(99, 102, 241, 0.08);
    }

    .faq-item-new.active .faq-question-text {
      color: var(--accent);
    }

    .faq-item-new.active .faq-icon-wrapper {
      background: var(--accent);
      color: white;
      transform: rotate(180deg);
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      background: transparent;
    }

    .faq-item-new.active .faq-content {
      max-height: 500px;
      /* Adjust as needed */
    }

    .faq-answer-inner {
      padding: 0 2rem 2rem 2rem;
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 1.1rem;
    }

    [data-theme="dark"] .faq-item-new {
      background: rgba(30, 41, 59, 0.3);
    }

    [data-theme="dark"] .faq-item-new.active {
      background: rgba(30, 41, 59, 0.6);
    }

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

      .faq-trigger {
        padding: 1.25rem 1.5rem;
      }

      .faq-question-text {
        font-size: 1.1rem;
      }

      .faq-answer-inner {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
      }
    }

    /* Blog Section Styles */
    .blog-new-section {
      padding: 100px 0;
      background: var(--bg-tertiary);
      position: relative;
      z-index: 10;
    }

    [data-theme="dark"] .blog-new-section {
      background: #0c1220;
    }

    .blog-container {
      width: 85%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .blog-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .blog-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 20px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 100px;
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(99, 102, 241, 0.2);
    }

    .blog-title {
      font-family: 'Gill Sans', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .blog-subtitle {
      color: var(--text-secondary);
      font-size: 1.15rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 3.5rem;
    }

    .blog-card-new {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 40px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(0, 0, 0, 0.03);
    }

    [data-theme="dark"] .blog-card-new {
      background: #0b1120;
      /* Darker than the dark bg-secondary (#1e293b) */
      border-color: rgba(255, 255, 255, 0.03);
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3), 0 15px 50px rgba(0, 0, 0, 0.2);
    }

    .blog-card-new:hover {
      transform: translateY(-10px);
      border-color: var(--accent);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    [data-theme="dark"] .blog-card-new:hover {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .blog-card-image {
      height: 240px;
      position: relative;
      background: rgba(99, 96, 96, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    [data-theme="dark"] .blog-card-image {
      background: rgba(99, 102, 241, 0.08);
    }

    .blog-card-new:hover .blog-card-image {
      background: rgba(99, 102, 241, 0.08);
    }

    /* Decorative background element for the image area */
    .blog-card-image::before {
      content: '';
      position: absolute;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
      opacity: 0.1;
      filter: blur(20px);
      z-index: 1;
      transition: all 0.5s ease;
    }

    .blog-card-new:hover .blog-card-image::before {
      opacity: 0.2;
      transform: scale(1.5);
    }

    .blog-card-image i {
      font-size: 3.5rem;
      /* Reduced size as requested */
      color: var(--accent);
      filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.15));
      z-index: 2;
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .blog-card-new:hover .blog-card-image i {
      transform: scale(1.1) rotate(5deg);
      filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.3));
    }

    .blog-category-tag {
      position: absolute;
      top: 1.5rem;
      left: 1.5rem;
      padding: 8px 18px;
      background: var(--bg-primary);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--border-color);
      border-radius: 50px;
      color: var(--accent);
      font-size: 0.8rem;
      font-weight: 700;
      z-index: 3;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .blog-card-new:hover .blog-category-tag {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
      transform: translateX(5px);
    }

    .blog-card-content {
      padding: 3rem;
      /* Increased padding */
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      position: relative;
      z-index: 2;
    }

    .blog-card-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
      font-size: 0.8rem;
      /* Smaller font */
      color: var(--text-secondary);
      opacity: 0.6;
      /* More muted */
    }

    .blog-card-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .blog-card-title {
      font-family: 'Gill Sans', sans-serif;
      font-size: 1.8rem;
      /* Larger title */
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      line-height: 1.4;
      /* Increased line height */
      transition: all 0.3s ease;
    }

    .blog-card-new:hover .blog-card-title {
      color: var(--accent);
      transform: translateX(2px);
    }

    .blog-card-excerpt {
      color: #A0A8CC;
      /* User requested color */
      font-size: 1rem;
      /* Slightly smaller */
      line-height: 1.7;
      margin-bottom: 2.5rem;
      flex-grow: 1;
      opacity: 0.9;
    }

    .blog-card-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--accent);
      font-weight: 800;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      width: fit-content;
      position: relative;
    }

    .blog-card-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

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

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

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

    .blog-footer {
      text-align: center;
      margin-top: 4rem;
    }

    .blog-view-all {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      background: linear-gradient(90deg, var(--accent), #3b82f6);
      color: white;
      border-radius: 100px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
      transition: all 0.3s ease;
    }

    .blog-view-all:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    }

    /* Soften Blog Card Entrance Animation */
    .blog-card-new.animate-in {
      transform: translateY(20px) scale(1) rotate(0deg);
      opacity: 0;
      transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .blog-card-new.animate-in.show {
      transform: translateY(0) scale(1) rotate(0deg);
      opacity: 1;
    }

    /* Footer Styles */
    .footer-new {
      padding: 100px 0 50px;
      background: var(--bg-primary);
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--border-color);
    }

    [data-theme="dark"] .footer-new {
      background: #0f172a;
    }

    .footer-container {
      width: 85%;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 4rem;
      margin-bottom: 80px;
    }

    .footer-brand .logo {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 1.5rem;
    }

    .footer-brand p {
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 1.05rem;
    }

    .footer-column h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 2rem;
    }

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

    .footer-links li {
      margin-bottom: 1.25rem;
    }

    .footer-links a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
    }

    .footer-links a i {
      font-size: 0.7rem;
      color: var(--accent);
      opacity: 0;
      transition: all 0.3s ease;
      transform: translateX(-5px);
    }

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

    .footer-links a:hover i {
      opacity: 1;
      transform: translateX(0);
    }

    .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid var(--border-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-copyright {
      color: var(--text-secondary);
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .status-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: #22c55e;
      background: rgba(34, 197, 94, 0.1);
      padding: 4px 12px;
      border-radius: 50px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      position: relative;
    }

    .status-dot::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      border: 2px solid #22c55e;
      animation: pulse-status 2s infinite;
    }

    @keyframes pulse-status {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      100% {
        transform: scale(2.5);
        opacity: 0;
      }
    }

    .footer-legal-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-legal-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

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

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
      }

      .footer-copyright {
        flex-direction: column;
        gap: 1rem;
      }

      .footer-legal-links {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .blog-new-section {
        padding: 60px 0;
      }

      .blog-grid {
        grid-template-columns: 1fr;
      }

      .blog-card-image {
        height: 180px;
      }
    }

    /* --- Services Specific Styles --- */
    .services-grid-section {
      padding: 100px 0;
      background: var(--bg-tertiary);
      position: relative;
    }

    [data-theme="dark"] .services-grid-section {
      background: #0c1220;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
      width: 85%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 24px;
      padding: 2.5rem;
      text-align: left;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--accent);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      width: 64px;
      height: 64px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      color: var(--accent);
      font-size: 1.75rem;
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
      background: var(--accent);
      color: white;
      transform: rotate(5deg);
    }

    .service-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .service-card p {
      color: var(--text-secondary);
      line-height: 1.7;
      font-size: 1.05rem;
    }

    /* Process Section */
    .process-section {
      padding: 100px 0;
      background: var(--bg-primary);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      width: 85%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .process-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-color);
      padding: 2rem;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .process-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
    }

    [data-theme="dark"] .process-card {
      background: var(--card-bg);
    }