/*======================
VARIABLES & BASE STYLE
========================*/

:root {
    --primary: #12355b;
    --secondary: #f9ac1a;
    --background: #f6f8fa;
    --white: #ffffff;
    --card: #f2f7fd;
    --shadow: 0 2px 16px rgba(18,53,91,0.09);
    --radius: 16px;
    --nav-height: 64px;
    --transition: 0.18s;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--background);
    color: #182135;
    margin: 0;
    min-height: 100vh;
    font-size: 1.05em;
}


/* =====================
    HEADER SECTION
    ===================*/


header {
    position: relative;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding-bottom: 0;
}

.header-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center 40%;
    border-bottom: 6px solid var(--secondary);
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: 0;
    display: block;
    filter: brightness(0.90) contrast(1.06);
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg,rgba(18,53,91,0.45) 0%,rgba(18,53,91,0.13) 0%);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 1;
}

header h1 {
    margin: 0;
    font-size: 2.4em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
    position: relative;
    z-index: 2;
    padding-top: 30px;
}

header p {
    margin: 0 0 20px 0;
    font-size: 1.3em;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/*=======================
HERO SLIDESHOW SECTION
=========================*/

.hero-slideshow {
  width: 100vw;
  height: 220px;
}
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 16px auto;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
}
.hero-slideshow img.slide {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
    display: block;
}
.hero-slideshow img.active {
    opacity: 1;
    z-index: 2;
}
.hero {
    background: linear-gradient(120deg, #f3f7fa 80%, #fff 100%);
    text-align: center;
    padding: 68px 10px 52px 10px;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: 35px;
    position: relative;    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
}
.hero-slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slideshow-container img.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 var(--radius) var(--radius);
}
.hero h2 {
    font-size: 2.1em;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}
.hero p {
    font-size: 1.17em;
    max-width: 650px;
    margin: 0 auto;
    color: #3a3a3a;
    font-weight: 400;
}
.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 36px;
    font-size: 1.07em;
    border: none;
    border-radius: 8px;
    margin-top: 31px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.cta-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}
@media (min-width: 600px) {
  .hero-slideshow {
    height: 350px;
  }
}
@media (min-width: 900px) {
  .hero-slideshow {
    height: 500px;
    /* or use min-height: 60vh; for a hero effect */
  }
}


/* PRINCIPAL'S MESSAGE - Clean, Responsive Two-Column Card */
.principal-card.two-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 40px auto 32px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(18,53,91,0.10);
  padding: 36px 32px;
  position: relative;
}

.principal-card-img {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principal-card-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(18,53,91,0.10);
  background: #f7f9fa;
}

.principal-card-content {
  flex: 1 1 0;
  text-align: left;
  padding-left: 0;
}

.principal-card-content h2 {
  font-size: 1.5rem;
  color: #12355b;
  margin-bottom: 12px;
}

