/* ================= GLOBAL ================= */
:root {
  /* BRAND COLORS */
  --primary: #e2dbc8;        /* Gold */
  --secondary: #1d3564;      /* Navy */

  /* TEXT COLORS */
  --dark: #0f172a;
  --muted: #64748b;
  --white: #ffffff;

  /* BACKGROUNDS */
  --bg-light: #fffaf5;
  --bg-soft: #f8fafc;

  /* BORDERS & SHADOWS */
  --border: #e5e7eb;
  --shadow-sm: 0 6px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 20px 40px rgba(0,0,0,0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--bg-soft);
  padding-top: 90px; /* navbar offset */
}

/* ================= NAVBAR ================= */
.site-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.site-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Logo */
.logo {
  height: 42px;
}

.logo-dark {
  display: none;
}

/* ================= LOGO SIZE CONTROL ================= */

.site-navbar .logo {
  height: 80px;          /* desktop size */
  width: auto;
  transition: height 0.25s ease;
}

/* Slightly smaller on scroll */
.site-navbar.scrolled .logo {
  height: 80px;
}

/* Tablet */
@media (max-width: 991px) {
  .site-navbar .logo {
    height: 50px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .site-navbar .logo {
    height: 42px;
  }
}


.site-navbar.scrolled .logo-light {
  display: none;
}

.site-navbar.scrolled .logo-dark {
  display: block;
}

/* Links */
.nav-link {
  color: #000000;
  font-weight: 600;
}

.site-navbar.scrolled .nav-link {
  color: var(--dark);
}

.site-navbar {
  padding: 0px 0;
}

.site-navbar.scrolled {
  padding: 10px 0;
}

/* CTA */
.nav-cta {
  background: #fbbf24;
  border-radius: 999px;
  color: #111827;
  padding: 8px 22px;
  font-weight: 600;
}

/* ================= HERO ================= */

/* ================= HERO BACKGROUND IMAGE ================= */

.hero-section {
  position: relative;
  padding: 120px 0 140px;
  background:
    linear-gradient(
      90deg,
      rgba(29, 53, 100, 0.85) 0%,   /* brand navy overlay */
      rgba(29, 53, 100, 0.65) 50%,
      rgba(29, 53, 100, 0.35) 100%
    ),
    url("assets/images/hero.webp"); /* <-- your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}


.hero-section {
  padding: 80px 0 120px;
}

.hero-section .hero-title,
.hero-section .hero-desc 
 {
  color: #ffffff;
}

.hero-section .hero-badge
{
    color: black
}

.hero-section .hero-title span {
  color: var(--primary); /* gold highlight */
}


.hero-badge {
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  margin-top: 16px;
  font-weight: 600;
}

.hero-desc {
  margin-top: 14px;
  color: var(--muted);
  max-width: 520px;
}

.hero-meta {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================= IMAGE CARD ================= */
.hero-image-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hero-image-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Stat cards */
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-card strong {
  font-size: 28px;
  color: var(--primary);
}

.stat-card span {
  display: block;
  font-size: 14px;
}

.stat-top {
  top: 20px;
  right: -20px;
}

.stat-bottom {
  bottom: 20px;
  left: -20px;
}
/* ================= SECTION HEAD ================= */

.section-head {
  max-width: 760px;
  margin: 0 auto 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ================= WHY SECTION ================= */

.why-section {
  padding: 100px 0;
  background: #ffffff;
}

/* ================= FEATURE CARD ================= */

.feature-card {
  background: #fff7ed;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ================= COMMUNITY SECTION ================= */

.community-section {
  padding: 50px 0;
  background: #fffaf5;
}

/* ================= PILLAR CARD ================= */

.pillar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.10);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffedd5;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.pillar-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ================= DAILY LIFE SECTION ================= */

.daily-life-section {
  padding: 50px 0;
  background: #fffaf5;
}

/* Soft container card */
.daily-life-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* ================= DAILY LIST ================= */

.daily-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.daily-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--dark);
}

.daily-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffedd5;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ================= IMAGE CARD ================= */

.daily-image-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 12px;
}

.daily-image-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .daily-life-wrap {
    padding: 40px 24px;
  }
}

/* ================= BOARDING OPTIONS ================= */

.boarding-options-section {
  padding: 50px 0;
  background: #ffffff;
}

/* Boarding cards */
.boarding-card {
  border-radius: 20px;
  padding: 36px 32px;
  color: #ffffff;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.boarding-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.boarding-sub {
  font-size: 14px;
  opacity: 0.9;
  display: block;
  margin-bottom: 14px;
}

