/* ── Root — distinct palette from the Aurangabad page ── */
:root {
    --primary:   #fdb022;
    --teal:      #0f766e;
    --teal-dark: #0b5a54;
    --navy:      #12233b;
    --ink:       #12141c;
    --dark:      #1d2939;
    --g700: #344054;
    --g500: #667085;
    --g400: #98a2b3;
    --g300: #d0d5dd;
    --g200: #eaecf0;
    --g100: #f2f4f7;
    --g50:  #f9fafb;
}
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; color: var(--dark); overflow-x: hidden; margin: 0; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; }
h1, h2, h3, h4, h5, h6 { margin: 0; }

/* ── NAVBAR ── */
.site-nav {
    position: sticky; top: 0; z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 16px rgba(0,0,0,.07);
    padding: 0 6%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    min-height: 68px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2px; }
.nav-links a {
    display: block; padding: 8px 13px;
    font-size: 13.5px; font-weight: 500; color: var(--g700);
    border-radius: 8px; transition: background .18s, color .18s; white-space: nowrap;
}
.nav-links a:hover { background: #e6f4f2; color: var(--teal-dark); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    font-size: 22px; color: var(--g700); padding: 6px 8px;
    border-radius: 8px; transition: background .18s, color .18s; line-height: 1;
}
.nav-toggle:hover { background: #e6f4f2; color: var(--teal-dark); }

/* ── HERO ── */
/* Asymmetric composition: bold typographic panel with the campus photo
   offset as a tilted "polaroid" card bottom-right, instead of the clean
   symmetric two-column grid used on the Aurangabad page. */
.hero {
    position: relative; background: var(--navy);
    padding: 76px 6% 100px; overflow: hidden;
}
.hero-shape {
    position: absolute; top: -120px; right: -120px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(15,118,110,.55) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    position: relative; max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(253,176,34,.16); border: 1px solid rgba(253,176,34,.4);
    color: var(--primary); padding: 5px 16px; border-radius: 22px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .3px; margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 800;
    color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.hero-title span { color: var(--primary); }
.hero-sub {
    font-size: 1.03rem; color: rgba(255,255,255,.78);
    line-height: 1.72; margin-bottom: 30px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-wrap { position: relative; padding: 20px 20px 40px 0; }
.hero-photo-card {
    border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4);
    transform: rotate(-3deg);
    border: 6px solid #fff;
}
.hero-photo-card img { width: 100%; height: auto; display: block; }
.hero-photo-tag {
    position: absolute; right: 0; bottom: 0;
    background: var(--primary); color: var(--ink);
    padding: 10px 18px; border-radius: 14px;
    font-size: 13px; font-weight: 700;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    transform: rotate(3deg);
}

/* ── BUTTONS ── */
.btn-yellow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--ink);
    border: none; border-radius: 10px; padding: 13px 26px;
    font-size: 14.5px; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .18s;
}
.btn-yellow:hover { background: #f59e0b; color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08); color: #fff;
    border: 1.5px solid rgba(255,255,255,.5); border-radius: 10px;
    padding: 12px 26px; font-size: 14.5px; font-weight: 500; cursor: pointer;
    transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }

/* ── SHARED SECTION ── */
.sec       { padding: 48px 6%; }
.sec-white { background: #fff; }
.sec-gray  { background: var(--g50); }
.inner { max-width: 1160px; margin: 0 auto; }
.center { text-align: center; }
.center .sec-line { margin-left: auto; margin-right: auto; }
.center .sec-sub  { margin-left: auto; margin-right: auto; }

.sec-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--teal-dark);
    font-size: 12.5px; font-weight: 700; letter-spacing: 1.1px;
    margin-bottom: 10px; text-transform: uppercase;
}
.sec-tag::before {
    content: ""; display: inline-block; width: 22px; height: 3px;
    background: var(--teal); border-radius: 2px;
}
.sec-title {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800;
    color: var(--ink); line-height: 1.2; margin-bottom: 8px;
}
.sec-line { width: 44px; height: 4px; background: var(--teal); border-radius: 2px; margin-bottom: 16px; }
.sec-sub  { font-size: 1rem; color: var(--g500); line-height: 1.7; max-width: 640px; }

/* ── ABOUT (video kept) ── */
/* A real two-column layout: the video sits inside a card together with a
   quick-facts strip beneath it, so its total height matches the multi-
   paragraph text column instead of leaving a gap under a lone iframe. */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.about-text p { font-size: 15px; color: var(--g700); line-height: 1.85; margin-bottom: 16px; }
