
        :root {
            --dark-blue: #0a192f;
            --navy: #112240;
            --light-navy: #1e385b;
            --lightest-navy: #2a4a7a;
            --slate: #8892b0;
            --light-slate: #a8b2d1;
            --lightest-slate: #ccd6f6;
            --white: #ffffff;
            --off-white: #f0f5ff;
            --accent: #5e81ff;
            --accent-light: #7d9dff;
            --accent-dark: #4a6de5;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --shadow: 0 10px 30px rgba(10, 25, 47, 0.15);
            --card-shadow: 0 15px 40px rgba(10, 25, 47, 0.2);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
        }

        .contact-container {
            display: flex;
            gap: clamp(30px, 8vw, 60px);
            flex-wrap: wrap;
        }

        .contact-info {
            flex: 1 1 400px;
            min-width: 300px;
            transform: translateX(-50px);
            opacity: 0;
        }

        .contact-info.animate {
            transform: translateX(0);
            opacity: 1;
        }

        .contact-info h2 {
            font-size: clamp(32px, 6vw, 48px);
            margin-bottom: clamp(20px, 4vw, 30px);
        }

        .contact-info p {
            font-size: clamp(16px, 3vw, 18px);
            color: var(--light-slate);
            margin-bottom: clamp(30px, 5vw, 40px);
            max-width: 500px;
            line-height: 1.6;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: clamp(20px, 4vw, 25px);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--white);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            transform: rotate(15deg) scale(1.1);
            background: var(--accent-dark);
        }

        .contact-details h3 {
            color: var(--white);
            margin-bottom: 5px;
            font-size: 20px;
        }

        .contact-details p,
        .contact-details a {
            color: var(--light-slate);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-details a:hover {
            color: var(--accent);
        }

        .contact-form {
            flex: 1;
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transform: translateX(50px);
            opacity: 0;
        }

        .contact-form.animate {
            transform: translateX(0);
            opacity: 1;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }

        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(94, 129, 255, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(94, 129, 255, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(94, 129, 255, 0.5);
        }


        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body,
        html {
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-blue);
            color: var(--light-slate);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            transition: var(--transition);
        }

        body.header-sticky {
            padding-top: 90px;
        }

        .container {
            max-width: 95%;
            width: 100%;
            margin: 0 auto;
            padding: 0 clamp(20px, 3vw, 60px);
        }

        section {
            padding: clamp(40px, 1vw, 100px) 0;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--white);
        }

        /* Header & Navigation */
        header {
            background-color: transparent;
            padding: 20px 0;
            position: relative;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        header.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(15px);
            box-shadow: 0 2px 20px rgba(10, 25, 47, 0.3);
        }

        header.scrolled {
            background-color: rgba(10, 25, 47, 0.95);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(10, 25, 47, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .nav-links {
            display: flex;
            align-items: center;
            /* Aligns items vertically */
            gap: 20px;
            /* Optional: space between nav items */
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            display: flex;
            align-items: center;
            /* Ensures button or link inside li is centered */
        }

        .nav-links li .nav-btn {
            padding: 10px 25px;
            font-size: 16px;
            background-color: var(--accent);
            /* Change to your accent color */
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--white);
            /* or your desired color */
            font-size: 16px;
        }


        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1001;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .logo:hover img {
            transform: rotate(360deg);
        }

        .logo-text {
            color: var(--white);
            font-size: clamp(20px, 4vw, 24px);
            font-weight: 700;
        }

        .logo-text span {
            color: var(--accent);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 3px 0;
            transition: var(--transition);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: clamp(16px, 2.5vw, 18px);
            font-weight: 500;
            padding: 2px 0;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btn {
            background: var(--accent);
            border: 2px solid var(--accent);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 30px;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-btn:hover {
            background: transparent;
            color: var(--accent);
            box-shadow: 0 5px 15px rgba(94, 129, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
            overflow: hidden;
            position: relative;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: clamp(30px, 8vw, 60px);
            flex-wrap: wrap;
        }

        .hero-text {
            flex: 1 1 400px;
            min-width: 300px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text h1 {
            font-size: clamp(32px, 6vw, 56px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: clamp(20px, 4vw, 25px);
        }

        .hero-text h1 span {
            color: var(--accent);
            position: relative;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
        }

        .hero-text h1 span:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .hero-text p {
            font-size: clamp(16px, 3vw, 20px);
            color: var(--light-slate);
            margin-bottom: clamp(30px, 5vw, 40px);
            max-width: 600px;
            line-height: 1.6;
        }

        .hero-btns {
            display: flex;
            gap: clamp(15px, 3vw, 20px);
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            padding: clamp(12px, 2.5vw, 15px) clamp(25px, 5vw, 35px);
            border-radius: 30px;
            font-size: clamp(16px, 2.5vw, 18px);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(94, 129, 255, 0.4);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(94, 129, 255, 0.5);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: clamp(12px, 2.5vw, 15px) clamp(25px, 5vw, 35px);
            border-radius: 30px;
            font-size: clamp(16px, 2.5vw, 18px);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline:hover {
            background: rgba(94, 129, 255, 0.1);
            transform: translateY(-3px);
        }

        .hero-image {
            flex: 1 1 400px;
            text-align: center;
            position: relative;
            min-width: 300px;
            animation: fadeIn 1s ease-out;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
            transition: transform 0.5s ease;
        }

        .hero-image img:hover {
            transform: scale(1.05);
        }

        .shape {
            position: absolute;
            z-index: -1;
        }

        .shape-1 {
            top: -20px;
            right: -20px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), transparent);
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .shape-2 {
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            border-radius: 30px;
            background: linear-gradient(45deg, transparent, var(--accent));
            opacity: 0.2;
            transform: rotate(45deg);
            animation: float 8s ease-in-out infinite;
        }

        .shape-3 {
            top: 40%;
            right: 10%;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-light), transparent);
            opacity: 0.15;
            animation: float 7s ease-in-out infinite;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 30px auto;
            padding: 0 20px;
        }

        .jtitle-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto clamp(40px, 8vw, 70px);
            padding: 0 20px;
        }

        .section-header h2 {
            font-size: clamp(32px, 6vw, 48px);
            color: var(--white);
            margin-bottom: clamp(15px, 3vw, 20px);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(60px, 10vw, 80px);
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-header p {
            font-size: clamp(16px, 3vw, 20px);
            color: var(--light-slate);
            margin-top: clamp(20px, 4vw, 30px);
            line-height: 1.6;
        }

        .jtitle-container h2 {
            font-size: clamp(32px, 6vw, 48px);
            color: var(--navy);
            margin-bottom: clamp(15px, 3vw, 20px);
            position: relative;
            display: inline-block;
        }

        .jtitle-container h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(60px, 10vw, 80px);
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .jtitle-container p {
            font-size: clamp(16px, 3vw, 20px);
            color: var(--light-slate);
            margin-top: clamp(20px, 4vw, 30px);
            line-height: 1.6;
        }

        /*form css*/
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }

        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(94, 129, 255, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(94, 129, 255, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            justify-content: center;
        }

        .submit-btn:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(94, 129, 255, 0.5);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-loader {
            display: none;
        }

        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        
/* Testimonials Section */
    .testimonials {
      background-color: var(--off-white);
    }

    /* Mobile-specific container for testimonials */
    .testimonials .container {
      padding: 0 10px;
    }
    
    @media (min-width: 768px) {
      .testimonials .container {
        padding: 0 clamp(20px, 3vw, 60px);
      }
    }

    .testimonial-slider-wrapper {
      position: relative;
      overflow: hidden;
      padding: 30px 10px; /* More mobile-friendly padding */
      width: 100%;
    }
    
    .testimonial-slider-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 20px; /* Reduced gap for mobile */
      width: max-content; /* Allow track to expand as needed */
      align-items: stretch; /* Ensure all cards have same height */
    }
    
    .testimonial-slider-wrapper .testimonial-card {
      flex: 0 0 auto; /* Don't grow or shrink */
      box-sizing: border-box;
      min-height: 300px;
      width: calc(100vw - 80px); /* Full viewport width minus padding */
      max-width: calc(100vw - 80px);
      background: var(--white);
      border-radius: 15px;
      padding: 25px 20px;
      box-shadow: var(--shadow);
      position: relative;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transform: none; /* Remove initial transform */
      opacity: 1; /* Ensure visibility */
      margin: 0; /* Remove any default margins */
    }
    
    /* Ensure testimonial content fills the card */
    .testimonial-slider-wrapper .testimonial-card .testimonial-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .testimonial-slider-wrapper .testimonial-card .testimonial-text {
      flex: 1;
      font-size: 16px;
      color: var(--slate);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    
    /* Ensure author avatars stay circular in slider */
    .testimonial-slider-wrapper .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50% !important;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      font-weight: bold;
      flex-shrink: 0; /* Prevent avatar from shrinking */
    }
    
    /* Arrow Buttons */
    .testimonial-prev,
    .testimonial-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(94, 129, 255, 0.9);
      color: var(--white);
      border: none;
      width: 40px; /* Smaller on mobile */
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: -1;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }
    
    .testimonial-prev:hover,
    .testimonial-next:hover {
      background: var(--accent-light);
      transform: translateY(-50%) scale(1.1);
    }
    
    .testimonial-prev {
      left: -20px; /* Position outside the slider area */
    }
    
    .testimonial-next {
      right: -20px; /* Position outside the slider area */
    }
    
    /* Dots navigation for all devices */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      padding: 0 20px;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(94, 129, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .slider-dot:hover {
      background: rgba(94, 129, 255, 0.5);
      transform: scale(1.1);
    }
    
    .slider-dot.active {
      background: var(--accent);
      transform: scale(1.2);
      border-color: rgba(94, 129, 255, 0.2);
    }
    
    /* Tablet styles */
    @media (min-width: 768px) {
      .testimonial-slider-wrapper {
        padding: 50px 60px; /* Add more side padding for arrows */
      }
      
      .testimonial-slider-track {
        gap: 30px; /* Restore normal gap on larger screens */
      }
      
      .testimonial-slider-wrapper .testimonial-card {
        width: calc(50% - 15px); /* Two cards on tablet */
        max-width: calc(50% - 15px);
        padding: 35px 25px; /* Better padding for tablet */
      }
      
      .testimonial-slider-wrapper .testimonial-card .testimonial-text {
        font-size: 17px;
      }
      
      /* Ensure avatar stays circular on tablet */
      .testimonial-slider-wrapper .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 22px;
      }
      
      .testimonial-prev {
        left: 10px; /* Position with proper spacing */
        width: 50px;
        height: 50px;
        font-size: 18px;
      }
      
      .testimonial-next {
        right: 10px; /* Position with proper spacing */
        width: 50px;
        height: 50px;
        font-size: 18px;
      }
      
      /* Enhanced dots for tablet */
      .slider-dots {
        margin-top: 25px;
        gap: 12px;
      }
      
      .slider-dot {
        width: 14px;
        height: 14px;
      }
    }
    
    /* Desktop styles - Two cards */
    @media (min-width: 992px) {
      .testimonial-slider-wrapper {
        padding: 50px 70px; /* Adjusted padding for two cards */
      }
      
      .testimonial-slider-wrapper .testimonial-card {
        width: calc(50% - 15px); /* Two cards on desktop */
        max-width: calc(50% - 15px);
        padding: 40px 30px; /* Full padding for desktop */
      }
      
      .testimonial-slider-wrapper .testimonial-card .testimonial-text {
        font-size: 18px;
      }
      
      /* Ensure avatar stays circular on desktop */
      .testimonial-slider-wrapper .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
      }
      
      .testimonial-prev {
        left: 15px; /* Better positioning for two cards */
        width: 55px;
        height: 55px;
        font-size: 20px;
      }
      
      .testimonial-next {
        right: 15px; /* Better positioning for two cards */
        width: 55px;
        height: 55px;
        font-size: 20px;
      }
      
      /* Enhanced dots for desktop */
      .slider-dots {
        margin-top: 30px;
        gap: 15px;
      }
      
      .slider-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
      }
      
      .slider-dot:hover {
        transform: scale(1.15);
      }
      
      .slider-dot.active {
        transform: scale(1.3);
      }
    }
    
    /* Large Desktop styles - Three cards */
    @media (min-width: 1300px) {
      .testimonial-slider-wrapper {
        padding: 50px 80px; /* More padding for three cards */
      }
      
      .testimonial-slider-wrapper .testimonial-card {
        width: calc(33.333% - 20px); /* Three cards on large desktop */
        max-width: calc(33.333% - 20px);
      }
      
      .testimonial-prev {
        left: 20px; /* Better positioning for three cards */
      }
      
      .testimonial-next {
        right: 20px; /* Better positioning for three cards */
      }
    }


    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 15px;
      padding: 40px 30px;
      box-shadow: var(--shadow);
      position: relative;
      transition: var(--transition);
      transform: translateY(50px);
      opacity: 0;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
    }

    .testimonial-card.animate {
      transform: translateY(0);
      opacity: 1;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow);
    }

    .testimonial-card::before {
      content: "\201C";
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 80px;
      color: var(--accent);
      opacity: 0.1;
      font-family: Georgia, serif;
      line-height: 0.5;
    }

    .testimonial-rating {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .stars {
      display: flex;
      gap: 3px;
    }

    .stars .fas.fa-star {
      color: #fbbf24;
      font-size: 16px;
    }

    .google-logo {
      display: flex;
      align-items: center;
      gap: 1px;
      font-family: 'Product Sans', Arial, sans-serif;
      font-size: 16px;
      font-weight: 400;
    }

    .google-g {
      color: #4285f4;
      font-weight: 500;
    }

    .google-text {
      background: linear-gradient(90deg, #ea4335 0%, #fbbc05 25%, #34a853 50%, #4285f4 75%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 400;
    }

    .testimonial-text {
      font-size: 18px;
      color: var(--slate);
      margin-bottom: 25px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      font-weight: bold;
    }

    .author-info h4 {
      color: var(--navy);
      font-size: 20px;
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--slate);
      font-size: 16px;
    }

        /* frequently */
        .faql {
            text-align: center;
            max-width: 800px;
            margin: 0 auto clamp(40px, 8vw, 70px);
            padding: 0 20px;
        }

        .faql h2 {
            font-size: clamp(32px, 6vw, 48px);
            color: var(--navy);
            margin-bottom: clamp(15px, 3vw, 20px);
            position: relative;
            display: inline-block;
        }

        .faql h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(60px, 10vw, 80px);
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        faql p {
            font-size: clamp(16px, 3vw, 20px);
            color: var(--light-slate);
            margin-top: clamp(20px, 4vw, 30px);
            line-height: 1.6;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: clamp(30px, 4vw, 40px);
            padding: 0 0px;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: var(--light-navy);
            border-radius: 15px;
            padding: clamp(30px, 4vw, 40px);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
            border: 1px solid rgba(94, 129, 255, 0.1);
        }

        .service-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--card-shadow);
            background: var(--lightest-navy);
            border-color: rgba(94, 129, 255, 0.3);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(94, 129, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: var(--accent);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--accent);
            color: var(--white);
            transform: rotate(5deg) scale(1.1);
        }

        .service-content h3 {
            font-size: clamp(22px, 3.5vw, 26px);
            color: var(--white);
            margin-bottom: clamp(15px, 2vw, 20px);
        }

        .service-content p {
            color: var(--light-slate);
            margin-bottom: clamp(20px, 3vw, 25px);
            line-height: 1.7;
            font-size: clamp(14px, 2.5vw, 16px);
        }

        .service-features {
            margin-bottom: 25px;
        }

        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--light-slate);
            font-size: clamp(14px, 2.5vw, 16px);
        }

        .service-features li::before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
            flex-shrink: 0;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            gap: 8px;
            transition: var(--transition);
            font-size: clamp(14px, 2.5vw, 16px);
        }

        .service-link:hover {
            gap: 12px;
            color: var(--accent-light);
        }

        /* How It Works Section */
        .how-it-works {
            background: linear-gradient(50deg, var(--accent) 0%, var(--accent-dark) 0%);
            position: relative;
            overflow: hidden;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 30px;
            max-width: 1380px;
            margin: 0 auto;
        }

        .process-step {
            width: 100%;
            text-align: center;
            padding: 30px 20px;
            background: rgba(30, 56, 91, 0.5);
            border-radius: 15px;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
            border: 1px solid rgba(94, 129, 255, 0.1);
        }


        .process-step.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .process-step:hover {
            background: rgba(30, 56, 91, 0.8);
            transform: translateY(-10px);
            border-color: rgba(94, 129, 255, 0.3);
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .process-step:hover .step-number {
            transform: scale(1.2) rotate(10deg);
        }

        .process-step h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--white);
        }

        .process-step p {
            color: var(--light-slate);
            font-size: 16px;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            padding: clamp(29px, 1vw, 58px) 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: clamp(32px, 6vw, 48px);
            color: var(--white);
            margin-bottom: clamp(20px, 4vw, 30px);
        }

        .cta-section p {
            font-size: clamp(16px, 3vw, 20px);
            color: var(--lightest-slate);
            margin-bottom: clamp(30px, 5vw, 40px);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: clamp(15px, 3vw, 20px);
            flex-wrap: wrap;
        }

        .btn-light {
            background: var(--white);
            color: var(--accent);
            padding: clamp(12px, 2.5vw, 15px) clamp(25px, 5vw, 35px);
            border-radius: 30px;
            font-size: clamp(16px, 2.5vw, 18px);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(10, 25, 47, 0.2);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-light:hover {
            background: var(--off-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(10, 25, 47, 0.3);
        }

        .btn-outline-light {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
            padding: clamp(12px, 2.5vw, 15px) clamp(25px, 5vw, 35px);
            border-radius: 30px;
            font-size: clamp(16px, 2.5vw, 18px);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .cta-shape {
            position: absolute;
            z-index: 1;
        }

        .cta-shape-1 {
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: float 8s ease-in-out infinite;
        }

        .cta-shape-2 {
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(45deg);
            animation: float 10s ease-in-out infinite;
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--off-white);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }

        .faq-item.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .faq-item:hover {
            box-shadow: var(--card-shadow);
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 18px;
            font-weight: 600;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-icon {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: var(--slate);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Footer */
        footer {
            background: var(--navy);
            padding: 30px 0 0px;
            color: var(--light-slate);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: var(--white);
            font-size: 22px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .logo1 img {
            border-radius: 50%;
            cursor: pointer;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .footer-col p {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--light-slate);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-navy);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding: 15px;
            border-top: 1px solid var(--light-navy);
            font-size: 16px;
        }

        /* Marquee */
        .marquee {
            background: var(--accent);
            color: var(--white);
            padding: 10px 0;
            font-weight: 600;
            overflow: hidden;
        }

        .marquee-content {
            display: flex;
            animation: marquee 20s linear infinite;
        }

        .marquee-item {
            white-space: nowrap;
            padding: 0 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(94, 129, 255, 0.4);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent-light);
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .animate-on-scroll {
            transition: transform 0.8s ease-out, opacity 0.8s ease-out;
        }

        @media (max-width: 1200px) {

            /* Mobile Navigation */
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(10, 25, 47, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding-top: 100px;
                padding-left: 36px;
                text-align: left;
                gap: 30px;
                transition: left 0.4s ease;
                z-index: 1000;
            }



            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 24px;
                padding: 15px 0;
            }

            .nav-btn {
                margin-left: -10px;
                margin-top: 20px;
                padding: 15px 30px;
                font-size: 18px;
            }

        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
            .hero-text {
                margin-bottom: 40px;
            }

            .hero-btns {
                justify-content: center;
                flex-wrap: wrap;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                /* 2 columns for tablets */
            }

            /* Mobile Navigation */
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(10, 25, 47, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding-top: 100px;
                padding-left: 36px;
                text-align: left;
                gap: 30px;
                transition: left 0.4s ease;
                z-index: 1000;
            }


            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 24px;
                padding: 15px 0;
            }

            .nav-btn {
                margin-left: -10px;
                margin-top: 20px;
                padding: 15px 30px;
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 40px;
            }

            .hero-content {
                gap: 30px;
            }

            .hero-btns {
                gap: 12px;
            }

            .container {
                padding: 0 15px;
            }

            .process-steps {
                grid-template-columns: 1fr;
                /* 1 column for mobile */
            }

            /* Mobile Navigation */
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(10, 25, 47, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding-top: 100px;
                padding-left: 36px;
                text-align: left;
                gap: 30px;
                transition: left 0.4s ease;
                z-index: 1000;
            }


            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 24px;
                padding: 15px 0;
            }

            .nav-btn {
                margin-left: -10px;
                margin-top: 20px;
                padding: 15px 30px;
                font-size: 18px;
            }

            .cta-btns {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .btn-light,
            .btn-outline-light {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            /* Testimonials Mobile */
      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .testimonial-card {
        max-width: 400px;
        margin: 0 auto;
      }

        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .logo img {
                width: 35px;
                height: 35px;
            }

            .logo-text {
                font-size: 18px;
            }

            .hero {
                padding: 100px 0 40px;
            }

            /* Testimonial Cards Mobile */
      .testimonial-card {
        padding: 30px 20px;
      }


      /* Sections Mobile */
    
      .testimonials {
        padding: 60px 0;
      }

            .service-card,
            .process-step {
                min-width: 100%;
            }
        }