/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

/* =====================
   NAVBAR (DESKTOP)
===================== */
.navbar {
  background: #ffffff;
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  flex-wrap: wrap; /* 🔥 safety for small screens */
}

/* LOGO */
.site-logo {
  height: 70px;
  padding: 0;
  background: transparent;
}

/* NAV LINKS */
.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;            /* 🔥 Contact cut hone se bachega */
  justify-content: flex-end;
}

.navbar ul li {
  margin-left: 28px;
}

.navbar ul li a {
  color: #0b3c5d;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;        /* 🔥 text break nahi hoga */
}

.navbar ul li a:hover {
  color: #1d70b8;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  background:
    linear-gradient(rgba(8, 26, 43, 0.88), rgba(8, 26, 43, 0.88)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 160px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 18px;
  color: #f9b233
}

.hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.95;
}

.hero-buttons {
  margin-top: 35px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  background: #f9b233;
  color: #081a2b;
  font-weight: 600;
  text-decoration: none;
}

.btn:hover {
  background: #ffcc66;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  margin-left: 15px;
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 80px 90px;
}

section h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #081a2b;
}

section p {
  font-size: 16px;
  color: #333333;
}

/* ABOUT */
.about {
  background: #f4f7fb;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 45px;
}

.stats div {
  text-align: center;
}

.stats strong {
  font-size: 34px;
  color: #081a2b;
  display: block;
}

.stats span {
  font-size: 14px;
  color: #555;
}