.boarding-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Icon */
.boarding-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* Gradients */
.boarding-card-red {
  background: linear-gradient(135deg, #0e013e, #110136);
}

.boarding-card-orange {
  background: linear-gradient(135deg, #a77d4b, #a77d4b);
}

/* ================= INCLUDES BOX ================= */

.boarding-includes {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px 30px;
}

.include-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
/* ================= ACADEMIC SECTION ================= */

.academic-section {
  padding: 50px 0;
  background: #fff7ed;
}

/* Academic Cards */
.academic-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  height: 100%;
}

/* Card Headers */
.academic-head {
  padding: 28px;
  color: #ffffff;
}

.academic-head h3 {
  margin: 10px 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.academic-head small {
  font-size: 14px;
  opacity: 0.9;
}

.academic-icon {
  font-size: 26px;
  display: inline-block;
}

/* Gradients */
.academic-ib .academic-head {
  background: linear-gradient(135deg, #0e013e, #110136);
}

.academic-cbse .academic-head {
  background: linear-gradient(135deg, #a77d4b, #a77d4b);
}

/* Body */
.academic-desc {
  padding: 20px 28px 10px;
  font-size: 14px;
  color: var(--muted);
}

/* Feature list */
.academic-list {
  list-style: none;
  padding: 0 28px 28px;
  margin: 0;
}

.academic-list li {
  margin-bottom: 14px;
}

.academic-list strong {
  display: block;
  font-size: 14px;
}

.academic-list span {
  font-size: 13px;
  color: var(--muted);
}

/* ================= SUPPORT BOX ================= */

.academic-support {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
}

.support-item {
  background: #fff7ed;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

/* ================= INFRASTRUCTURE SECTION ================= */

.infrastructure-section {
  padding: 50px 0;
  background: #ffffff;
}

/* Infra cards */
.infra-card {
  background: #fff7ed;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
}

.infra-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.infra-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.infra-head h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* Infra list */
.infra-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-list li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}

.infra-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ================= GALLERY ================= */

.infra-gallery {
  margin-top: 40px;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* ================= HOLISTIC SECTION ================= */

.holistic-section {
  padding: 50px 0;
  background: #fff7ed;
}

/* List */
.holistic-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.holistic-item {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.holistic-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.holistic-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.holistic-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Image */
.holistic-image-card {
  background: #fffaf5;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.holistic-image-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* Quote */
.holistic-quote {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 280px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.holistic-quote p {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 6px;
}

.holistic-quote span {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 991px) {
  .holistic-quote {
    position: static;
    margin-top: 16px;
  }
}


/* ================= SAFETY SECTION ================= */

.safety-section {
  padding: 50px 0;
  background: #ffffff;
}

/* Safety cards */
.safety-card {
  background: #fff7ed;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.safety-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.safety-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* ================= CTA BAND ================= */

.safety-cta {
  background: linear-gradient(135deg, #357e81, #357e81);
  border-radius: 20px;
  padding: 50px 30px;
  color: #ffffff;
}

.safety-cta h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.safety-cta p {
  max-width: 700px;
  margin: 0 auto 22px;
  font-size: 15px;
  opacity: 0.95;
}

.safety-cta .btn-light {
  background: #ffffff;
  color: #f97316;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 24px;
}


/* ================= FACULTY SECTION ================= */

.faculty-section {
  padding: 50px 0;
  background: #fffaf5;
}

/* Image card */
.faculty-image-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.faculty-image-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* Faculty list */
.faculty-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faculty-item {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.faculty-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.faculty-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.faculty-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
  padding: 120px 0;
  background: #fff7ed;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
}

.quote-icon {
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  font-size: 13px;
  font-weight: 600;
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
  padding: 50px 0;
  background: #fff7ed;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
}

.quote-icon {
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  font-size: 13px;
  font-weight: 600;
}


/* ================= FAQ ================= */

.faq-section {
  padding: 50px 0;
  background: #ffffff;
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle:focus {
  outline: none;
}

.faq-icon {
  font-size: 16px;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 18px 16px;
}

.faq-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ================= FOOTER ================= */

.site-footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #e5e7eb;
  padding: 80px 0 30px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* Map */
.footer-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 12px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 13px;
  color: #94a3b8;
}

.footer-links a {
  font-size: 13px;
  color: #cbd5f5;
  margin-left: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-map iframe {
    height: 200px;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
  }

  .footer-links a {
    margin-left: 8px;
    margin-right: 8px;
  }
}


/* ================= HERO FORM ================= */

.hero-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-form-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--secondary);
}

/* Inputs */
.hero-form-card .form-control {
  height: 44px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.hero-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

/* Submit */
.btn-submit {
  background: var(--primary);
  color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  border: none;
}

.btn-submit:hover {
  background: #8f6a3f; /* darker gold */
}

/* Sticky only on desktop */
@media (min-width: 992px) {
  .hero-form-card {
    position: sticky;
    top: 100px; /* below navbar */
  }
}
