:root {
    --primary: #fdb022;
    --primary-dark: #e09a10;
    --black: #12141d;
    --gray-900: #101828;
    --gray-700: #344054;
    --gray-500: #667085;
    --gray-300: #d0d5dd;
    --gray-100: #f2f4f7;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --red: #c72027;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 12px rgba(0,0,0,.08);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.navbar-logo img { height: 48px; width: auto; display: block; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.nav-links a:hover { background: var(--gray-100); color: var(--black); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all .3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--gray-100);
    padding: 12px 5%;
    gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.mobile-menu a:hover { background: var(--gray-100); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 560px;
    background: url('../images/Tathawade-min.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.65));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 60px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253,176,34,.15);
    border: 1px solid rgba(253,176,34,.5);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge i { font-size: .8rem; }

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span { color: var(--primary); display: block; }

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--black);
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: background .2s, transform .2s;
}

.btn-primary-hero:hover { background: #e09a10; transform: translateY(-2px); }

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: 13px 28px;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,.6);
    transition: border-color .2s, background .2s;
}

.btn-outline-hero:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── WHY ORCHIDS ── */
.why-label {
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.why-underline {
    width: 56px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    margin: 0 auto 20px;
}

.why-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

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

.why-card {
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 28px 24px;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}

.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-3px); }

.why-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #fff8e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); line-height: 1.3; }
.why-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .why-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
}

/* ── SECTIONS ── */
.section { padding: 64px 5%; }
.section-alt { background: var(--gray-50); }

.section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 48px;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-text h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray-700);
    font-size: .95rem;
    line-height: 1.75;
    text-align: justify;
}

.toggle-btn {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    font-size: .9rem;
    margin-top: 8px;
    padding: 0;
}

.video-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.video-wrap iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

/* ── MANDATORY DISCLOSURE ── */
.disclosure-section { padding: 64px 5%; }

.disclosure-header {
    text-align: center;
    background: var(--red);
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 40px;
}

.disclosure-group { margin-bottom: 40px; }

.group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 10px 16px;
    background: var(--gray-100);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    margin-bottom: 16px;
}

.table-wrap { overflow-x: auto; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}

thead th {
    background: var(--primary);
    color: var(--black);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,.1);
}

tbody tr:hover { background: #fffbf0; }

tbody td {
    padding: 12px 16px;
    color: var(--gray-700);
    vertical-align: top;
    border: 1px solid #e5e7eb;
}

tbody td a { color: var(--red); font-weight: 500; }
tbody td a:hover { text-decoration: underline; }

/* Disclosure table column sizing */
.table-wrap table { table-layout: auto; }

.table-wrap table thead th:first-child,
.table-wrap table tbody td:first-child {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    text-align: center;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
}

.table-wrap table thead th:nth-child(2),
.table-wrap table tbody td:nth-child(2) {
    width: 40%;
    min-width: 200px;
}

.table-wrap table thead th:nth-child(3),
.table-wrap table tbody td:nth-child(3) {
    width: auto;
}

/* ── PRINCIPAL ── */
.principal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.principal-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.principal-role { color: var(--gray-500); font-size: .95rem; margin-bottom: 20px; }

.quote-box {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 20px 24px;
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-size: .95rem;
}

.principal-bio { font-size: .9rem; color: var(--gray-700); line-height: 1.75; text-align: justify; }

.principal-img {
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* ── FEE STRUCTURE ── */
.fee-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.fee-table-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.fee-table col.col-grade { width: 220px; }
.fee-table col.col-fee   { width: auto; }

.fee-table thead th {
    background: var(--primary);
    color: var(--black);
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,.1);
}

.fee-table tbody tr { transition: background .15s; }
.fee-table tbody tr:nth-child(even) { background: #fafafa; }
.fee-table tbody tr:hover { background: #fff8e6; }

.fee-table tbody td {
    padding: 14px 24px;
    font-size: .9rem;
    color: var(--gray-700);
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}

.fee-table tbody td:first-child { font-weight: 600; color: var(--black); text-align: center; }

/* staff sub-rows */
.staff-sub td { background: #fafafa; color: var(--gray-500) !important; font-size: .85rem !important; }
.staff-sub td:first-child { padding-left: 36px; color: var(--gray-500) !important; }

.fee-amount {
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    color: var(--black);
}

.fee-notes-box {
    margin-top: 20px;
    background: #f9fafb;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 20px 24px;
}

.fee-notes-box p {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 10px;
}

.fee-notes-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fee-notes-box li {
    font-size: .875rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fee-notes-box li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── STATS BANNER ── */
.stats-banner {
    border-radius: 20px;
    background: radial-gradient(61.66% 54.61% at 33.92% 42.8%, rgba(52,52,52,.6) 0, transparent 100%), #12141d;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 260px; height: 145px;
    border-radius: 65px;
    background: rgba(255,251,146,.31);
    filter: blur(94px);
}

.stats-heading { font-size: 1.5rem; font-weight: 700; color: #eaecf0; margin-bottom: 12px; }
.stats-para { font-size: .9rem; color: #98a2b3; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-num { font-size: 1.2rem; font-weight: 700; color: #eaecf0; }
.stat-label { font-size: .8rem; color: #98a2b3; margin-top: 2px; }

.stat-icon {
    width: 48px;
    height: 52px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── ACHIEVEMENTS ── */
.achieve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achieve-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    background: #fff;
    transition: transform .2s, box-shadow .2s;
}

.achieve-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.15); }

.achieve-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top;
    display: block;
}

.achieve-caption {
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #f6901e 100%);
}

.achieve-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.achieve-title {
    font-size: .78rem;
    color: rgba(0,0,0,.7);
    font-weight: 500;
}

@media (max-width: 768px) {
    .achieve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .achieve-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-label { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.contact-address { font-size: .9rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 16px; }
.contact-phone { font-size: .9rem; color: var(--gray-700); font-weight: 500; }
.contact-phone i { margin-right: 6px; color: var(--primary); }

.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ── FOOTER ── */
footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    padding: 20px 5%;
    text-align: center;
    font-size: .85rem;
    color: var(--gray-500);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-grid,
    .principal-grid,
    .contact-grid,
    .stats-banner { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: 1fr 1fr; }

    .principal-img { order: -1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section, .disclosure-section { padding: 40px 4%; }
    .hero { min-height: 340px; }
    .stats-banner { padding: 28px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}
