
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background: #111;
      color: #fff;
    }

    /* Header */
    header {
      width: 100%;
      background: rgba(0, 0, 0, 0.927);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
        
    }

    .logo {
      font-size: 28px;
      font-weight: bold;
      color: #F9AD06;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav ul li a {
      text-decoration: none;
      color: #F9AD06;
      display: block;
      font-size: 16px;
      transition: 0.3s;
    }


    /* Auth Buttons */
    .auth-buttons {
      display: flex;
      gap: 15px;
    }

    .auth-buttons button {
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      transition: 0.3s;
    }

    .login-btn {
      background: transparent;
      border: 1px solid #F9AD06 !important;
      color: #F9AD06;
    }
    .login-btn a{
      text-decoration: none;
      color: #F9AD06;

    }

    .login-btn:hover {
      background: #F9AD06 !important;
      color: #fff !important;
    }

    .login-btn a{
      color: white;
    }

    .register-btn {
      background: #F9AD06;
      color: #fff;
    }
    .register-btn a{
      text-decoration: none;
      color: #fff;

    }
    .register-btn:hover {
      background: #F9AD06;
    }

    /* Hamburger */
    
    .menu-toggle {
      display: none;
      position: absolute;
      /* top: 1rem; */
      right: 1rem;
      flex-direction: column;
      cursor: pointer;
      z-index: 3;
    }
    
  /* Mobile Navigation Styles */
  .mobile-nav {
          position: fixed;
          top: 0;
          right: 10;
          width: 100vw;
          z-index: 2;
          display: flex;
          justify-content: flex-end;
          align-items: center;
          height: 60px;
          display: none;
          /* background:    rgba(255,255,255,0.95); */
        }

  .menu-toggle,
  .mobile-menu-toggle {
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    color: #333;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
  }
  .menu-toggle {
  display: none !important;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
  }
}

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 2rem;
  }
  .mobile-menu-list.active {
    right: 0;
  }
  .mobile-menu-list li a {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    /* top: 1rem; */
  }
  .mobile-menu-list li a:hover {
    background: #f0f0f0;
    color:#000;
  }
  .mobile-menu-list {
  display: none !important;
}
@media (max-width: 768px) {
  .mobile-menu-list {
    display: flex !important;
  }
}
  @media (max-width: 768px) {
    .mobile-nav {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      width: 100vw;
      z-index: 2;
    }
  }
    .bar {
      height: 3px;
      width: 25px;
      background: #F9AD06;
      margin: 4px 0;
    }

    /* Header navigation  */
.main-nav ul li a:hover {
  color: white !important;
}
/* Dropdown arrow styles */
.dropdown > a .fa-angle-down {
  margin-left: 6px;
}
.dropdown-menu .fa-arrow-right {
  margin-left: 8px;
  font-size: 1em;
}
/* Mobile dropdown styles */
.mobile-menu-list .dropdown-menu {
  display: none;
  position: static;
  background: #f9f9f9;
  box-shadow: none;
  border-radius: 0;
  padding-left: 1.5rem;
}
.mobile-menu-list .dropdown.open > .dropdown-menu {
  display: flex;
  flex-direction: column;
}
.mobile-menu-list .dropdown > a {
  display: flex;
  /* align-items: center; */
  /* justify-content: space-between; */
}
.close-menu-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  position: absolute;
  top: .4rem;
  right: 1rem;
  z-index: 1101;
}
.mobile-menu-close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
/* Dropdown styles for desktop nav */
.main-nav .dropdown {
  position: relative;
}
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-radius: 6px;
  z-index: 0;
}
.main-nav .dropdown-menu li {
  width: 100%;
}
.main-nav .dropdown-menu li a {
  color: #F9AD06;
  padding: 12px 20px;
  display: block; 
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s, color 0.2s;
}
.main-nav .dropdown-menu li:last-child a {
  border-bottom: none;
}
.main-nav .dropdown-menu li a:hover {
  background: #F9AD06;
  color: #fff;
}
.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.mobile-nav-button{
  display: flex;
  gap: 10px;
  justify-content: center;
  border-radius: 20px;
  margin-top: 16px;
  background-color: #fff;
}

