/* Testimonial Section Styles */
.testimonial-section {
  padding: 60px 0;
  background: none;
  margin: 40px 0;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-heading {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #17633e;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}

.testimonial-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd600 60%, #ff5722 100%);
  margin: 0 auto 2em auto;
  border-radius: 2px;
}

.testimonial-heading {
  font-size: 1.8rem;
}

.testimonial-card {
  margin: 10px;
  padding: 20px;
}

.testimonial-section {
  padding: 40px 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr !important;
    gap: 1.5em !important;
  }
  .parallax {
    min-height: 70vh !important;
    padding-bottom: 30px !important;
    /* Fix for mobile: allow content below hero to be visible */
    background-attachment: scroll !important;
    overflow: visible !important;
  }
  .section {
    padding: 32px 8px !important;
  }
  /* Fix: Always show scroll animations on mobile (disable fade-in) */
  .scroll-fade-up,
  .scroll-fade-left,
  .scroll-fade-right,
  .scroll-fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hero Resources */
:root {
    --primary: #17633e;
    --secondary: #ff5100;
    --accent: #ff5100;
    --light: #f8f9fa;
}

.hero {
    background: linear-gradient(#17633e, rgba(7, 40, 65, 0.8)),
                url('https://princesainikschool.com/images/campus/campus/2.JPG') no-repeat center center;
    background-size: cover;
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1300px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn:hover {
    background-color: #17633e;
}

.secondary-btn {
    background-color: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.3s;
}

.secondary-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

.cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    width: 260px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(255,255,255,0.22);
}

.card-icon {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ICON SIZE + STROKE FIX */
.card-icon svg {
    width: 90px;
    height: 90px;
}
.card-icon svg path,
.card-icon svg circle,
.card-icon svg line {
    stroke-width: 1;
}

@media (max-width: 1000px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.activities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.activities-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #17633e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.activities-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Images */
.images-grid {
    position: relative;
}

.main-image {
    text-align: center;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}

.main-image img {
    width: 75%;
    border-radius: 50%;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.side-images {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.side-image {
    width: 45%;
    border-radius: 50%;
    background: #fff;
    padding: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Tablet/Mobile Layout */
@media (max-width: 1024px) {
    .activities-content {
        grid-template-columns: 1fr;
    }

    /* Images First */
    .activities-images {
        order: -1;
    }
    
    .activities-title {
      font-size: 2rem;
    }

    .main-image {
      margin-bottom: -50px;
    }

    .activities-images {
      margin-top: 3rem;
    }
}

/* Mobile Padding & Margin Fix */
@media (max-width: 640px) {
    /* Section Spacing Reduced */
    .activities-section {
        padding: 25px 0 !important;
    }

    /* Image Top Gap Reduced */
    .activities-images {
        margin-top: -10px !important;
        padding-top: 0 !important;
    }

    .main-image {
        margin-top: -35px !important;
        margin-bottom: -25px !important;
    }

    .main-image img {
        width: 85% !important;
        padding: 0.5rem !important;
    }

    .activities-cta {
      text-align: center;
    }
}

/* ===== Journey Transformation Section ===== */
:root {
  --primary: #17633e; /* Army Green */
  --accent: #ff5100; /* Orange */
  --light-bg: #f3fff5;
}

.change-section {
  background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
  padding: 40px 0px;
  font-family: "Poppins", sans-serif;
}
.container {
  max-width: auto;
  margin: 0 auto;
}
.change-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.change-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  color: #334;
  font-size: 1rem;
}

/* Timeline Center Line */
.journey {
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: translateX(-50%);
  border-radius: 4px;
}

/* Journey Items */
.journey-item {
  position: relative;
  margin-bottom: 75px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}
.journey-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Icons */
.journey-icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: white;
  font-size: 1.6rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(255,81,0,0.35);
  z-index: 3;
}

/* Content Boxes */
.journey-content {
  width: 45%;
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(23,99,62,0.18);
}
.journey-content.left {
  margin-right: auto;
  text-align: right;
  border-right: 5px solid var(--accent);
}
.journey-content.right {
  margin-left: auto;
  text-align: left;
  border-left: 5px solid var(--accent);
}

/* Mobile Version Centered */
@media (max-width: 900px) {
  .journey-content {
    width: 85% !important;
    text-align: center !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 5px solid var(--accent) !important;
  }
  .journey-item {
    flex-direction: column;
    align-items: center;
  }
}

/* Holistic Approach Pillars Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(23,99,62,0.06);
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(23,99,62,0.08);
  border-color: #ff5722;
}

.feature-icon-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(23, 99, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #17633e;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #17633e;
  color: white;
  transform: scale(1.1);
}

.feature-title {
  color: #17633e;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.feature-description {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-hover-content {
  position: relative;
  margin-top: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.feature-card:hover .feature-hover-content {
  opacity: 1;
  max-height: 220px; /* enough for paragraph + CTA */
}

.feature-hover-content p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.feature-link {
  color: #17633e;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  transition: color 0.2s ease, transform 0.18s ease;
}

.feature-link:hover {
  color: #0f3b2a;
  transform: translateY(-2px);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-hover-content {
    position: relative;
    opacity: 1;
    max-height: none;
    background: transparent;
    padding: 1rem 0 0 0;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }
}

/* Daily Life Timeline */
section {
  font-family: 'Poppins', sans-serif;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background-color: #17633e;
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin: 2.5rem 0;
  padding-left: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  background-color: #17633e;
  border: 4px solid #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 5px;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.2);
}
.timeline-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.3rem;
}
.timeline-item p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
.timeline-item span {
  font-size: 0.9rem;
  color: #17633e;
  font-weight: 500;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .timeline::before { left: 15px; }
  .timeline-item { padding-left: 60px; }
  .timeline-item::before { left: 5px; }
}

/* Why Choose cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: center;
  padding: 0 32px 48px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; padding: 0 20px 32px 20px; }
}

.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(23,99,62,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}

.why-card .icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #fffbe6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid #ffd60033;
}

.why-card h3 { margin: 0 0 8px 0; color: #17633e; font-size: 1.15rem; }
.why-card p { color: #4a5568; font-size: 0.95rem; line-height: 1.5; margin-bottom: 12px; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.why-cta { display: inline-block; margin-top: 8px; color: #ff5722; font-weight: 600; text-decoration: none; transition: color 0.18s ease; }
.why-cta:hover { color: #17633e; }

/* Non-Academic Activities Section */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f9fbff;
}

.activities-section {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  padding: 60px 10px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #17633e;
  margin-bottom: 8px;
  padding: 0 15px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 35px;
  padding: 0 20px;
}

.activity-category {
  margin-bottom: 50px;
}

.activity-category h3 {
  color: #17633e;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
}

.activity-category h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #17633e;
  border-radius: 2px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  justify-items: center;
  margin-top: 25px;
  padding: 0 10px;
}

.activity-card {
  background: #fff;
  border: 1px solid #dce6f5;
  border-radius: 12px;
  padding: 18px;
  width: 100%;
  max-width: 230px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.activity-card:hover {
  transform: translateY(-4px);
  background: #17633e;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.3);
}

/* Tablet adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.7rem;
  }
  .activity-category h3 {
    font-size: 1.3rem;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .activity-card {
    padding: 15px;
    font-size: 0.95rem;
  }
}

/* Testimonial Section */
.testimonial-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}
.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    margin: 16px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.testimonial-text {
    color: #4B5563;
    margin: 16px 0;
    font-size: 1rem;
    line-height: 1.5;
}
.testimonial-author {
    color: #78350F;
    font-size: 1.125rem;
    font-weight: 500;
    padding-top: 16px;
    padding-bottom: 8px;
}
.testimonial-position {
    color: #6B7280;
    font-size: 0.875rem;
    padding-bottom: 8px;
}
.star-rating {
    color: #EAB308;
    font-size: 1.25rem;
    display: flex;
    gap: 4px;
}
.slick-track {
    display: flex !important;
}
.slick-slide {
    height: inherit !important;
}

/* Visit Us Section */
.visit-us-section {
  background: linear-gradient(to right, #17633e, #17633e);
  color: white;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.visit-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.visit-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.visit-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #d8e0f0;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s, background 0.3s;
}

.visit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.visit-card i {
  font-size: 28px;
  color: #ff5722; /* Changed color to match accent */
  margin-bottom: 10px;
}

.visit-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0 5px;
}

.visit-card p {
  font-size: 0.95rem;
  color: #dce3f2;
  line-height: 1.5;
}

.tour-btn {
  display: inline-block;
  background: #ff5722; /* Changed color to match accent */
  color: #ffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.tour-btn:hover {
  background: #14532d; /* Changed hover color to primary dark */
}

.visit-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  border: none;
}

