/* ================= GLOBAL RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  position: sticky;
  top: 0;
  background: #ffffff;
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.logo img {
  height: 150px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  color: #1e40af;
  font-size: 0.95rem;
}

.nav-btn {
  background: #1e40af;
  color: white;
  padding: 8px 18px;
  border-radius: 4px;
}

/* ================= HERO ================= */

.hero {
  background: #1e3a8a;
  color: white;
  padding: 120px 60px;
  text-align: center;
}

.brand-line {
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  opacity: 0.8;
}
/* Brand Title */
.brand-line {
    color: #ffd24c;
    font-size: 80px;
    font-weight: 1000;
    letter-spacing: 42px;
    margin-bottom: 72px;
    text-transform: uppercase;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  margin-bottom: 35px;
}

.hero-buttons {
  margin-bottom: 30px;
}

.btn {
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  display: inline-block;
  transition: 0.3s ease;
}

.btn.primary {
  background: #facc15;
  color: #111;
}

.btn.secondary {
  background: white;
  color: #1e3a8a;
}

.btn:hover {
  opacity: 0.9;
}

.trust-strip {
  font-size: 0.9rem;
}

.trust-strip span {
  margin: 0 12px;
}

/* ================= SECTION BASE ================= */

.section {
  padding: 90px 60px;
  text-align: center;
}

.light {
  background: #f9fafb;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.section h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ================= GRID / CARDS ================= */

.grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 30px;
  border: 1px solid #e5e7eb;
  width: 250px;
  transition: 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ================= DIRECTOR SECTION ================= */

.director-container {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

.director-image img {
  width: 300px;
  border-radius: 6px;
}

.director-text {
  max-width: 500px;
  text-align: left;
}

.director-text h3 {
  margin: 10px 0;
  color: #1e40af;
}

/* ================= RESULTS HIGHLIGHT STRIP ================= */

.results-highlight {
  background: #1e3a8a;
  color: white;
  padding: 70px 60px;
}

.highlight-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  flex-wrap: wrap;
}

.highlight-item h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 10px;
}

.highlight-item p {
  font-size: 0.95rem;
}

/* ================= TOPPERS ================= */

.results-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.result-card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: 0.3s ease;
}

.result-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.result-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= GALLERY ================= */

.gallery-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 50px;
}

.gallery-grid img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ================= BRANCH MAP SECTION ================= */

.branch-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.branch-card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 20px;
  width: 320px;
  transition: 0.3s ease;
}

.branch-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.branch-card h3 {
  margin-bottom: 10px;
}

.branch-card iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

/* ================= CTA SECTION ================= */

.cta {
  background: #1e3a8a;
  color: white;
  padding: 80px 60px;
  text-align: center;
}

.admission-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 30px auto 0;
}

.admission-form input,
.admission-form select {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}

.admission-form input:focus,
.admission-form select:focus {
  outline: none;
  border-color: #1e40af;
}

/* ================= FOOTER ================= */

footer {
  padding: 30px;
  text-align: center;
  font-size: 0.85rem;
  background: #f3f4f6;
}

/* ================= WHATSAPP BUTTON ================= */

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  z-index: 999;
}

.whatsapp img {
  width: 28px;
}

.whatsapp:hover {
  transform: scale(1.1);
}
/* Brochure Button */
.btn.brochure {
    background: #ffffff;
    color: #1f3c88;
    border: 2px solid #ffffff;
    font-weight: 600;
}

.btn.brochure:hover {
    background: #f3f6ff;
    transform: translateY(-2px);
}