.mobile-login-btn
{
  border-radius: 20px;
  /* background-color: #fff;/ */
}
.mobile-register-btn {
  /* flex: 1; */
  border-radius: 20px;
  background-color: none;
  border: none;
  background-color: #F9AD06;
}

.mobile-login-btn:hover,
.mobile-register-btn:hover {
  /* flex: 1; */
  border-radius: 20px;
  background-color: none;
}

    /* Hero Section */

    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 60px;
        margin-top: 70px;
        gap: 40px;
        overflow: hidden;
        }
     .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/herobus.png') no-repeat center center/cover;
        filter: blur(5px);       
        transform: scale(1.1);  
        z-index: -1;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.45); /* black overlay with transparency */
            z-index: -1;
            }

    .hero-text {
      flex: 1;
    }

    .hero-text h1 {
      font-size: 42px;
      line-height: 1.2;
    }

    .hero-text p {
      margin-top: 15px;
      font-size: 18px;
      line-height: 1.5;
    }

    .tags {
      margin-top: 20px;
      font-size: 16px;
      color: #F9AD06;
    }

    /* Enquiry Form */
    .form-box {
      background: #fff;
      color: #000;
      border-radius: 12px;
      padding: 30px;
      width: 450px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      flex-shrink: 0;
    }

    .form-box h3 {
      text-align: center;
      margin-bottom: 20px;
    }

    .form-box input, .form-box textarea {
      width: 100%;
      margin-bottom: 15px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .form-box textarea{
      resize: none;
    }
    .name{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
      /* margin-bottom: 15px; */
    }
    .name input{
      width: 50%;
      
    }
    .e-phone{
  display: flex;
  align-items: center;
  gap: 10px;
}
.e-phone .country-code-input{
  width: 15%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #000;
}
.e-phone .phone-input{
  width: 90%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
@media only screen and (min-width: 700px) and (max-width: 992px){
  .e-phone .country-code-input{
    width: 9%;
  }
}
    .address{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
    }
    .address input{
      width:50%
    }
    .location{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
    }
    .location select{
      width: 50%;
      margin-bottom: 15px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .location input{
      width: 50%;
      margin-bottom: 15px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .form-box button {
      width: 100%;
      background: #F9AD06;
      color: #fff;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .form-box button:hover {
      background: #F9AD06;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }
      .hero-text {
        max-width: 100%;
      }
      .form-box {
        width: 100%;
        margin-top: 20px;
      }
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        background: rgba(0,0,0,0.9);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 20px;
        border-radius: 10px;
      }
      nav ul.active {
        display: flex;
      }
    .menu-toggle,
    .mobile-menu-toggle {
        display: flex;
      }
      .auth-buttons {
        display: none;
      }
    }

    /* about us section css  */

    .about {
    background: #f4f4f4;
    padding: 60px 80px;
  }

  .about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* Left Image */
  .about-image img {
    width: 100%;
    max-width: 500px;
    /* height: 500px; */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  /* Right Text */
  .about-text {
    flex: 1;
    min-width: 300px;
  }

  .about-text h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 10px;
    position: relative;
  }

  .about-text h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: orange;
    display: block;
    margin: 4px;
  }

  .about-text h2 {
    font-size: 32px;
    margin: 15px 0;
    color: #111;
    font-weight: bold;
  }

  .about-text .highlight {
    color: #F9AD06;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px;
    color: #333;
    margin-bottom: 15px;
  }

  /* Features */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
  }

  .feature {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
  }

  .feature span {
    color: #F9AD06;
    font-size: 20px;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .about{
      padding: 40px 20px;
    }
    .about-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
      justify-content: center;
    }
    .about-text {
      text-align: center;
      width: 100%;
    }
    .about-text h3::after{
      content: "";
      /* width: 50px;
      height: 3px; */
      background: orange;
      display: block;
      margin: 6px auto 0 !important;
    }
    .about-text p{
      text-align: center;
      justify-content: center;
    }
    .about-image {
      display: flex;
      justify-content: center;
      width: 90%;
    }
    .about-image img {
      margin: 0 auto;
    }
    .about-text h2 {
      font-size: 28px;
    }
    .about-text p {
      font-size: 15px;
    }
  }

  /* service section  */

  .services {
    background: #f4f4f4;
    padding: 60px 80px;
    text-align: center;
  }

  .services h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 10px;
    position: relative;
  }

  .services h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: orange;
    display: block;
    margin: 6px auto 0;
  }

  .services h2 {
    font-size: 16px;
    /* width:70%; */
    font-weight: 600;
    margin-bottom: 40px;
    color: #111;
  }

  .services .highlight {
    color: #F9AD06;
  }

  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .card-service {
      background: #fff;
    /* background-color: #111; */

      border-radius: 16px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
      overflow: hidden;
      text-align: left;
      position: relative;
      transition: transform 0.3s ease;
      width: 300px;
      /* height: 420px; */
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .card-service h4{
      color: #F9AD06;
    }
  /* .card {
    background: #fff;
    border-radius: 16px;
    max-width: 30%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    overflow: hidden;
     text-align: left; 
    transition: transform 0.3s ease;
  } */

  .card-service:hover {
    transform: translateY(-5px);
  }

  .card-service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .card-content p {
    font-size: 15px;
    /* background-color: #F9AD06; */
    color: #444 !important;
    /* width: 90%; */
    margin-bottom: 10px;
  }

  .card-content h5 {
    font-size: 16px;
    margin: 12px 0 8px;
    font-weight: 600;
  }

  .card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: #444;
  }

  .card-content ul li {
    font-size: 15px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .card-content ul li::before {
    content: "";
    color: #F9AD06;
  }

  .arrow {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 20px;
    text-decoration: none;
    color: orange;
    font-weight: bold;
    transition: 0.3s;
  }

  .arrow:hover {
    transform: translateX(5px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .services h2 {
      font-size: 26px;
    }
    .card img {
      height: 160px;
    }
    .card{
      max-width: 100%;
    }
  }
  @media (max-width: 1200px) {
    .card {
      max-width: 100%;
    }
  }

  /* why choose us  */

  .why-choose-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 40px;
  background: #f7f7f7;
  /* border-radius: 20px; */
}

.why-left {
  text-align: left;
}

.why-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.why-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.why-img img {
  width: 100%;
  border-radius: 15px;
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  border-radius: 10px;
}

.overlay-text h3 {
  font-size: 40px;
  color: #F9AD06;
  margin: 0;
}

/* Testimonial Slider */
.why-right {
    margin-top: 50px;
  position: relative;
  background-color: white;
  border-radius: 12px;
}



.testimonial-wrapper {
  height: 360px; /* height of one testimonial */
  overflow: hidden;
  border-radius: 12px;
}

.testimonial-slider {
  display: flex;
  flex-direction: column;
  animation: slideUp 20s linear infinite;
}

.testimonial {
  min-height: 180px;
  padding: 20px;
  background: #fff;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 15px;
  color: #111;
}

.testimonial h4 span {
  font-size: 13px;
  color: #777;
}

/* Animation */
@keyframes slideUp {
  0% { transform: translateY(0); }
  20% { transform: translateY(0); }

  25% { transform: translateY(-193px); }
  40% { transform: translateY(-193px); }

  45% { transform: translateY(-386px); }
  60% { transform: translateY(-386px); }

  65% { transform: translateY(-579px); }
  80% { transform: translateY(-579px); }

  85% { transform: translateY(-772px); }
  100% { transform: translateY(-772px); }
}

/* Responsive */
@media (max-width: 900px) {
  .why-choose-us {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-left h2 { text-align: center; }

  .why-right {
    margin-top: 0;
  }
}

/* our capabilities  */

.capabilities {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
  color: #090909;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}

.capability-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cap-card {
  background: #fff;
  color: #333;
  padding: 25px;
  display: flex;
  border-radius: 15px;
  width: 420px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: left;
  transition: transform 0.3s ease;
}

.cap-card div {
    padding: 10px;
}

.cap-card h4 {
  margin-bottom: 10px;
}

.cap-card:hover {
  transform: translateY(-8px);
}

.cap-card img {
  max-width: 150px;
  margin-top: 15px;
  display: block;
}

.green-text {
  color: #F9AD06;
  font-weight: bold;
  margin-bottom: 10px;
}


/* Footer Section  */

.footer {
  background: #1c1c1c;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 40px 20px;
  flex-wrap: wrap;
}

/* Footer Sections */
.footer-section {
  flex: 1;
  min-width: 220px;
  margin-bottom: 20px;
}

.footer-logo {
  color: #F9AD06;
  font-size: 28px;
  margin: 0 0 10px 0;
}

.footer-section h3 {
  color: #F9AD06;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #F9AD06;
}

/* Social Icons */
.social-icons {
  display: flex;
  margin-top: 10px;
}

.social-icons div {
  background: #333;
  border-radius: 50%;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.social-icons div a {
  color: #fff;
  font-size: 18px;
}

.social-icons div:hover {
  background: #F9AD06;
  transform: scale(1.1);
}

.social-icons div:hover a {
  color: #000;
}

/* Copyright */
.footer-bottom {
  background: #e6e4e4;
  color: #000;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}

.footer-section p{
    padding: 4px;
}
.footer-section p a{
  text-decoration: none;
  color: #fff;
}

/* academic hero section  */

.hero-academic {
        position: relative;
        min-height: 70vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 60px;
        margin-top: 70px;
        gap: 40px;
        overflow: hidden;
        }
     .hero-academic::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/herobus.png') no-repeat center center/cover;
        filter: blur(5px);       
        transform: scale(1.1);  
        z-index: -1;
        }
        .hero-academic::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.45); /* black overlay with transparency */
            z-index: -1;
            }

    .hero-text-academic {
      flex: 1;
    }

    .hero-text-academic h1 {
      font-size: 42px;
      line-height: 1.2;
    }

    .hero-text-academic p {
      margin-top: 15px;
      font-size: 18px;
      line-height: 1.5;
    }

    .tags {
      margin-top: 20px;
      font-size: 16px;
      color: #F9AD06;
    }

    .tags button{
      padding: 12px;
      background-color: #F9AD06;
      border: solid 1px #F9AD06;
      color: white;
      cursor: pointer;
      border-radius: 15px;
      /* font-weight: bold; */
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .tags button:hover{
      background-color: #F9AD06;
      /* transform: translateY(-4px); */
    }

    /* transport section */


.transport-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  /* max-width: 1200px; */
  margin: auto;
  background-color: white;
}

.image-container {
  flex: 1 1 40%;
  padding: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.image-container img {
  width: 500px;
  border-radius: 20px;
  height: 400px;
  
}

.text-container {
  flex: 1 1 50%;
  padding: 10px 20px;
}

.text-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

.text-container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #000;
}

@media (max-width: 768px) {
  .transport-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .image-container,
  .text-container {
    flex: 1 1 100%;
    padding: 10px;
  }
  .image-container img{
    width: 100%;
    height: auto;
  }

  .text-container h1 {
    font-size: 24px;
  }

  .text-container p {
    font-size: 14px;
  }
}

/* service section  */


.services-section {
  padding: 60px 20px;
  /* max-width: 1200px; */
  margin: auto;
  text-align: center;
  background-color: white;
}

.section-header .sub-heading {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;

}

.section-header .highlight {
  color: #F9AD06;
  font-weight: bold;
}

.services-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  flex: 1 1 45%;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* .service-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
} */

.service-card img {
  width: 100%;              /* Makes the image fill the container width */
  max-height: 200px;        /* Limits the height to prevent very tall images */
  object-fit: cover;        /* Ensures image maintains aspect ratio and fills area */
  border-radius: 12px;      /* Rounded corners for images */
  margin-bottom: 15px;      /* Space below image */
}

.service-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #111;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .services-flex {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .service-card img {
    max-height: 180px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* why us acedemic */


.why-aaveg {
  /* background: url('images/') center/cover no-repeat; */
  padding: 60px 80px;
  text-align: center;
  background-color: white;
}

.section-header .sub-heading {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.section-header .highlight {
  color: #F9AD06;
}

.swiper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
}

.swiper-slide {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.swiper-slide p {
  padding: 15px;
  font-weight: 500;
  color: #000;
}


/* government section  */

/* academic hero section  */

.hero-govt {
        position: relative;
        min-height: 70vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 60px;
        margin-top: 70px;
        gap: 40px;
        overflow: hidden;
        }
     .hero-govt::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/govt-bus.png') no-repeat center center/cover;
        filter: blur(5px);       
        transform: scale(1.1);  
        z-index: -1;
        }
        .hero-govt::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.45); /* black overlay with transparency */
            z-index: -1;
            }

    .hero-text-govt {
      flex: 1;
    }

    .hero-text-govt h1 {
      font-size: 42px;
      line-height: 1.2;
    }

    .hero-text-govt p {
      margin-top: 15px;
      font-size: 18px;
      line-height: 1.5;
    }

    /* feature about us  */

 


    .features-section {
  /* background: url('images/bus.png') center/cover no-repeat; */
  background-color: white;
  padding: 60px 20px;
  text-align: center;
  color: black;
}
.features-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-header .highlight {
  color: #F9AD06;
}