.principal-card-content p {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.principal-card-content strong {
  color: #1976d2;
  font-size: 1.08rem;
}

@media (max-width: 800px) {
  .principal-card.two-column {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 18px;
  }
  .principal-card-img img {
    width: 140px;
    height: 140px;
    max-width: 90vw;
  }
  .principal-card-content {
    text-align: center;
    padding-left: 0;
  }
}
/*==========================
         OUR TEAM
  ==========================*/

.our-team {
    background: #f1f8fe;
    padding: 32px 0;
    text-align: center;
}
.team-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.team-member {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 24px 18px 18px 18px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.team-member img {
    width: 180px;
    height: 240px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 16px;
}
.team-member h3 {
  margin: 10px 0 4px 0;
  font-size: 1.2rem;
}

.team-member p {
  margin: 2px 0;
  font-size: 1rem;
  color: #444;
}

@media (max-width: 700px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }
}

.our-team h2 {
  font-size: 2.4rem;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 1px;
}


   /*=========================
         Navigaton Section
    ===========================*/

.logo {
    position: absolute;
    left: 2vw;
    top: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    border: 3px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 2;
}
nav .logo {
    top: 5px;
}

@media (max-width: 600px) {
    .logo { width: 40px; height: 40px; top: 9px; left: 5px; }
}


nav {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(18,53,91,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-links {
    display: flex;
    gap: 24px;
}
nav a {
    color: var(--primary);
    text-decoration: none;
    padding: 22px 10px 13px 10px;
    font-weight: 500;
    font-size: 1.08em;
    border-bottom: 3px solid transparent;
    border-radius: 0 0 8px 8px;
    transition: color var(--transition), border-bottom var(--transition);
    letter-spacing: 0.4px;
}
nav a:hover, nav a.active {
    color: var(--secondary);
    border-bottom: 3px solid var(--secondary);
    background: #fffbe7;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;    position: relative;

    margin-left: 18px;
    background: none;
    border: none;
    z-index: 200;
}
.hamburger span {
    height: 4px;
    width: 28px;
    background: var(--primary);
    margin: 4px 0;
    border-radius: 2px;
    transition: var(--transition);
}
@media (max-width: 600px) {
    nav .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        background: var(--white);
        width: 100vw;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        z-index: 100;
        box-shadow: 0 4px 18px rgba(18,53,91,0.13);
        transition: max-height 0.3s;
    }
    nav .nav-links.open {
        max-height: 315px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--secondary);
    }
    nav a {
        padding: 15px 30px;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(18,53,91,0.07);
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 12px;
        top: 14px;
    }
}

.info-banner {
    background: var(--secondary);
    color: var(--primary);
    padding: 13px 0;
    font-size: 1.08em;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

main {
    min-height: 70vh;
}

/*===========================
      FEATURES SECTION
  ===========================*/

.features, .features-list, .academic-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
    padding: 43px 10px;
    background: none;
}
.feature-card, .feature, .academic-area {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 29px 19px 30px 19px;
    max-width: 340px;
    min-width: 215px;
    text-align: center;
    flex: 1 1 230px;
    margin: 0;
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 3px solid var(--secondary);
}
.feature-card:hover, .feature:hover, .academic-area:hover {
    transform: translateY(-7px) scale(1.035);
    box-shadow: 0 10px 40px rgba(18,53,91,0.13);
}
.feature-card h3, .feature h3, .academic-area h3 {
    color: var(--primary);
    margin-top: 0;
    font-size: 1.18em;
}
.feature-card p, .feature p, .academic-area li, .academic-area ul {
    color: #444;
    font-size: 1em;
}
.feature-img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(18,53,91,0.11);
    background: #e3f2fd;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 800px) {
    .features, .features-list, .academic-areas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 24px 5px;
    }
    .feature-card, .feature {
        max-width: 98vw;
    }
}

.section-img {
    width: 100%;
    max-width: 530px;
    height: auto;
    display: block;
    margin: 0 auto 24px auto;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(18,53,91,0.08);
}

.features {
  padding: 48px 0 32px 0;
  background: #f7f9fa;
}
.features h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

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

.feature-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 28px 20px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.12);
}

.feature-img {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 12px 0 8px 0;
  font-size: 1.25rem;
  color: #182135;
}

.feature-card p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-img {
    max-width: 100%;
    height: 180px;
  }
}
/*==========================
     ABOUT SECTION
  ==========================*/

.about-snapshot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 940px;
    margin: 0 auto;
}
@media (max-width: 800px) {
    .about-snapshot, .about-container {
        flex-direction: column;
        gap: 8px;
    }
}

section {
    margin: 0 auto 32px auto;
}
.about-section, .admissions-section, .academics-section, .contact-section {
    max-width: 960px;
    margin: 40px auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 45px 38px;
}
.about-section h2, .admissions-section h2, .academics-section h2, .contact-section h2 {
    color: var(--primary);
    margin-top: 0;
    font-size: 1.45em;
    margin-bottom: 15px;
    font-weight: 700;
}
.about-section p, .admissions-section p, .academics-section p, .contact-section p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