/* ================= MOBILE RESPONSIVE ================= */
/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {

    .hero {
        padding: 85px 18px 55px;
        text-align: center;
    }

    .brand-line {
    font-size: 55;
    letter-spacing: 46px;
    margin-bottom: 50px;
}

    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.hero-buttons .btn {
    width: 85%;
}

    

    .btn-primary,
    .btn-secondary {
        width: 85%;
        padding: 14px;
        font-size: 15px;
    }

    .trust-strip {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
        margin-top: 18px;
    }

    section {
        padding: 50px 18px;
    }
   /* ============================= */
/* RESULTS SECTION */
/* ============================= */

.results {
    padding: 100px 0;
    background: #f4f6fb;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1c2c5b;
    margin-bottom: 10px;
}

.section-heading p {
    color: #555;
    font-size: 16px;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Full width professional banners */
.result-card {
    width: 100%;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
}
/* ============================= */
/* MOBILE NAV FIX */
/* ============================= */

@media (max-width: 768px) {

  .navbar {
    padding: 12px 20px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .nav-links .btn {
    width: 180px;
    text-align: center;
  }

}
/* ============================= */
/* HERO MOBILE OPTIMIZATION */
/* ============================= */

@media (max-width: 768px) {

  .hero {
    padding: 80px 20px 60px;
  }

  .brand-line {
    font-size: 20px;
    letter-spacing: 4px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

}
.site-credit {
    text-align: center;
    font-size: 14px;
    padding: 20px 10px;
    background: #0f172a; /* dark navy */
    color: #cbd5e1;
}

.site-credit strong {
    color: #ffffff;
    font-weight: 600;
}

.site-credit a {
    color: #facc15; /* premium gold accent */
    text-decoration: none;
    font-weight: 500;
}

.site-credit a:hover {
    text-decoration: underline;
}
.stats {
  background: #1f3c88;
  padding: 70px 20px;
  text-align: center;
  color: white;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box h3 {
  font-size: 48px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .brand-line {
    font-size: 32px;
    letter-spacing: 4px;
  }
}
/* ========================= */
/* FACULTY POSTER SECTION */
/* ========================= */

.faculty-section {
    padding: 80px 10%;
    text-align: center;
    background: #f8f9fc;
}

.faculty-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.faculty-card {
    background: #ffffff;
    padding: 50px 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faculty-subject {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.maths,
.physics,
.chemistry,
.biology {
    background: linear-gradient(90deg, #004aad, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accounts {
    color: #004aad;
}

.faculty-name {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #e60000;
}

.faculty-qualification {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faculty-exp {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.faculty-role {
    font-size: 18px;
    font-weight: 600;
    color: #555;
}
/* Mobile */
@media(max-width:768px){

    .faculty-subject {
        font-size: 28px;
    }

    .faculty-name {
        font-size: 32px;
    }

    .faculty-qualification,
    .faculty-exp {
        font-size: 16px;
    }
}
/* ===================== */
/* ALSO OUR BRAND */
/* ===================== */

.brand-section {
    margin: 100px 0;
}

.brand-top {
    background: #0f6f3a;
    color: #ffffff;
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    padding: 30px 0;
    letter-spacing: 3px;
}

.brand-main {
    background: linear-gradient(135deg, #d00000, #8b0000);
    text-align: center;
    padding: 100px 20px;
}

.brand-fast {
    font-size: 90px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    margin-bottom: 25px;
}

.brand-sub {
    font-size: 60px;
    font-weight: 800;
    color: white;
    letter-spacing: 12px;
    text-transform: uppercase;
}
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faculty-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.faculty-card:hover {
  transform: translateY(-5px);
}

.subject-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.maths { color: #0056ff; }
.physics { color: #006eff; }
.chemistry { color: #00a2ff; }
.biology { color: #008000; }
.accounts { color: #cc0000; }

.faculty-card h4 {
  font-size: 18px;
  margin: 10px 0;
}

.faculty-card span {
  font-size: 14px;
  color: #555;
}

.programs-section {
  margin-top: 80px;
  text-align: center;
}

.program-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.program-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faculty-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.subject {
  font-size: 18px;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.faculty-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.qualification {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.experience {
  font-size: 14px;
  color: #999;
}

.highlight {
  border: 2px solid #1f3c88;
}

.highlight .subject {
  color: #1f3c88;
}
.hero-programs {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
}
.branch-address {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}
@media (max-width: 768px) {

  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .logo img {
    height: 70px; /* keep logo big */
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  nav a {
    font-size: 14px;
  }

  .nav-btn {
    padding: 6px 12px;
    font-size: 13px;
  }

}
.contact-numbers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-info {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