.features-header p {
  font-size: 18px;
  margin: 5px 0;
}

.features-header .sub-heading {
  font-size: 16px;
  color: #000;
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  width: 250px;
  max-width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .features-cards {
    justify-content: center;
  }

  .feature-card {
    flex: 0 1 45%;
  }
}

/* Mobile: 1 card */
@media (max-width: 600px) {
  .feature-card {
    flex: 0 1 100%;
    width: 100%;
  }
}

/* contact us section  */

/* Outer wrapper padding */
.contact__wrapper {
  padding: 60px 150px;  /* viewport spacing */
  background: #f5f7f6;
}

/* Shell = flexbox container */
.contact__shell {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #fff;
  flex-wrap: wrap; /* stack on small screens */
}

/* Left column */
.contact__info {
  background: #F9AD06;
  flex: 1 1 320px;   /* flexible, min 320px */
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Right column */
.contact__forms {
  flex: 2 1 300px;   /* take more space than left */
  padding: 22px;
  background: #fff;
}

/* Info cards */
.contact__card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact__card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.contact__card-text {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* Tabs */
.contact__tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.contact__tab {
  flex: 1;
  border: 0;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  background: #d1d5db;
  cursor: pointer;
}

.contact__tab.is-active {
  background: #F9AD06;
  color: #fff;
}

/* Forms */
.contact__form {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.contact__form.is-active {
  display: flex;
}

.contact__input,
.contact__textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  font-family: sans-serif;
}

.contact__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact__submit {
  background: #F9AD06;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.contact__submit:hover {
  background: #1e8be4;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact__wrapper {
    padding: 30px 20px;
  }
  .contact__shell {
    flex-direction: column; /* stack vertically */
  }
}

/* register form box  */

 .form-container {
        max-width: 800px;
        margin: auto;
        margin-top: 100px;
        margin-bottom: 100px;
        background-color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    h2 {
        margin-bottom: 20px;
        color: #1b1b4a;
        font-size: 20px;
        border-bottom: 2px solid #F9AD06;
        padding-bottom: 5px;
    }

    .form-group {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .form-group label {
        flex: 1 0 100%;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        flex: 1 0 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }

    .form-group .half-width {
        flex: 1 0 48%;
    }

    .form-group .half-width:first-child {
        margin-right: 4%;
    }

    .file-input {
        padding: 3px;
    }

    .otp-button {
        background-color: #F9AD06;
        color: #fff;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

    .register-button {
        width: 100%;
        padding: 12px;
        background-color: #F9AD06;
        color: #fff;
        border: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 20px;
        transition: background 0.3s;
    }

    .register-button:hover {
        background-color: #F9AD06;
    }

    .form-container h3 {
      text-align: center;
      margin-bottom: 20px;
    }

    .form-container input, .form-box textarea {
      width: 100%;
      margin-bottom: 15px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .form-container textarea{
      resize: none;
    }
    .name{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
      /* margin-bottom: 15px; */
    }
    .name input{
      width: 50%;
      
    }
    .register-address{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
    }
    .regsiter-address input{
      width:50%
    }
    .register-location{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
    }
    .register-location select{
      width: 50%;
      margin-bottom: 15px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .register-location input{
      width: 50%;
      margin-bottom: 15px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .form-box button {
      width: 100%;
      background: #F9AD06;
      color: #fff;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .form-box button:hover {
      background: #F9AD06;
    }
    .form-container label{
      color: black;
      display: block;
      margin-bottom: 10px;
      font-weight: bold;
      margin-left: 5px;
    }
    .register-phone{
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .register-phone .country-code-input{
      width: 8%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .register-phone .phone-input{
      width: 90%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }
    .p-register-phn{
      /* display: flex;
      align-items: center;
      gap: 10px; */
    }
    .p-register-phn .country-code-input{
      width: 15%;
    }
    .p-register-phn .phone-input{
      width: 82%;
    }

    @media (min-width: 600px) {
        .form-group input,
        .form-group select,
        .form-group textarea {
            flex: 1 0 100%;
        }
    }

    @media (min-width: 768px) {
        .form-group .half-width {
            flex: 1 0 48%;
        }
    }
    @media (max-width: 767px) {
        .register-phone .country-code-input{
          width: 12%;
        }
        .p-register-phn .country-code-input{
            width: 25%;
          }
          .p-register-phn .phone-input{
            width: 70%;
          }
    }
    @media (max-width: 480px) {
        .register-phone .country-code-input{
          width: 20%;
        }
        .p-register-phn .country-code-input{
            width: 35%;
          }
          .p-register-phn .phone-input{
            width: 60%;
          }
    }

    .t-bus-details{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
    }
    .t-route-details{
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;
    }

    .upload-section {
  margin-bottom: 20px;
}

.upload-section label {
  color: #000;
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  margin-left: 5px;
}

.upload-section input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed #ccc;
  border-radius: 6px;
  background-color: #f9fafb;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.upload-section input[type="file"]:hover {
  border-color: #F9AD06;
}

.upload-section input[type="file"]::-webkit-file-upload-button {
  background: #F9AD06;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
}

.upload-section input[type="file"]::-webkit-file-upload-button:hover {
  background: #F9AD06;
}

.d-upload-section {
  margin-bottom: 20px;
}

.d-upload-section label {
  color: #000;
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  margin-left: 5px;
}

.d-upload-section input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed #ccc;
  border-radius: 6px;
  background-color: #f9fafb;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.d-upload-section input[type="file"]:hover {
  border-color: #F9AD06;
}

.d-upload-section input[type="file"]::-webkit-file-upload-button {
  background: #F9AD06;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
}

.d-upload-section input[type="file"]::-webkit-file-upload-button:hover {
  background: #F9AD06;
}

/* login form  */


/* Section */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;              /* full screen height */
  background: #f4f7fb;        /* light background */
  padding: 20px;
}

/* Container */
.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
  width: 360px;
  max-width: 100%;
  text-align: left;
}

/* Heading */
.login-form h2 {
  margin: 5px 0 20px;
  font-weight: 700;
  font-size: 22px;
}

.login-form .subtitle {
  color: #555;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Inputs */
.login-form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.login-form input:focus {
  border-color: #F9AD06;
  box-shadow: 0 0 5px rgba(66, 165, 245, 0.4);
}

/* Forgot password */
.login-form .forgot {
  display: block;
  font-size: 14px;
  margin: 8px 0 20px;
  color: #F9AD06;
  text-decoration: none;
}

.login-form .forgot:hover {
  text-decoration: underline;
}

/* Button */
.login-form button {
  width: 100%;
  padding: 12px;
  background: #F9AD06;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background: #1e88e5;
}

/* Register link */
.login-form .register {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  color: #444;
}

.login-form .register a {
  color: #F9AD06;
  text-decoration: none;
  font-weight: 500;
}

.login-form .register a:hover {
  text-decoration: underline;
}





.auth-buttons-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn,
.register-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    min-width: 140px;
    text-align: center;
}

.login-btn {
    background-color: #F9AD06;
    color: #fff;
}

.register-btn {
    background-color: #F9AD06;
    color: #fff;
}

.register-btn a {
    text-decoration: none;
    color: white;
    display: block;
}

.auth-buttons {
    position: relative;
    display: inline-block;
}

.login-btn {
    background: #F9AD06;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

