
    :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);
    }

    * {
      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);
    }
    
    /* Mobile-specific container for testimonials */
    .testimonials .container {
      padding: 0 10px;
    }
    
    @media (min-width: 768px) {
      .testimonials .container {
        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;
      padding: 80px 0px 80px 0px;
    }

    .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;
      background: var(--accent);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: bottom right;
      transition: transform 0.5s ease;
    }

    .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;
    }

    /* Image Slider Styles */
    .image-slider {
      position: relative;
      max-width: 100%;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: var(--card-shadow);
      transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
      transition: transform 0.5s ease;
    }

    .image-slider:hover {
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    }

    .slider-container {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      border-radius: 10px;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      border-radius: 10px;
    }

    .slide.active {
      opacity: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.5s ease;
    }

    .hero-image:hover .slide img {
      transform: scale(1.05);
    }

    /* Slider Navigation */
    .slider-nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 2;
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid var(--white);
    }

    .nav-dot.active {
      background: var(--accent);
      box-shadow: 0 0 10px rgba(94, 129, 255, 0.5);
      transform: scale(1.2);
    }

    .nav-dot:hover {
      background: var(--accent-light);
    }

    /* Slider Arrows */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(94, 129, 255, 0.8);
      color: var(--white);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      z-index: 2;
      opacity: 0;
    }

    .image-slider:hover .slider-arrow {
      opacity: 1;
    }

    .slider-arrow:hover {
      background: var(--accent);
      transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow.prev {
      left: 20px;
    }

    .slider-arrow.next {
      right: 20px;
    }

    .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;
    }

    /* Services Section */
    .services {
      background-color: var(--off-white);
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
      padding: 0 20px;
    }

    .section-header h2 {
      font-size: clamp(32px, 6vw, 48px);
      color: var(--navy);
      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(--slate);
      margin-top: clamp(20px, 4vw, 30px);
      line-height: 1.6;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: clamp(20px, 4vw, 30px);
      padding: 0 0px;
    }

    .service-card {
      background: var(--white);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      transform: translateY(50px);
      opacity: 0;
    }

    .service-card.animate {
      transform: translateY(0);
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow);
    }

    .service-icon {
      height: clamp(100px, 15vw, 120px);
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(35px, 6vw, 50px);
      color: var(--white);
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: var(--accent-dark);
    }

    .service-content {
      padding: clamp(20px, 4vw, 30px);
      height: calc(100% - clamp(100px, 15vw, 120px));
      display: flex;
      flex-direction: column;
    }

    .service-content h3 {
      font-size: clamp(20px, 3.5vw, 24px);
      color: var(--navy);
      margin-bottom: clamp(10px, 2vw, 15px);
    }

    .service-content p {
      color: var(--slate);
      margin-bottom: clamp(15px, 3vw, 20px);
      line-height: 1.6;
      flex-grow: 1;
      font-size: clamp(14px, 2.5vw, 16px);
    }

    .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);
      margin-top: auto;
    }

    .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 */
      }
    }



    .service-link:hover {
      gap: 12px;
      color: var(--accent-light);
    }

    /* About Section */
    .about {
      background: linear-gradient(to bottom, var(--dark-blue), var(--navy));
      position: relative;
      overflow: hidden;
    }

    .about-content {
      display: flex;
      gap: clamp(30px, 8vw, 60px);
      align-items: center;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1 1 400px;
      min-width: 300px;
      transform: translateX(-50px);
      opacity: 0;
    }

    .about-text.animate {
      transform: translateX(0);
      opacity: 1;
    }

    .about-text h2 {
      font-size: clamp(32px, 6vw, 48px);
      margin-bottom: clamp(20px, 4vw, 30px);
    }

    .about-text p {
      font-size: clamp(16px, 3vw, 18px);
      color: var(--light-slate);
      margin-bottom: clamp(20px, 4vw, 25px);
      line-height: 1.7;
    }

    .stats {
      display: flex;
      gap: clamp(20px, 6vw, 40px);
      margin-top: clamp(30px, 6vw, 40px);
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .stat-item {
      text-align: center;
      min-width: 120px;
      transform: scale(0.8);
      opacity: 0;
    }

    .stat-item.animate {
      transform: scale(1);
      opacity: 1;
    }

    .stat-number {
      font-size: clamp(32px, 6vw, 42px);
      font-weight: 700;
      color: var(--accent);
      margin-bottom: clamp(5px, 1vw, 5px);
    }

    .stat-label {
      font-size: clamp(16px, 2.5vw, 18px);
      color: var(--light-slate);
    }

    .about-image {
      flex: 1 1 400px;
      text-align: center;
      position: relative;
      min-width: 300px;
      transform: translateX(50px);
      opacity: 0;
    }

    .about-image.animate {
      transform: translateX(0);
      opacity: 1;
    }

    .about-image img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transition: var(--transition);
    }

    .about-image:hover img {
      transform: scale(1.02);
    }

    /* Testimonials */
    .testimonials {
      background-color: var(--off-white);
    }

    .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;
      flex-direction: column;
      justify-content: space-between;
    }

    .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;
    }

    /* Contact Section */
    .contact {
      background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    }

    .contact-container {
      display: flex;
      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: 100px;
      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;
    }

    /* 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 24s 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;
    }

    /* Responsive Design */

    /* Ultra Wide Desktop */
    @media (min-width: 1600px) {
      .container {
        max-width: 98%;
        padding: 0 clamp(60px, 5vw, 120px);
      }
    }

    /* Large Desktop */
    @media (min-width: 1200px) {
      .container {
        max-width: 96%;
        padding: 0 clamp(40px, 4vw, 80px);
      }
    }

    /* Medium Desktop */
    @media (max-width: 1199px) {
      .container {
        max-width: 94%;
        padding: 0 clamp(30px, 3.5vw, 60px);
      }

      /* 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;
      }
    }

    /* Tablet & Small Desktop */
    @media (max-width: 992px) {

      .hero-content,
      .about-content,
      .contact-container {
        flex-direction: column;
      }

      .hero-text,
      .about-text,
      .contact-info {
        margin-bottom: 40px;
      }

      .hero-btns,
      .stats {
        justify-content: center;
        flex-wrap: wrap;
      }

      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }

      .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }

      .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
      }

      /* 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;
      }
    }

    /* Mobile & Tablet */
    @media (max-width: 768px) {
      .container {
        padding: 0 15px;
      }

      /* 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;
      }

      /* Hero Section Mobile */
      .hero {
        padding: 120px 0 60px;
      }

      .hero-content {
        gap: 40px;
      }

      .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }

      /* Services Mobile */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .service-card {
        max-width: 400px;
        margin: 0 auto;
      }

      /* Testimonials Mobile */
      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .testimonial-card {
        max-width: 400px;
        margin: 0 auto;
      }

      /* Contact Mobile */
      .contact-container {
        gap: 40px;
      }

      /* Stats Mobile */
      .stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
      }

      .stat-item {
        min-width: 150px;
      }

      /* Footer Mobile */
      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }



      /* Marquee Mobile */
      .marquee-item {
        padding: 0 20px;
        font-size: 14px;
      }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
      .container {
        padding: 0 10px;
      }

      /* Logo adjustment */
      .logo img {
        width: 35px;
        height: 35px;
      }

      .logo-text {
        font-size: 18px;
      }

      /* Hero Mobile */
      .hero {
        padding: 100px 0 40px;
      }

      .hero-content {
        gap: 30px;
      }

      .hero-btns {
        gap: 12px;
      }

      /* Sections Mobile */
      .services,
      .testimonials,
      .about,
      .contact {
        padding: 60px 0;
      }

      .section-header {
        margin-bottom: 40px;
      }

      /* Service Cards Mobile */
      .service-content {
        padding: 20px;
      }

      /* Testimonial Cards Mobile */
      .testimonial-card {
        padding: 30px 20px;
      }

      /* Contact Form Mobile */
      .contact-form {
        padding: 30px 20px;
      }

      .form-control {
        padding: 12px;
        font-size: 16px;
        /* Prevents zoom on iOS */
      }

      /* Stats Mobile */
      .stat-number {
        font-size: 28px;
      }

      .stat-label {
        font-size: 16px;
      }

      /* Slider Mobile */
      .slider-container {
        height: 300px;
      }

      .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
      }

      .slider-arrow.prev {
        left: 10px;
      }

      .slider-arrow.next {
        right: 10px;
      }

      .nav-dot {
        width: 8px;
        height: 8px;
      }

      .slider-nav {
        bottom: 10px;
      }

      /* Shapes adjustment */
      .shape-1 {
        width: 120px;
        height: 120px;
        top: -10px;
        right: -10px;
      }

      .shape-2 {
        width: 100px;
        height: 100px;
        bottom: -15px;
        left: -15px;
      }
    }

    /* Extra Small Mobile */
    @media (max-width: 360px) {
      .hero-text h1 {
        font-size: 28px;
      }

      .hero-text p {
        font-size: 16px;
      }

      .section-header h2 {
        font-size: 24px;
      }

      .btn-primary,
      .btn-outline {
        padding: 12px 20px;
        font-size: 14px;
      }

      .nav-btn {
        padding: 10px 20px;
        font-size: 14px;
      }

      .service-content h3 {
        font-size: 18px;
      }

      .testimonial-card {
        padding: 25px 15px;
      }

      .contact-form {
        padding: 25px 15px;
      }
    }

    /* High DPI Displays */
    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {
      .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
      }
    }

    /* Landscape Orientation for Mobile */
    @media (max-width: 768px) and (orientation: landscape) {
      .hero {
        padding: 40px 0;
      }

      .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
      }

      .slider-container {
        height: 180px;
      }
    }

    /* NEW STYLES FOR UNIVERSITY SECTIONS */

    /* Top Universities Section */
    .universities {
      background: var(--navy);
      padding: clamp(60px, 1vw, 100px) 0;
      position: relative;
      overflow: hidden;
    }

    .university-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: clamp(20px, 4vw, 30px);
      margin-top: 40px;
    }

    .university-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: var(--light-navy);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      transform: translateY(50px);
      opacity: 0;
    }

    .university-card.animate {
      transform: translateY(0);
      opacity: 1;
    }

    .university-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow);
    }

    .university-image {
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .university-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .university-card:hover .university-image img {
      transform: scale(1.1);
    }

    .university-rank {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--accent);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .university-content {
      padding: clamp(20px, 4vw, 25px);
    }

    .university-content h3 {
      font-size: clamp(20px, 3.5vw, 24px);
      color: var(--white);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .university-location {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--light-slate);
      font-size: 16px;
      margin-bottom: 15px;
    }

    .university-stats {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }

    .university-stat {
      background: rgba(94, 129, 255, 0.1);
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .university-link {
      display: inline-flex;
      align-items: center;
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
      gap: 8px;
      transition: var(--transition);
      font-size: 16px;
      margin-top: 10px;
    }

    .university-link:hover {
      gap: 12px;
      color: var(--accent-light);
    }

    /* Partner Universities Section */
    .partners {
      background: var(--off-white);
      padding: clamp(60px, 1vw, 80px) 0;
    }

    .partner-slider-wrapper {
      padding-bottom: 5px;
      margin-top: 40px;
      position: relative;
      overflow: hidden;
    }

    .partner-logos-slider {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* 4 logos per slide on desktop */
      gap: clamp(20px, 4vw, 40px);
      justify-items: center;
      transition: transform 0.5s ease-in-out;
    }

    .partner-logo {
      background: white;
      width: min(280px, 90vw);
      height: 200px;
      display: flex; 
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      transform: scale(0.9);
      opacity: 0;
    }

    .partner-logo.animate {
      transform: scale(1);
      opacity: 1;
    }

    .partner-logo:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .partner-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: filter 0.4s ease;
    }

    .partner-logo:hover img {
      filter: grayscale(0);
    }

    /* Partner Slider Dots */
    .partner-slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .partner-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(10, 25, 47, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .partner-dot.active {
      background-color: var(--accent);
      transform: scale(1.2);
    }

    .partner-dot:hover {
      background-color: var(--accent-light);
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .partner-logos-slider {
        grid-template-columns: repeat(3, 1fr); /* 3 logos per slide on tablets */
      }
    }

    @media (max-width: 768px) {
      .partner-logos-slider {
        grid-template-columns: repeat(2, 1fr); /* 2 logos per slide on small tablets */
      }

      .partner-logo {
        width: min(250px, 85vw);
        height: 180px;
      }

      .partner-logo img {
        max-width: 80%;
        max-height: 80%;
      }
    }

    @media (max-width: 480px) {
      .partner-logos-slider {
        grid-template-columns: 1fr; /* 1 logo per slide on mobile */
      }

      .partner-logo {
        width: min(280px, 90vw);
        height: 200px;
      }

      .partner-logo img {
        max-width: 75%;
        max-height: 75%;
      }
    }