/*=========================
     ACADEMICS SECTION
  =========================*/

.info-box, .exams-box {
    background: var(--card);
    border-radius: 8px;
    padding: 17px 22px;
    margin: 18px 0;
    color: var(--primary);
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(18,53,91,0.07);
}
.exams-box {
    background: #eafbe7;
    color: #2e7d32;
}

.steps-list, .academic-area ul {
    padding-left: 20px;
    margin-bottom: 22px;
    text-align: left;
}
.steps-list li, .academic-area li {
    margin-bottom: 8px;
    color: var(--secondary);
}

/*===========================
     ADMISSION SECTION
  ===========================*/

.admissions-section a.button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 16px 0;
    transition: background var(--transition), color var(--transition);
    box-shadow: var(--shadow);
}
.admissions-section a.button:hover {
    background: var(--secondary);
    color: var(--primary);
}

/*===============================
     CONTACT SECTION
  ===============================*/

.contact-section {
  padding: 40px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 1px;
}

.contact-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-weight: 500;
}

.contact-flex {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border: 1px solid #b0bec5;
    border-radius: 5px;
    font-size: 1em;
    background: #f4f9fc;
}
.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}
.contact-form button {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
    box-shadow: var(--shadow);
}
.contact-form button:hover {
    background: var(--secondary);
    color: var(--primary);
}
.contact-details {
    margin-top: 29px;
    color: #333;
    font-size: 1em;
}
.contact-details strong {
  color: var(--secondary);
}

#contact .section-title h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.contact-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 260px;
  min-width: 320px;
  max-width: 1100px;
  background: #f7f9fa;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  font-size: 2rem;
  color: #12355b;
  background: #e3eafe;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h3 {
  margin: 0 0 4px 0;
  font-size: 1.08rem;
  color: #222;
  font-weight: 700;
}

.contact-details a, .contact-details p {
  font-size: 1rem;
  color: #1976d2;
  text-decoration: none;
  margin: 0;
  word-break: break-word;
}
.contact-info {
  flex: 1 1 320px;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 260px;
}

/*==========================
      CONTACT FORM
  ==========================*/

.contact-form {
  flex: 1 1 320px;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  font-size: 1rem;
  background: #f7f9fa;
}

.btn.btn-primary {
  background: #182135;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn.btn-primary:hover {
  background: #1256a3;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .contact-info, .contact-form {
    max-width: 100%;
  }
}


/* ======================
      FOOTER SECTION
   ====================== */
:root {
  --footer-bg: #0c0c1a;
  --discord-purple: #5865F2;
}

footer {
  background: var(--footer-bg);
  padding: 80px 32px 40px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.website-banner {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.website-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5865F2, #3498db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.website-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 18px;
  line-height: 1.5;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--discord-purple);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.footer-links a i {
  width: 20px;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.social-card:hover {
  background: rgba(88, 101, 242, 0.15);
  transform: translateY(-5px);
}

.social-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--discord-purple);
}

.social-card span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  text-align: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  footer {
    padding: 48px 12px 24px 12px;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr !important;
  }
}

   /* Results Section */
