* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

.navbar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 15px 20px;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  background: url('backgrpound.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0f2a44, #1f7a5c);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 20px;
}

/* Badges */
.badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Heading */
h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

h1 span {
  color: #ffd54f;
}

/* Text */
.subtitle {
  font-size: 22px;
  margin-bottom: 10px;
}

.desc {
  font-size: 15px;
  margin-bottom: 25px;
}

/* Buttons */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call {
  background: #28a745;
  color: #fff;
}

.whatsapp {
  background: #1ebe5d;
  color: #fff;
}

/* Contact */
.hero-contact {
  font-size: 14px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .hero{
      height: 100vh;
  }

   .nav-links {
    position: absolute;     /* back to dropdown style */
    top: 60px;
    right: 20px;
    width: 220px;
    background: #0f2a44;
    flex-direction: column;
    padding: 15px 0;
    border-radius: 10px;
    
    height: auto;           /* 🔥 remove full height */
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 18px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}
}

.nav-links a {
  padding: 12px 20px;
  display: block;
}




.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000; /* 🔥 important */
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}







.trust-section {
  background: #f3f6f9;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.stat-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-box i {
  font-size: 28px;
  color: #2b6cb0;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #555;
}

/* Heading */
.heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.heading p {
  color: #666;
  margin-bottom: 40px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars {
  color: #f4b400;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.card span {
  font-size: 13px;
  color: #666;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .heading h2 {
    font-size: 24px;
  }
}








.programs {
  background: #f5f7fb;
  padding: 70px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.heading {
  text-align: center;
  margin-bottom: 50px;
}

.heading h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.heading p {
  color: #666;
  font-size: 16px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Icon */
.icon {
  width: 55px;
  height: 55px;
  background: #e8eef7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon i {
  font-size: 22px;
  color: #2b6cb0;
}

/* Text */
.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Button */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1fa34a;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #18863c;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .heading h2 {
    font-size: 24px;
  }

  .card {
    padding: 20px;
  }

  .btn {
    width: 100%;
  }
}









.why-section {
  background: #f5f7fb;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.why-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.why-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Icon box */
.icon {
  min-width: 50px;
  height: 50px;
  background: #e6f4ea;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 20px;
  color: #2f855a;
}

/* Text */
.why-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.why-card h3 i {
  color: #22c55e;
  margin-right: 6px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-section h2 {
    font-size: 24px;
  }

  .why-card {
    padding: 16px;
  }
}












.service-area {
  background: #f5f7fb;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1000px;
  margin: auto;
}

/* Heading */
.service-area h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.sub {
  color: #666;
  margin-bottom: 30px;
}

/* Location Chips */
.locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.locations span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

/* Icon */
.locations i {
  color: #2563eb;
  font-size: 13px;
}

/* Hover */
.locations span:hover {
  background: #2563eb;
  color: #fff;
}

.locations span:hover i {
  color: #fff;
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .service-area h2 {
    font-size: 24px;
  }

  .locations span {
    font-size: 13px;
    padding: 7px 12px;
  }
}












.faq-section {
  background: #f5f7fb;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  text-align: left;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 10px 0 20px;
  color: #555;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 14px;
    padding: 15px;
  }
}













.footer-cta {
  background: #1e4f8a;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

/* Title */
.footer-cta h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  color: #cbd5e1;
  margin-bottom: 30px;
}

/* Grid */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

/* Card */
.cta-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.1);
  padding: 18px;
  border-radius: 12px;
  transition: 0.3s;
}
.cta-card a{
    text-decoration: none;
    color: #ffffff;
}
.cta-card:hover {
  background: rgba(255,255,255,0.2);
}

/* Icon */
.cta-card i {
  font-size: 22px;
}

/* Text */
.cta-card span {
  font-size: 13px;
  color: #cbd5e1;
}

.cta-card h3 {
  font-size: 16px;
}

/* Info line */
.info {
  margin: 15px 0;
  font-size: 14px;
  color: #cbd5e1;
}

.info i {
  margin-right: 6px;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 20px 0;
}

/* Copyright */
.copy {
  font-size: 13px;
  color: #cbd5e1;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta h2 {
    font-size: 22px;
  }

  .cta-card {
    padding: 15px;
  }

  .cta-card h3 {
    font-size: 15px;
  }
}














.about {
  padding: 70px 20px;
  background: #f5f7fb;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Text */
.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.highlight {
  font-size: 16px;
  font-weight: 600;
  color: #1e4f8a;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Features */
.features {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.features div {
  font-size: 14px;
  color: #333;
}

.features i {
  color: #22c55e;
  margin-right: 6px;
}

/* Button */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1fa34a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.about-btn:hover {
  background: #18863c;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .about-text h2 {
    font-size: 24px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}











.contact-cta {
  padding: 70px 20px;
  background: linear-gradient(120deg, #0f2a44, #1f7a5c);
  color: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1000px;
  margin: auto;
}

/* Heading */
.contact-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-head p {
  color: #d1d5db;
  margin-bottom: 40px;
}

/* Cards */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

/* Icons */
.contact-card i {
  font-size: 22px;
}

/* Colors */
.call {
  background: #ff5722;
}

.whatsapp {
  background: #25D366;
}

.location {
  background: rgba(255,255,255,0.15);
}

/* Hover */
.contact-card:hover {
  transform: translateY(-4px);
}

/* Trust */
.trust-line {
  margin-top: 25px;
  font-size: 14px;
  color: #e5e7eb;
}

.trust-line i {
  margin-right: 6px;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-head h2 {
    font-size: 24px;
  }

  .contact-card {
    justify-content: center;
    text-align: left;
  }
}



.location {
  background: rgba(255,255,255,0.15);
  align-items: flex-start;
}

.location h3 {
  font-size: 15px;
  line-height: 1.5;
}


















/* Header */
.gallery-header {
  text-align: center;
  padding: 50px 20px 20px;
}

.gallery-header h1 {
  font-size: 32px;
}

.gallery-header p {
  color: #666;
}

/* Grid */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Image */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header h1 {
    font-size: 24px;
  }
}