@media (max-width: 900px) {
  .visit-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .visit-map iframe {
    height: 350px;
    margin-top: 30px;
  }
}


/* FAQ Section */
.faq-section {
  background: linear-gradient(120deg, #fffbe6 60%, #f5f8f7 100%);
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #17633e;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.faq-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff5722 60%, #17633e 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.faq-item.open {
  border-color: #ff5722;
  background: linear-gradient(to right bottom, #fff, #fffbf7);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17633e;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: #17633e;
  color: #fff;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #17633e;
  line-height: 1.4;
}

.faq-arrow {
  flex-shrink: 0;
  color: #17633e;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  padding: 0 32px;
  transition: all 0.3s ease-in-out;
}

.faq-answer p {
  margin: 0;
  
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-link {
  display: inline-block;
  margin: 0.5rem 1.5rem 1.5rem 5rem;
  color: #ff5722;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-link:hover {
  color: #17633e;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1.25rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1rem 4rem;
  }

  .faq-link {
    margin: 0.5rem 1.25rem 1.25rem 4rem;
  }
}

/* Footer Redesign */
.main-footer {
  background: #17633e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin-top: 0;
  border-top: 3px solid #ff5722;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 0 32px;
  gap: 32px;
}
.footer-brand-col {
  flex: 2 1 320px;
  min-width: 260px;
  margin-bottom: 24px;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(255,214,0,0.10);
}
.footer-school-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 2px;
}
.footer-school-tagline {
  font-size: 1rem;
  color: #fffbe6;
  opacity: 0.85;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 1rem;
  color: #fffbe6;
  margin-bottom: 16px;
  margin-top: 8px;
  line-height: 1.6;
  max-width: 350px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #14532d;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background 0.2s;
  border: 1px solid #ff572230;
}
.footer-social-icon:hover {
  background: #ff5722;
}
.footer-links-col,
.footer-contact-col {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 24px;
}
.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-links-col ul,
.footer-contact-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-col ul li {
  margin-bottom: 10px;
}
.footer-links-col ul li a {
  color: #fffbe6;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.footer-links-col ul li a:hover {
  color: #ff5722;
  text-decoration: underline;
}
.footer-contact-col ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #fffbe6;
}
.footer-icon {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.footer-contact-col ul li a {
  color: #fffbe6;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.footer-contact-col ul li a:hover {
  color: #ff5722;
  text-decoration: underline;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #14532d;
  color: #fffbe6;
  padding: 18px 32px;
  font-size: 1rem;
  margin-top: 24px;
  border-top: 1px solid #ff572230;
  letter-spacing: 0.5px;
}
.footer-auth {
  font-size: 0.98rem;
  color: #fffbe6;
  opacity: 0.85;
  text-align: right;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
    padding: 32px 12px 0 12px;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 8px;
    padding: 14px 12px;
    font-size: 0.98rem;
    text-align: center;
  }
  .footer-brand-col,
  .footer-links-col,
  .footer-contact-col {
    min-width: 0;
    margin-bottom: 18px;
  }
  .footer-logo-img {
    width: 38px;
    height: 38px;
  }
  .footer-school-name {
    font-size: 1.08rem;
  }
  .footer-school-tagline {
    font-size: 0.95rem;
  }
}
/* ===== Header / Nav ===== */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #17633e;
  backdrop-filter: blur(6px);
  /* shadow removed */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}