/* FEATURES */
.features {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.feature-grid div {
  background: #f9fbfd;
  padding: 22px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* WHY US */
.why-us {
  background: #f4f7fb;
  text-align: center;
}

.why-us p {
  max-width: 800px;
  margin: 0 auto;
}

/* ✅ FIX: BULLET + TICK ISSUE */
.why-points {
  list-style: none;           /* 🔥 bullet remove */
  padding-left: 0;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-points li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

/* PROCESS */
.process ol {
  max-width: 650px;
  margin: 35px auto 0;
  text-align: left;
}

.process li {
  margin-bottom: 14px;
  font-size: 16px;
}

/* =====================
   PROGRAMS PAGE – FULL
===================== */

.programs-header {
  background: #f4f7fb;
  text-align: center;
  padding: 70px 20px;
}

.programs-header h1 {
  font-size: 36px;
  color: #081a2b;
  margin-bottom: 10px;
}
.programs-header p {
  color: #555555;
  opacity: 1;
}

.program-hero p {
  color: #ffffff !important;
  opacity: 0.95;
}

.programs-page {
  padding: 90px 80px;
  background: #ffffff;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* PROGRAM CARD */
.program-card {
  background: #0b2a45;   /* 🔥 dark blue */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* CONTENT */
.program-content {
  padding: 26px;
}

.program-content h3 {
  font-size: 22px;
  color:  #ffffff;       /* 🔥 white */
  margin-bottom: 8px;
}

.program-desc {
  font-size: 15px;
  color:  #e6e6e6;       /* 🔥 NOW VISIBLE */
  margin-bottom: 14px;
}

/* DETAILS LIST */
.program-details {
  list-style: none;
  margin-bottom: 20px;
}

.program-details li {
  font-size: 14px;
  color: #e6e6e6;
}

.program-details strong {
  color: #f9b233;       /* yellow highlight */
}

.program-hero p,
.program-hero .subtitle,
.program-hero .program-desc,
.program-hero span,
.program-hero small {
  color: #ffffff !important;
  opacity: 0.95;
}

/* Safety: agar direct hero ke andar p hai */
.program-hero * {
  color: #ffffff;
}

/* SMALL BUTTON */
.btn.small {
  padding: 10px 18px;
  font-size: 14px;
}

/* ACTIVE NAV */
.navbar ul li a.active {
  color: #1d70b8;
}

/* MOBILE */
@media (max-width: 768px) {

  .programs-page {
    padding: 60px 25px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card img {
    height: 200px;
  }

  .programs-header h1 {
    font-size: 28px;
  }
}


/* CTA */
.cta {
  background: linear-gradient(90deg, #071829, #0b2a45);
  color: #ffffff;
  text-align: center;
  padding: 70px 20px;
}

.cta h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

/* ✅ FIX: LIMITED SEATS TEXT */
.cta-sub {
  margin-bottom: 25px;
  font-size: 16px;
  color: #ffffff;        /* 🔥 pure white */
  opacity: 0.9;
}

/* TRUST LINE */
.trust-line {
  margin-top: 22px;
  font-size: 15px;
  color: #ffffff;          /* base white */
}

.trust-num {
  color: #f9b233;          /* 🔥 yellow numbers */
  font-weight: 700;
}

.trust-text {
  color: #ffffff;          /* 🔥 white text */
  font-weight: 500;
}
.hero-trust {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 500;
}

/* TRUST LINE NUMBERS YELLOW */
.hero-trust .trust-num {
  color: #f9b233 !important;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #071829;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {

  .navbar {
    padding: 12px 20px;
  }

  .site-logo {
    height: 55px;
  }

  .navbar ul {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .navbar ul li {
    margin: 6px 12px;
  }

  .navbar ul li a {
    font-size: 14px;
  }

  .hero {
    padding: 120px 20px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn.secondary {
    margin-left: 0;
  }

  section {
    padding: 50px 25px;
  }

  .stats {
    flex-direction: column;
    gap: 25px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================
   CONTACT PAGE
===================== */

.contact-hero {
  background: linear-gradient(rgba(8,26,43,0.85), rgba(8,26,43,0.85)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 20px;
  color:#ffffff;
  font-weight: 500;
}

.contact-hero h1 {
  color: #f9b233
  font-size: 38px;
  margin-bottom: 10px;
}

.contact-hero p {
  color: #f9b233
  font-size: 16px;
  opacity: 1;
}

/* MAIN CONTACT SECTION */
.contact-section {
  padding: 90px 80px;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #081a2b;
}

.contact-info p {
  margin-bottom: 25px;
  color: #444;
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  display: block;
  color: #081a2b;
}

.info-item span {
  color: #555;
}

/* FORM CARD */
.contact-form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.contact-form-card h2 {
  margin-bottom: 20px;
  color: #081a2b;
}

.contact-form-card form input,
.contact-form-card form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form-card form input:focus,
.contact-form-card form textarea:focus {
  outline: none;
  border-color: #1d70b8;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 25px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* =====================
   ABOUT PAGE
===================== */

.about-hero {
  background: linear-gradient(rgba(8,26,43,0.88), rgba(8,26,43,0.88)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 20px;
  color: #ffffff;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.about-hero p {
  color: #f9b233
  font-size: 16px;
  opacity: 1;
}

/* MAIN ABOUT SECTION */
.about-page {
  padding: 90px 80px;
  background: #f4f7fb;
}

.about-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

/* TEXT */
.about-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #081a2b;
}

.about-text h3 {
  margin-top: 22px;
  font-size: 20px;
  color: #081a2b;
}

.about-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* HIGHLIGHTS */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-card {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.highlight-card h4 {
  font-size: 30px;
  color: #f9b233;
  margin-bottom: 5px;
}

.highlight-card p {
  font-size: 14px;
  color: #333;
}

/* WHY SECTION */
.why-about {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.why-about h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #081a2b;
}

.why-about ul {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.why-about li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {

  .about-page {
    padding: 60px 25px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

  .contact-hero h1 {
    font-size: 28px;
  }
}
/* CONTACT HERO SUBTITLE FIX */
.contact-hero p {
  color: #ffffff !important;
  opacity: 0.9;
}

/* ===== FORCE PROGRAM HERO TEXT WHITE ===== */
.hero h1,
.hero p,
.hero span,
.hero small {
  color: #ffffff !important;
  opacity: 1;
}
/* =====================
   PROGRAM DETAIL PAGE
===================== */
.programs-header {
  background:
    linear-gradient(rgba(8, 26, 43, 0.85), rgba(8, 26, 43, 0.85)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 140px 20px;
}
.programs-header h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 12px;
}

.programs-header p {
  font-size: 17px;
  color: #ffffff;
  opacity: 0.95;
  max-width: 750px;
  margin: 0 auto;
}

.program-section {
  padding: 80px 90px;
  background: #ffffff;
}

.program-section.light {
  background: #f4f7fb;
}

.check-list {
  list-style: none;
  margin-top: 20px;
}

.check-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.timeline li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .programs-header {
    padding: 110px 20px;
  }

  .programs-header h1 {
    font-size: 28px;
  }

  .programs-header p {
    font-size: 14px;
  }
}
/* =====================
   FAQ PAGE
===================== */

.faq-page {
  padding: 90px 80px;
  background: #ffffff;
}

.faq-box {
  max-width: 900px;
  margin: auto;
}

.faq-box h3 {
  font-size: 18px;
  margin-top: 30px;
  color: #081a2b;
}

.faq-box p {
  font-size: 15px;
  color: #444;
  margin-top: 8px;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-page {
    padding: 60px 25px;
  }
}
/* =====================
   PROFESSIONAL FOOTER
===================== */

.main-footer {
  background: #071829;
  color: #ffffff;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-brand h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #f9b233;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.9;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: #f9b233;
}

/* SOCIAL ICONS */
.footer-social a:not(.whatsapp-btn) {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  background:#0b2a45;
  color:#ffffff;
  border-radius:50%;
  margin-right:10px;
  font-size:16px;
  transition:.3s;
}

.footer-social a:not(.whatsapp-btn):hover{
  background:#f9b233;
  color:#081a2b;
}


.footer-social a:hover {
  background: #f9b233;
  color: #081a2b;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  font-size: 13px;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    margin-top: 15px;
  }
}

/* =====================
   TESTIMONIALS
===================== */

.testimonials {
  padding: 90px 20px;
  background: #f4f7fb;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #081a2b;
}

.testimonial-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.testimonial-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-size: 16px;
  color: #081a2b;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 13px;
  color: #f9b233;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================
   POLICY PAGES
===================== */

.policy-page {
  max-width: 900px;
  margin: auto;
  padding: 90px 20px;
}

.policy-page h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #081a2b;
}

.policy-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.policy-page h3 {
  margin-top: 30px;
  font-size: 20px;
  color: #081a2b;
}

.policy-page p,
.policy-page li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.policy-page ul {
  margin-left: 20px;
}

footer a {
  color: #f9b233;
  text-decoration: none;
  margin: 0 6px;
}
footer a:hover {
  text-decoration: underline;
}
.contact-form-card select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form-card button {
  width: 100%;
}
.footer-apply {
  margin-top: 30px;
  text-align: center;
}

.footer-apply p {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 15px;
}
.apply-card {
  text-align: center;
}

.apply-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.apply-btn {
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 8px;
}

.apply-note {
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}
/* ===== HERO TEXT VISIBILITY FIX (CONTACT + ABOUT + PROGRAM) ===== */

.hero h1,
.hero p,
.contact-hero h1,
.contact-hero p,
.about-hero h1,
.about-hero p,
.program-hero h1,
.program-hero p {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* ===== HERO COLOR CUSTOMIZATION ===== */

/* MAIN HERO HEADING */
.hero h1 {
  color: #f9b233 !important; /* 🔥 Yellow */
}

/* HERO SUBTEXT */
.hero p {
  color: #ffffff !important;
  opacity: 1;
}

/* TRUST LINE */
.hero-trust {
  margin-top: 18px;
  font-size: 15px;
  color: #ffffff; /* 🔥 White text */
  font-weight: 500;
}

/* TRUST NUMBERS */
.hero-trust .trust-num {
  color: #f9b233; /* 🔥 Yellow numbers */
  font-weight: 700;
}
/* ===== HERO TRUST LINE FIX ===== */
.hero-trust {
  margin-top: 18px;
  font-size: 15px;
  color: #ffffff;        /* text white */
  font-weight: 500;
}

.hero-trust .trust-num {
  color: #f9b233;        /* 🔥 yellow numbers */
  font-weight: 700;
}
.stats strong {
  color: #f9b233 !important;
}

/* STATS LABEL NORMAL */
.stats span {
  color: #555555;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp-btn{
display:inline-block !important;
background:#25D366 !important;
color:#ffffff !important;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
font-weight:600;
font-size:15px;
white-space:nowrap;
width:auto !important;
height:auto !important;
margin-top:14px;
margin-right:0;
border:none;
transition:.3s;
}

.whatsapp-btn:hover{
background:#1ebe5d !important;
color:#ffffff !important;
}

/* CTA BUTTON SPACING */
.cta .btn{
  margin:8px;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

.cta .btn{
display:block;
width:100%;
max-width:320px;
margin:12px auto;
}

}