.results-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #12355b, #f9ac1a);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  text-align: center;
}
.results-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.results-section h3 {
  font-size: 1.5rem;
}
.results-section h3 span {
  display: block;
  font-size: 1rem;
  margin-top: 5px;
  color: #ffffffcc;
}
.class-group {
  margin: 30px 0;
}
.class-group h4 {
  background: #ffffffdd;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  color: #003366;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: #fff;
  color: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  width: 200px;
}
.img-container {
  position: relative;
  height: 200px;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
}
.gold { background-color: gold; color: #000; }
.silver { background-color: silver; color: #000; }
.bronze { background-color: #cd7f32; }
.info {
  padding: 15px;
}
.name {
  font-weight: bold;
  font-size: 1.1rem;
}
.score {
  font-size: 0.9rem;
  color: #333;
}
.see-more {
  margin-top: 30px;
}
.see-more button {
  background: #fff;
  color: #007BFF;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.see-more button:hover {
  background-color: #f2f2f2;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'Roboto', sans-serif;
    }

    .banner {
      background: linear-gradient(135deg, #12355b, #F9ac1a);
      color: white;
      text-align: center;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }

    .banner h1 {
      font-size: 3rem;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .banner .cursive {
      font-family: 'Pacifico', cursive;
      font-size: 2rem;
      color: #fffacd;
      margin: 10px 0;
    }

    .banner h2 {
      font-size: 2rem;
      margin: 10px 0;
      color: #fefefe;
    }

    .banner p {
      font-size: 1.5rem;
      color: #f0f8ff;
      margin-bottom: 30px;
    }

    .apply-button {
      background-color: #ffffff;
      color: #007bff;
      border: 2px solid #007bff;
      padding: 15px 30px;
      font-size: 1.2rem;
      border-radius: 10px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .apply-button:hover {
      background-color: #007bff;
      color: #ffffff;
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .banner h1 {
        font-size: 2.2rem;
      }
      .banner h2 {
        font-size: 1.5rem;
      }
      .banner p {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .banner {
        padding: 40px 10px;
      }
      .apply-button {
        width: 100%;
      }
    }
     
   /* Why Choose Us - Modern Style */

/* Why Choose Us Section - Clean, Modern, Responsive */
.our-team[aria-label="Why Choose Our School"] {
  background: #f8fafc;
  padding: 64px 0 48px 0;
  margin: 0;
}

.our-team[aria-label="Why Choose Our School"] h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #12355b;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.our-team[aria-label="Why Choose Our School"] .section-subtitle {
  text-align: center;
  font-size: 1.18rem;
  color: #12355b;
  margin-bottom: 38px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  text-align: center;
  position: relative;
}

.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 32px #1976d233;
  transform: translateY(-4px) scale(1.03);
}

.feature-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(25, 118, 210, 0.10);
  border: 4px solid #e3eafe;
  background: #f4f7fa;
}

.feature-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #12355b;
  margin-bottom: 10px;
  margin-top: 0;
  letter-spacing: 0.2px;
}

.feature-card p {
  font-size: 1.05rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 4vw;
  }
  .feature-card {
    padding: 26px 10vw 20px 10vw;
  }
}

@media (max-width: 600px) {
  .our-team[aria-label="Why Choose Our School"] {
    padding: 36px 0 24px 0;
  }
  .features-grid {
    padding: 0 2vw;
  }
  .feature-card {
    padding: 18px 4vw 14px 4vw;
  }
  .feature-img {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }
  .our-team[aria-label="Why Choose Our School"] h2 {
    font-size: 1.3rem;
  }
  .our-team[aria-label="Why Choose Our School"] .section-subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
  }
}
/* Contact Section Grid Layout */

.contact-info {
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.07);
  background: #fff;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Responsive for tablets and mobile */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .map-container {
    min-height: 220px;
  }
}

/* Fee Structure Styles */
.fee-structure {
  background: #f0f4f8;
  padding: 4rem 1.5rem;
  text-align: center;
}

.fee-structure .section-heading {
  font-size: 2.5rem;
  color: #002244;
  margin-bottom: 0.5rem;
}

.fee-structure .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.fee-table {
  overflow-x: auto;
}

.fee-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.fee-table th,
.fee-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.fee-table th {
  background: #003366;
  color: white;
  font-weight: 600;
}

.fee-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .fee-structure .section-heading {
    font-size: 2rem;
  }

  .fee-table table {
    font-size: 0.9rem;
  }
}