.about-media-card {
    background: #fff; border: 1px solid var(--g200); border-radius: 18px;
    padding: 14px; box-shadow: 0 10px 40px rgba(0,0,0,.07);
    position: sticky; top: 90px;
}
.video-wrap { border-radius: 12px; overflow: hidden; }
.video-wrap iframe { width: 100%; height: 240px; display: block; border: none; }
.about-facts { padding: 16px 6px 4px; }
.af-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-top: 1px solid var(--g200);
}
.af-row:first-child { border-top: none; }
.af-icon {
    width: 36px; height: 36px; border-radius: 9px; background: #e6f4f2; color: var(--teal-dark);
    display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.af-row strong { display: block; font-size: 13.5px; color: var(--ink); }
.af-row span { font-size: 12px; color: var(--g500); }

/* ── PRINCIPAL — circular photo, floating quote badge (different from the
   rectangular-photo treatment used on the Aurangabad page) ── */
.principal-card {
    background: #fff; border-radius: 22px; padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: center;
}
.principal-photo-wrap { position: relative; width: 220px; margin: 0 auto; }
.principal-photo {
    width: 220px; height: 220px; border-radius: 50%; overflow: hidden;
    border: 6px solid #e6f4f2;
}
.principal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.principal-name-tag { text-align: center; margin-top: 16px; }
.principal-name-tag strong { display: block; font-size: 16px; font-weight: 800; color: var(--ink); }
.principal-name-tag span { font-size: 12.5px; color: var(--g500); }
.blockquote-card {
    background: #e6f4f2; border-radius: 14px;
    padding: 22px 26px; font-size: 15px; font-style: italic;
    color: var(--teal-dark); line-height: 1.7; margin-bottom: 18px;
    position: relative;
}
.blockquote-card::before {
    content: "\201C"; position: absolute; top: -6px; left: 14px;
    font-size: 46px; color: rgba(15,118,110,.25); font-family: Georgia, serif;
}
.p-bio { font-size: 14px; color: var(--g700); line-height: 1.82; }

/* ── FEE STRUCTURE — rounded row-cards instead of a classic bordered table ── */
.fee-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.fee-list { display: flex; flex-direction: column; gap: 8px; }
.fee-list-head {
    display: flex; justify-content: space-between;
    padding: 12px 22px; font-size: 12.5px; font-weight: 700;
    color: var(--g500); text-transform: uppercase; letter-spacing: .5px;
}
.fee-row {
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; border: 1px solid var(--g200); border-radius: 12px;
    padding: 13px 22px;
}
.fee-row span:first-child { font-size: 14px; color: var(--ink); font-weight: 600; }
.fee-amount { font-weight: 800; color: var(--teal-dark); font-size: 14.5px; }
.fee-info {
    background: linear-gradient(140deg, #e6f4f2 0%, #d4ece9 100%);
    border: 1px solid rgba(15,118,110,.25); border-radius: 20px; padding: 32px;
}
.fee-info h4 { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 20px; }
.fi-row {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; font-size: 14px; color: var(--g700); line-height: 1.65;
}
.fi-row i   { color: var(--teal-dark); margin-top: 2px; flex-shrink: 0; }
.fi-row a   { color: var(--ink); font-weight: 600; }

/* ── ADMISSION CARDS ── */
.adm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.adm-card {
    background: #fff; border: 1px solid var(--g200); border-radius: 18px;
    padding: 34px 26px; transition: transform .28s, box-shadow .28s;
}
.adm-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.adm-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.adm-icon {
    width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
    background: var(--navy); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.adm-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.adm-card-top h3 { margin-bottom: 0; }
.adm-card p  { font-size: 13.5px; color: var(--g700); line-height: 1.65; margin-bottom: 22px; }
.adm-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 700; color: var(--teal-dark);
}
.adm-btn::after { content: "\2192"; }

/* ── MANDATORY DISCLOSURE ── */
.disc-title {
    font-size: 1.6rem; font-weight: 800; color: var(--navy);
    text-transform: uppercase; text-align: center; letter-spacing: .5px; margin-bottom: 40px;
}
.disc-label {
    font-size: 1rem; font-weight: 700; color: var(--ink);
    text-transform: uppercase; letter-spacing: .5px;
    padding-bottom: 10px; border-bottom: 3px solid var(--teal); margin: 36px 0 18px;
}
.disc-scroll { overflow-x: auto; border-radius: 14px; margin-bottom: 6px; }
.disc-table {
    width: 100%; border-collapse: collapse; background: #fff;
    font-size: 13.5px; min-width: 500px;
    border: 1px solid var(--g300);
}
.disc-table thead th {
    background: var(--navy) !important; color: #fff !important;
    padding: 13px 18px; text-align: left; font-weight: 700;
    border: 1px solid rgba(255,255,255,.08) !important;
}
.disc-table tbody td {
    padding: 12px 18px; color: var(--dark);
    border: 1px solid var(--g200) !important;
    vertical-align: top; line-height: 1.6;
}
.disc-table thead th:first-child,
.disc-table tbody td:first-child { text-align: center; }
.disc-table tbody tr:hover { background: #f2fbfa; }
.disc-table a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.ci-icon {
    width: 46px; height: 46px; background: #e6f4f2; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark); font-size: 18px; flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: 14px; color: var(--g700); line-height: 1.72; }
.map-card { border-radius: 18px; overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,.1); }
.map-card iframe { width: 100%; height: 390px; border: none; display: block; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 28px 6%; }
.footer-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 12.5px; color: var(--g400); }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a { font-size: 12.5px; color: var(--g400); transition: color .2s; }
.footer-nav a:hover { color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid       { grid-template-columns: 1fr; text-align: center; }
    .hero-sub        { margin-left: auto; margin-right: auto; }
    .hero-btns       { justify-content: center; }
    .hero-photo-wrap { max-width: 420px; margin: 24px auto 0; padding: 0 0 30px; }
    .about-grid      { grid-template-columns: 1fr; gap: 32px; }
    .about-media-card{ position: static; max-width: 500px; margin: 0 auto; }
    .fee-layout      { grid-template-columns: 1fr; }
    .principal-card  { grid-template-columns: 1fr; text-align: center; padding: 32px; }
    .principal-photo-wrap { margin: 0 auto; }
    .adm-grid        { grid-template-columns: 1fr; }
    .contact-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; align-items: stretch; gap: 2px;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 10px 20px 18px;
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
        border-top: 1px solid var(--g200);
    }
    .site-nav { position: relative; }
    .site-nav.nav-open .nav-links { display: flex; }
    .nav-links a { padding: 11px 14px; font-size: 14.5px; }
}
@media (max-width: 640px) {
    .hero { padding: 56px 4% 70px; }
    .hero-title { font-size: 1.55rem; }
    .sec { padding: 52px 4%; }
    .fee-list-head { display: none; }
    .footer-inner { flex-direction: column; text-align: center; }
}
