  body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    /* Top Bar */
    /* ✅ Top Bar Layout */
.topbar {
  background: linear-gradient(to right, #2f74e3, #105fcc);
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-left img {
  height: 45px;
}

.site-title {
  font-size: 26px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ✅ Dropdown Base */
.custom-dropdown-wrapper {
  position: relative;
}

.custom-btn,
.custom-icon {
  cursor: pointer;
  color: white;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 4px;
}

/* ✅ Dropdown Menu */
.custom-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background-color: white;
  color: black;
  min-width: 150px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

.custom-dropdown a {
  display: block;
  color: #222;
  text-decoration: none;
  padding: 8px 10px;
}

.custom-dropdown a:hover {
  background-color: #f0f0f0;
}

/* ✅ Icon Grid for Social */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.icon-grid i {
  font-size: 18px;
  color: #222;
}



    /* Second Navbar */
    .navbar {
      background: white;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: relative;
      margin-left:15px;
    }
    .logo img {
      height: 50px;
    }
    .menu-icons {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .menu-btn {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }
    .menu-btn div {
      width: 22px;
      height: 2px;
      background: #333;
    }

    /* Dropdown Menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 10px 20px;
      z-index: 99;
    }

    .mobile-menu a {
      padding: 10px 0;
      text-decoration: none;
      color: #222;
      font-weight: 500;
    }

    /* Mobile View */
    @media (max-width: 768px) {
      .menu-btn {
        display: flex;
      }
    }
/* hero section */
 .hero {
    height: 55vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-image 1s ease-in-out;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
  }

  .hero h4 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .hero-btn {
    background-color: #e63946;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
  }

  .hero-btn:hover {
    background-color: #c92735;
  }

  @media (max-width: 768px) {
    .hero {
      height: 45vh;
    }

    .hero h1 {
      font-size: 1.8rem;
    }

    .hero h4 {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .hero {
      height: 20vh;
    }

    .hero h1 {
      font-size: 1.4rem;
    }

    .hero h4 {
      font-size: 0.8rem;
    }

    .hero-btn {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
  }


/* about us */
.about-section {
    padding: 60px 20px;
    background-color: #fff;
  }

  .about-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
  }

  .about-text {
    flex: 1 1 50%;
  }

  .about-text h2 {
    font-size: 2.2rem;
    color: #830505;
    margin-bottom: 20px;
  }

  .about-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .about-btn {
    text-decoration: none;
    color: #0d0568;
    border: 2px solid #200869;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .about-btn:hover {
    background-color: #1f0664;
    color: white;
  }

  .about-img {
    flex: 1 1 45%;
  }

  .about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .about-row {
      flex-direction: column;
    }

    .about-text,
    .about-img {
      flex: 1 1 100%;
    }

    .about-text h2,
    .about-text p {
      text-align: left;
    }

    .about-btn {
      margin-top: 10px;
    }
  }
/*  OUR SERVICES */
.updates-section {
    background-color: #ffffff;
    padding: 60px 20px;
    min-height: 100px;
    opacity: 1; /* Set to 1 by default */
  }

  .updates-title {
    font-size: 2rem;
    text-align: center;
    color: #0b3d91;
    margin-bottom: 40px;
    position: relative;
  }

  .updates-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0b3d91;
    margin: 10px auto 0;
    border-radius: 5px;
  }

 .updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Updated for 2-in-row mobile */
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

 .update-card {
  background-size: cover;
  background-position: center;
  height: auto;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

  .update-card:hover {
    transform: scale(1.02);
  }

.update-content {
  background: rgba(11, 61, 145, 0.75); /* semi-transparent overlay */
  color: white;
  padding: 16px;
  width: 100%;
  border-radius: 0 0 12px 12px;
  flex-shrink: 0;
}
  .update-content h3 {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .update-content p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .update-content button {
    background-color: #ffcc00;
    color: #0b3d91;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .update-content button:hover {
    background-color: #f5b900;
  }
/* carousel section*/
.carousel-banner-section {
  padding: 40px 0;
  background-color: #fff;
}

.banner-img {
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .banner-img {
    height: 200px;
  }
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0b3d91;
  opacity: 0.6;
}

.carousel-indicators .active {
  opacity: 1;
}



/*Motivational Achievement Video- Section Layout */
.focus-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.focus-heading {
  font-size: 2rem;
  color: #0b3d91;
  margin-bottom: 8px;
}

.focus-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0b3d91;
  margin: 6px auto;
  border-radius: 3px;
}

.focus-subtext {
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
}

.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.focus-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 10px 0;
  width: 100%;
}

.focus-scroll::-webkit-scrollbar {
  display: none;
}

.focus-card {
  flex: 0 0 auto;
  min-width: 300px;
  max-width: 300px;
  background-color: #f9f9f9;
  scroll-snap-align: start;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.focus-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.focus-info {
  padding: 15px;
  text-align: left;
}

.focus-info p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.focus-info h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.scroll-btn {
  background-color: #0b3d91;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 8px 14px;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.scroll-btn.left {
  left: -15px;
}

.scroll-btn.right {
  right: -15px;
}

.scroll-btn:hover {
  background-color: #063572;
}

@media (max-width: 768px) {
  .focus-card {
    min-width: 85%;
  }
  .scroll-btn {
    display: none;
  }
}

/* vision section */
@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
  0% { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.animate__animated.animate__fadeInUp {
  animation: fadeInUp 1s ease-in-out;
}

.animate__animated.animate__slideInLeft {
  animation: slideInLeft 1s ease-in-out;
}

.animate__animated.animate__slideInRight {
  animation: slideInRight 1s ease-in-out;
}


/* FAQ section */
.faq-section {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #084088;
    margin-bottom: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: auto;
}

.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    border: none;
    background: #084088;
    color: rgb(247, 243, 243);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #1e017f;
}

.faq-question span {
    font-size: 22px;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 15px;
    display: none;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    border-top: 1px solid #ddd;
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        width: 100%;
    }
}
/* contact us */

/* Contact Section Styles */
.contact-section {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
}

.contact-container {
    max-width: 500px;
    margin: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background: #000a11;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #2ac806;
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-container {
        width: 100%;
    }
}
/* ðŸ”¥ Map Styling */
.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* âœ… Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 5%;
    }

    .contact-form {
        padding: 15px;
    }

    .contact-form button {
        font-size: 16px;
    }
}


/* footer section */
.green-footer {
  background-color: #150755;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 12px;
  color: #fff;
}
.footer-about p {
  font-size: 0.95rem;
  color: #ddd;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-links ul li a:hover {
  color: #ffcc00;
}
.footer-contact p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.footer-contact i {
  margin-right: 6px;
  color: #ffcc00;
}
.footer-social a {
  margin-right: 12px;
  font-size: 1.3rem;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}
.footer-base {
  text-align: center;
  margin-top: 30px;
  color: #ccc;
  font-size: 0.9rem;
}
.footer-base .developer {
  font-weight: bold;
  color: orange;
}
.footer-base .developer-contact {
  color: yellow;
  margin-top: 5px;
}
footer hr {
  border: none;
  border-top: 1px solid #ffffff22;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  
}
