
    :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);
      --success: #4ade80;
    }

    * {
      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;
      align-items: center;
    }

    .nav-links li {
      display: flex;
      align-items: center;
    }

    .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: 60px 0px 60px 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;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      max-width: 600px;
      border-radius: 20px;
      box-shadow: var(--shadow);
      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;
    }

    /* Enhanced Filters */
    .university-filters {
      background: var(--light-navy);
      padding: 25px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .filter-container {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      align-items: center;
    }

    .search-container {
      position: relative;
      width: 100%;
      max-width: 500px;
      margin: 0 auto 15px;
    }

    .search-container input {
      width: 100%;
      padding: 12px 20px 12px 45px;
      border-radius: 30px;
      border: 1px solid var(--lightest-navy);
      background: var(--navy);
      color: var(--light-slate);
      font-size: 16px;
      transition: var(--transition);
    }

    .search-container input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(94, 129, 255, 0.2);
    }

    .search-container i {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--slate);
    }

    .filter-btn {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--light-slate);
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-btn.active, .filter-btn:hover {
      background: var(--accent);
      color: var(--white);
    }

    .filter-btn i {
      margin-right: 6px;
    }

    /* Enhanced University Cards */
    .universities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .university-card {
      background: var(--navy);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .university-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--card-shadow);
    }

    .university-image {
      height: 180px;
      overflow: hidden;
      position: relative;
    }

    .university-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .university-card:hover .university-image img {
      transform: scale(1.05);
    }

    .university-rank {
      background: var(--accent);
      color: white;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      display: inline-block;
      margin-bottom: 15px;
      position: absolute;
      top: 15px;
      left: 15px;
      z-index: 2;
    }

    .university-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .university-content h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: var(--white);
    }

    .university-location {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      margin-bottom: 15px;
      font-size: 14px;
    }

    .university-stats {
      display: flex;
      justify-content: space-between;
      margin: 15px 0;
      border-top: 1px solid var(--light-navy);
      border-bottom: 1px solid var(--light-navy);
      padding: 10px 0;
    }

    .stat-item {
      text-align: center;
      flex: 1;
    }

    .stat-number {
      font-weight: 700;
      color: var(--accent);
      font-size: 18px;
    }

    .stat-label {
      font-size: 12px;
      color: var(--slate);
      margin-top: 3px;
    }

    .university-programs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 10px 0 15px;
    }

    .program-tag {
      background: rgba(94, 129, 255, 0.1);
      color: var(--accent-light);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      display: inline-block;
    }

    .university-card .btn-outline {
      margin-top: auto;
      width: 100%;
      text-align: center;
      padding-left: 40px;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      gap: 8px;
    }

    .page-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--light-navy);
      color: var(--light-slate);
      border: none;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 600;
    }

    .page-btn.active, .page-btn:hover {
      background: var(--accent);
      color: var(--white);
    }

    /* Services Section */
    .services-section {
      background: 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%;
    }

    .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;
    }

    .service-link:hover {
      gap: 12px;
      color: var(--accent-light);
    }

    /* Testimonials */
    .testimonials {
      background: linear-gradient(to bottom, var(--dark-blue), var(--navy));
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: var(--light-navy);
      border-radius: 15px;
      padding: 40px 30px;
      box-shadow: var(--shadow);
      position: relative;
      transition: var(--transition);
    }

    .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-text {
      font-size: 18px;
      color: var(--light-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(--white);
      font-size: 20px;
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--light-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;
      gap: clamp(40px, 8vw, 60px);
      align-items: flex-start;
    }

    .contact-info {
      flex: 1 1 400px;
      min-width: 300px;
      padding-right: clamp(20px, 4vw, 40px);
      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);
      color: var(--white);
    }

    .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 1 400px;
      min-width: 300px;
      background: var(--white);
      border-radius: 15px;
      padding: clamp(30px, 5vw, 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;
    }

    .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;
    }

    /* 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;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease;
      z-index: 999;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .scroll-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-top:hover {
      background: var(--accent-light);
      transform: translateY(-5px);
    }

    /* Animations */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    @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 adjustments */
    @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 */
      .university-hero {
        padding: 120px 0 60px;
      }

      .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }

      .universities-grid {
        grid-template-columns: 1fr;
      }
      
      .filter-container {
        flex-direction: column;
        align-items: 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 {
        flex-direction: column;
        gap: 40px;
      }

      .contact-info {
        padding-right: 0;
        transform: none;
        opacity: 1;
      }

      .contact-form {
        transform: none;
        opacity: 1;
      }

      /* 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 */
      .university-hero {
        padding: 100px 0 40px;
      }

      .hero-btns {
        gap: 12px;
      }

      /* Sections Mobile */
      .services-section,
      .testimonials {
        padding: 60px 0;
      }

      /* Service Cards Mobile */
      .service-content {
        padding: 20px;
      }

      /* Testimonial Cards Mobile */
      .testimonial-card {
        padding: 30px 20px;
      }
      
      .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
      }
    }