.site-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-text .brand-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}
.brand-text .brand-tag {
  font-size: 0.78rem;
  color: #f8fafc;
  margin-top: -2px;
}

/* Nav */
.main-nav { display: block; }
.nav-links {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #f8fafc;
  font-weight: 600;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.nav-links a:hover,
.nav-links a:focus {
  background: linear-gradient(90deg, rgba(255,213,0,0.1), rgba(255,87,34,0.06));
  color: #f8fafc;
  transform: translateY(-2px);
}

/* Dropdown menu */
.has-dropdown {
  position: relative;
}
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 0.4rem 0;
  list-style: none;
  z-index: 1000;
}
.has-dropdown .dropdown li a {
  display: block;
  padding: 0.55rem 1rem;
  font-weight: 500;
  color: #1f2937;
}
.has-dropdown .dropdown li a:hover {
  background: rgba(23,99,62,0.08);
  color: var(--primary);
}
.has-dropdown:hover .dropdown {
  display: block;
  animation: fadeIn 0.2s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utilities */
.header-utilities {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.phone-link {
  font-weight: 600;
  color: #14532d;
  text-decoration: none;
  font-size: 0.95rem;
}
.cta-apply {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255,81,0,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s;
}
.cta-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(23,99,62,0.12);
}

/* Mobile */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  position: relative;
  border-radius: 2px;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e6eef0;
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0.8rem; }
.mobile-menu li { padding: 0.6rem 0.6rem; border-bottom: 1px solid #f1f5f9; }
.mobile-menu a { text-decoration: none; color: #123; font-weight: 600; display: block; }

.hidden { display: none !important; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .phone-link { display: none; }
  .menu-toggle { display: inline-flex; }
  .cta-apply { display: none; }
  .mobile-menu { display: block; }
}
