/* ================================================================
   style.css — Main stylesheet (matches original design exactly)
   ================================================================ */
*, *::before, *::after {
    margin: 0; padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ── NOTICE TICKER ─────────────────────────────────────────────── */
.notice-ticker {
    position: fixed; top: 0; left: 0; width: 100%;
    height: 36px; background: #07375f; color: #fff;
    display: flex; align-items: center; z-index: 1100;
    font-size: 13px; overflow: hidden;
}
.ticker-label {
    background: #c0392b; padding: 0 14px; height: 100%;
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap; font-weight: 700; font-size: 12px;
    flex-shrink: 0;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
    display: flex; white-space: nowrap;
    animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { padding: 0 20px; }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ── NAVBAR ─────────────────────────────────────────────────────── */
nav {
    display: flex;
    padding: 10px 6%;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    position: fixed;
    top: 36px; left: 0;
    width: 100%; z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}
nav.no-ticker { top: 0; }
nav.nav-scrolled { padding: 5px 6%; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
nav img { width: 220px; max-height: 64px; object-fit: contain; transition: transform 0.3s; }
nav img:hover { transform: scale(1.05); }
.nav-links { flex: 1; text-align: right; }
.nav-links ul li {
    list-style: none; display: inline-block;
    padding: 8px 12px; position: relative;
}
.nav-links ul li a {
    color: #0e4d82; text-decoration: none;
    font-weight: bold; font-size: 15px;
}
.nav-links ul li::after {
    content: ''; width: 0%; height: 2px;
    background: #0e4d82; display: block;
    margin: auto; transition: 0.5s;
}
.nav-links ul li:hover::after { width: 100%; }
.nav-links ul li.has-dropdown::after { display: none; }
nav .fa-solid { display: none; }

/* ── DROPDOWN ───────────────────────────────────────────────────── */
.has-dropdown { position: relative; }
/* Bridge gap: padding-top creates invisible hover bridge so mouse doesn't lose hover */
.dropdown-menu {
    display: none; position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    background: #fff; border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 220px; z-index: 999;
    padding: 8px; border: 1px solid #e8eef5;
    padding-top: 14px;
    margin-top: 0;
}
/* Invisible bridge above dropdown to prevent gap losing hover */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px; left: 0;
    width: 100%; height: 12px;
    background: transparent;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; border-radius: 8px;
    color: #333; font-size: 13.5px; font-weight: 500;
    transition: background 0.15s;
}
.dropdown-menu a:hover { background: #eef4fb; color: #0e4d82; }
.dropdown-menu a i { width: 18px; color: #0e4d82; font-size: 13px; }
.dropdown-menu a.apply-link { color: #0e4d82; font-weight: 700; }
.dropdown-divider { border: none; border-top: 1px solid #eef0f3; margin: 6px 0; }
.chevron { font-size: 10px; margin-left: 4px; transition: transform 0.25s; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* ── HERO SECTION ───────────────────────────────────────────────── */
.header {
    min-height: 100vh; width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../image/banner.JPG);
    background-position: center; background-size: cover;
    position: relative;
}
.text-box {
    width: 90%; color: #fff;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h2 {
    font-size: 35px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}
.slogan {
    margin: 10px 0 0;
    font-size: 20px;
    font-family: 'Great Vibes', cursive;
    color: white;
}
.motto {
    margin: 0 0 10px;
    font-size: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold; color: white;
}
.hero-btn {
    display: inline-block; text-decoration: none;
    color: #fff; border: 1px solid #fff;
    padding: 12px 34px; font-size: 13px;
    background: transparent; cursor: pointer;
    transition: all 0.3s ease;
}
.hero-btn:hover { border: 1px solid #0e4d82; background: #0e4d82; }
.red-btn { border: 1px solid; background: transparent; color: #0e4d82; }
.red-btn:hover { color: #fff; }

/* ── SUB-HEADER (inner pages) ───────────────────────────────────── */
.sub-header {
    height: 590px; width: 100%; padding-top: 90px;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../image/background.jpg);
    background-position: center; background-size: cover;
    display: flex; justify-content: center; align-items: center;
    text-align: center; color: #fff;
}
.sub-header h1 { margin: 0; color: white; font-size: 100px; }
.adm-cover { background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../image/admission.jpg); }
.blog-cover { background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)), url(../image/blog.jpg); }
.cont-cover { background-image: linear-gradient(rgba(4,9,30,0.5),rgba(4,9,30,0.5)), url(../image/banner2.jpg); }

/* ── TEAM ───────────────────────────────────────────────────────── */
.team { width: 95%; margin: auto; text-align: center; padding-top: 50px; }
.team h2, h2.section-h2 { font-size: 36px; font-weight: 600; color: #0e4d82; }
.row {
    display: flex; overflow-x: auto; gap: 20px; padding: 10px;
    scroll-snap-type: x mandatory; scrollbar-width: none;
}
.row::-webkit-scrollbar { display: none; }
.team-col {
    flex: 0 0 auto; min-width: 200px; background-color: #fff;
    border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px; text-align: center; scroll-snap-align: start;
    transition: transform 0.3s ease;
}
.team-col:hover { transform: translateY(-10px); cursor: pointer; }
.team-col img { height: 200px; width: 100%; object-fit: cover; border-radius: 8px; }
.team-col h3 { text-align: center; font-weight: 600; margin: 10px 0; color: #0e4d82; }
.team-col p { font-size: 14px; color: #020202; margin: 0; }

/* ── ACADEMIC PROGRAMS ──────────────────────────────────────────── */
.academic-program { margin-top: 20px; text-align: center; padding: 40px; }
.academic-program h2 { font-size: 36px; font-weight: 600; color: #0e4d82; }
.academic-program > p { color: black; }
.slider-container { position: relative; overflow: hidden; margin: 20px auto; max-width: 100%; }
.slider {
    display: flex; gap: 20px; overflow-x: auto;
    scroll-behavior: smooth; scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }
.academic-col {
    flex: 0 0 auto; width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    background: #fff; border-radius: 10px;
    margin: 12px 0 10px 5px;
    transition: transform 0.3s ease;
}
.academic-col:hover { transform: translateY(-10px); cursor: pointer; }
.academic-col img {
    width: 100%; object-fit: cover; display: block;
    border-radius: 10px 10px 0 0;
}
.academic-col h3 { margin: 10px 0; font-size: 16px; text-align: center; color: #0e4d82; }
.view-all {
    display: flex; align-items: center; justify-content: center;
    background: #eee; border-radius: 10px;
    margin: 12px 10px 10px 5px;
}
.view-all h3 { margin: 0; padding: 20px; font-size: 18px; }
.view-all a { text-decoration: none; color: #0e4d82; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgb(94,93,99); color: white; border: none;
    padding: 10px; font-size: 24px; cursor: pointer;
    z-index: 1; border-radius: 50%; opacity: 0.7;
    transition: opacity 0.2s;
}
.slider-btn:hover { opacity: 1; }
.slider-btn.left { left: 5px; }
.slider-btn.right { right: 5px; }

/* ── FACILITIES ─────────────────────────────────────────────────── */
.facilities { margin: auto; width: 90%; padding-top: 30px; text-align: center; }
.facilities h2 { font-size: 36px; font-weight: 600; color: #0e4d82; }
.facilities-col {
    flex-basis: 22%; border-radius: 10px; margin-bottom: 5%;
    text-align: center; transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5); overflow: hidden;
}
.facilities-col:hover { transform: translateY(10px); cursor: pointer; }
.facilities-col img { width: 100%; border-radius: 10px 10px 0 0; display: block; }
.facilities-col h3 { margin: 8px 0 15px; font-size: 14px; color: #0e4d82; }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials { width: 80%; margin: auto; padding-top: 30px; text-align: center; }
.testimonials h2 { font-size: 36px; font-weight: 600; color: #0e4d82; }
.rrow {
    display: flex; overflow-x: auto; gap: 20px; padding: 10px;
    scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.testimonials-col {
    flex: 0 0 auto; flex-basis: 44%; min-width: 340px;
    background: #fff3f3; border-radius: 10px;
    margin-bottom: 5%; text-align: left;
    padding: 25px; cursor: pointer; display: flex;
    scroll-snap-align: start;
}
.testimonials-col img {
    height: 100px; width: 100px;
    margin-right: 20px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
.testimonials-col p { padding: 0; text-align: left; color: black; font-size: 14px; line-height: 1.6; }
.testimonials-col h3 { margin-top: 15px; text-align: left; color: #0e4d82; }
.testimonials-col .fa-star,
.testimonials-col .fa-star-half-stroke { color: rgb(177,28,28); }

/* ── CTA ────────────────────────────────────────────────────────── */
.cta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(../image/banner2.jpg);
    background-position: center; background-size: cover;
    border-radius: 10px; text-align: center; padding: 100px 0;
}
.cta h2 { color: #fff; padding: 0; margin-bottom: 20px; font-size: 30px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { display: flex; flex-direction: column; background: #0e4d82; color: white; }
.footer-top { display: flex; gap: 20px; padding: 20px; }
.footer-left { flex: 7; }
.footer-left h2 { margin-left: 10px; font-size: 22px; }
.footer-right {
    flex: 3; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.footer-right h2 { font-size: 20px; margin-bottom: 10px; }
.footer-top p { font-size: 14px; line-height: 1.5; color: #d3d3d3; margin: 0; }
.social-head { text-align: center; margin-bottom: 10px; }
.social-head p { color: #d3d3d3; }
.icons { display: flex; gap: 12px; justify-content: center; }
.icons a { padding: 10px; border-radius: 50%; font-size: 16px; transition: all 0.3s ease; }
.icons a:hover { transform: scale(1.1); }
.facebook { background: rgb(24,119,242); color: white; }
.facebook:hover { background: rgb(5,58,129); }
.instagram { background: rgb(232,102,176); color: white; }
.instagram:hover { background: #C13584; }
.youtube { background: rgb(232,87,87); color: white; }
.youtube:hover { background: rgb(255,0,0); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.3); margin: 0; }
.footer-bottom {
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; padding: 10px; background-color: #07375f; color: #ccc;
}
.footer-bottom p { font-weight: bold; color: #fff; margin: 0; }
.footer-bottom a { text-decoration: none; color: #c4b705; }
.footer-bottom a:hover { text-decoration: underline; color: #fff; }

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */
.about-us { width: 95%; margin: auto; padding-top: 30px; padding-bottom: 50px; }
.about-us h2 { font-size: 40px; text-align: center; color: #07375f; margin-bottom: 0; }
.about-row { display: flex; flex-direction: row; gap: 30px; }
.about-col { flex-basis: 50%; padding: 30px 2px; }
.about-col img { width: 100%; box-shadow: 0 2px 8px rgba(0,0,0,0.5); border-radius: 10px; margin-bottom: 14px; display: block; }
.about-col p { padding: 15px 0 25px; color: black; text-align: justify; font-size: 15px; line-height: 1.8; }
.mobile-btn { display: none; }

/* ── ADMISSION PAGE ─────────────────────────────────────────────── */
.admission { text-align: center; padding: 20px; }
.admission h2 { text-align: center; color: #0e4d82; font-size: 40px; }
.admission-pro {
    display: inline-block; border: 1px solid; color: #fff;
    background: rgb(3,59,58); border-radius: 10px;
    font-weight: 400; margin: 15px 0; padding: 6px 16px;
}
.admission-pro:hover { cursor: pointer; transform: scale(1.05); }
.adm-body { display: flex; flex-direction: row; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
.adm-instruction {
    flex: 2; min-width: 300px;
    text-align: justify; border-right: 2px solid #ddd8d8;
}
.adm-instruction h1 {
    font-size: 20px; display: inline-block;
    border: 1px solid; background: #07375f; color: white;
    border-radius: 10px; padding: 5px 10px;
    text-align: center; margin-left: 20px; margin-bottom: 10px;
}
.adm-instruction p { margin-left: 20px; text-align: justify; font-size: 15px; color: #333; line-height: 1.7; }
.adm-instruction h2 { font-size: 20px; margin-left: 20px; text-align: left; color: #07375f; }
.adm-instruction ul { margin-bottom: 20px; }
.adm-instruction ul li { margin-left: 45px; text-align: left; font-size: 14px; line-height: 1.7; color: #333; }
.highlight-box {
    margin: 0 5px 20px 20px; background: #c7e4fc;
    border-radius: 10px; padding: 15px 20px;
}
.highlight-box h3 { padding-top: 5px; color: #06103d; text-align: left; margin-bottom: 8px; }
.highlight-box ul { margin-left: 18px; }
.highlight-box ul li { font-size: 13.5px; color: #333; line-height: 1.6; }
.adm-contact { margin: 15px 0; }
.adm-contact h2 { margin-left: 20px; text-decoration: underline; }
.adm-contact p { margin-left: 20px; font-size: 14px; line-height: 1.8; color: #333; }
.adm-link { cursor: pointer; color: blue; }
.adm-link:hover { text-decoration: underline; color: green; }
.adm-desktop-btn { margin: 20px 0 20px 30px; font-weight: bold; }
.adm-side { flex: 1; min-width: 200px; }
.adm-col {
    flex-basis: 30%; border-radius: 10px;
    margin-bottom: 10%; transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5); overflow: hidden;
}
.adm-col img { width: 100%; border-radius: 10px 10px 0 0; display: block; }
.adm-col h3 { margin: 10px; padding-bottom: 10px; font-size: 14px; color: #0e4d82; }
.adm-col:hover { transform: translateY(10px); cursor: pointer; }

/* ── BLOG PAGE ──────────────────────────────────────────────────── */
.blog { text-align: center; padding: 20px; font-size: 25px; }
.blog h2 { text-align: center; color: #0e4d82; margin-bottom: 0; font-size: 30px; }
.blog > p { margin-top: 0; color: #555; font-size: 15px; }
.blog-body { display: flex; gap: 30px; flex-direction: column; align-items: center; }
.blog-body h2 {
    background: #07375f; color: #fff; margin-top: 10px;
    border-radius: 10px; display: inline-flex;
    font-size: 24px; padding: 5px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
hr { border: 0; border-top: 2px solid #000; width: 95%; opacity: 0.6; }
.blog-photo {
    display: flex; gap: 20px; overflow-x: auto;
    scroll-snap-type: x mandatory; max-width: 100%;
    padding: 10px 10px 20px;
}
.blog-box {
    flex: 0 0 auto; width: 200px; height: 250px;
    position: relative; overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    border-radius: 10px; scroll-snap-align: start;
    cursor: pointer;
}
.blog-box:hover { transform: translateY(10px); }
.blog-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* VIDEO GRID - 3 columns, proper sizing */
.blog-video {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding-bottom: 20px;
}
.blog-box2 {
    position: relative; overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    border-radius: 10px; background: #000;
    aspect-ratio: 16/9;
}
.blog-box2 iframe {
    width: 100%; height: 100%;
    border: 0; display: block;
}
.blog-box2 .comment {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.65); color: white;
    padding: 5px 10px; border-radius: 5px; font-size: 13px;
}

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.location { text-align: center; }
.location h2 { margin-top: 15px; text-align: center; color: #0e4d82; font-size: 30px; }
.location p { text-align: center; font-size: 17px; color: #777; }
.location iframe { width: 90%; border-radius: 10px; margin-bottom: 10px; }
.contact-us { width: 90%; margin: auto; }
.contact-row { display: flex; justify-content: space-between; flex-wrap: wrap; }
.contact-col { flex-basis: 45%; margin-bottom: 30px; }
.cont-box {
    margin-top: 20px; background-color: white;
    border-radius: 10px; padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    display: flex; align-items: center; margin-bottom: 10px;
}
.cont-box .fa-solid { font-size: 28px; color: #07375f; margin: 10px 30px 10px 10px; }
.cont-box h5 { font-size: 18px; margin-bottom: 5px; color: #07375f; font-weight: 500; }
.cont-box p { padding: 0; color: #555; font-size: 13px; }
.contact-col-right {
    margin-top: 20px; flex-basis: 50%; margin-bottom: 30px;
    background-color: white; padding: 30px 50px;
    border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.contact-col-right h2 { margin-top: 0; font-size: 28px; text-align: center; color: #0e4d82; margin-bottom: 18px; }
.contact-col-right input,
.contact-col-right textarea {
    width: 100%; padding: 15px; margin-bottom: 17px;
    outline: none; border: 1px solid #ccc; box-sizing: border-box;
    font-family: inherit; font-size: 14px;
    transition: border-color 0.2s;
}
.contact-col-right input:focus,
.contact-col-right textarea:focus { border-color: #0e4d82; }

/* ── TOAST ──────────────────────────────────────────────────────── */
.toast {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(80px);
    padding: 14px 28px; border-radius: 8px;
    font-size: 15px; color: #fff; z-index: 99999;
    opacity: 0; transition: all 0.4s ease;
}
.toast.toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.toast-success { background: #1a7a4a; }
.toast.toast-error   { background: #c0392b; }

/* ── POPUP NOTICE ───────────────────────────────────────────────── */
#popup-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.78); z-index: 9999;
    align-items: center; justify-content: center; padding: 20px;
}
#popup-overlay.show { display: flex; }
#popup-box {
    background: #fff; border-radius: 14px; overflow: hidden;
    max-width: 520px; width: 100%; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popIn 0.3s ease;
}
@keyframes popIn { from{transform:scale(0.85);opacity:0;} to{transform:scale(1);opacity:1;} }
#popup-box img { width: 100%; max-height: 380px; object-fit: cover; display: block; }
.popup-body { padding: 20px 24px; }
.popup-body h3 { font-size: 18px; color: #07375f; margin-bottom: 8px; }
.popup-body p { font-size: 14px; color: #555; line-height: 1.7; }
#popup-close {
    position: absolute; top: 10px; right: 14px;
    font-size: 28px; color: #fff; cursor: pointer;
    background: rgba(0,0,0,0.45); border: none;
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
#popup-close:hover { background: #c0392b; }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── NOTICE BOARD / RESULTS / FEE / HIERARCHY / RULES ──────────── */
.inner-page { width: 90%; max-width: 1100px; margin: 40px auto 80px; }
.inner-page h2 { font-size: 36px; font-weight: 600; color: #0e4d82; text-align: center; margin-bottom: 8px; }
.inner-page > p { text-align: center; color: #777; font-size: 14px; margin-bottom: 30px; }

/* Apply page form */
.apply-form-wrap { background: #fff; border-radius: 10px; padding: 36px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); max-width: 700px; margin: 0 auto; }
.apply-form-wrap h3 { font-size: 22px; color: #07375f; margin-bottom: 20px; text-align: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: #333; }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px; border: 1px solid #ccc; border-radius: 6px;
    font-size: 14px; font-family: inherit; outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #0e4d82; }
.form-section-sep { font-size: 13px; font-weight: 700; color: #07375f; border-bottom: 2px solid #eef2f7; padding-bottom: 6px; margin: 8px 0 4px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 700px) {
    nav img { width: 180px; }
    .nav-links ul li { display: block; }
    .nav-links {
        position: fixed; background: #fff;
        height: 100vh; width: 200px;
        top: 0; right: -220px; text-align: left;
        z-index: 1001; transition: right 0.3s ease;
        overflow-y: auto; padding-top: 60px;
        box-shadow: -4px 0 16px rgba(0,0,0,0.1);
    }
    nav .fa-solid { display: block; color: #050505; margin: 10px; padding: 10px; font-size: 18px; cursor: pointer; }
    nav .fa-xmark { position: absolute; top: 14px; right: 14px; }
    .nav-links ul li { padding: 14px 20px; }
    .sub-header h1 { font-size: 50px; }
    .dropdown-menu { position: static; transform: none; box-shadow: none; border: none; border-radius: 0; background: #f0f6ff; animation: none; display: block; padding: 4px 0; }
    .dropdown-menu a { padding: 10px 30px; font-size: 13px; }
    .text-box h2 { font-size: 20px; }
    .about-row { flex-direction: column; }
    .about-col { flex-basis: 100%; }
    .desktop-btn { display: none; }
    .mobile-btn { display: inline-block; margin-top: 20px; }
    .rrow { flex-direction: column; }
    .testimonials { width: 95%; }
    .testimonials-col { min-width: unset; flex-basis: 100%; }
    .blog-video { grid-template-columns: 1fr; }
    .contact-row { flex-direction: column; }
    .contact-col, .contact-col-right { flex-basis: 100%; padding: 20px; }
    .adm-side { display: none; }
    .adm-instruction { border-right: none; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
    .facilities .row { flex-wrap: wrap; }
    .facilities-col { flex-basis: 45%; }
}

/* Logo text fallback when image missing */
.logo-text-fallback {
    font-size: 18px;
    font-weight: 700;
    color: #0e4d82;
    padding: 8px 0;
    display: inline-block;
}

/* Dropdown — works on both hover AND click/touch */
.has-dropdown .dropdown-menu { display: none; }
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { display: block; }

/* Star rating icons fix */
.fa-star { color: rgb(177,28,28); }
.fa-star-half-stroke { color: rgb(177,28,28); }
.star-empty { color: #ccc; }

/* Star rating fallback if Font Awesome doesn't load */
.fa-star::before { content: "\2605"; }
.fa-regular.fa-star::before { content: "\2606"; }

/* ── FOOTER QUICK LINKS ──────────────────────────────────────── */
.footer-top { display: flex; gap: 20px; padding: 30px 20px; flex-wrap: wrap; }
.footer-left { flex: 3; min-width: 200px; }
.footer-links { flex: 1.2; min-width: 140px; }
.footer-links h2 { font-size: 16px; color: #fff; margin-bottom: 14px; margin-left: 0; font-weight: 700; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav li a { color: #d3d3d3; font-size: 13.5px; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.footer-nav li a:hover { color: #fff; }
.footer-nav li a i { font-size: 10px; color: #5ba4d4; }
.footer-contact-info { margin-top: 16px; }
.footer-contact-info p { font-size: 13px; color: #d3d3d3; padding: 3px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.footer-contact-info p i { color: #5ba4d4; margin-top: 3px; flex-shrink: 0; }
.footer-right { flex: 1.5; min-width: 160px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 10px; }

@media(max-width:700px) {
    .footer-top { flex-direction: column; }
    .footer-links { min-width: 100%; }
    .footer-right { align-items: flex-start; }
}

/* ── ICON FALLBACKS (show text if Font Awesome fails) ──────── */
/* Social icon circles always show even without FA */
.facebook i, .instagram i, .youtube i { font-style: normal; }
.facebook i::before { content: "f"; font-weight: bold; }
.instagram i::before { content: "in"; font-weight: bold; font-size: 11px; }
.youtube i::before { content: "yt"; font-weight: bold; font-size: 11px; }

/* Only apply fallback if FA NOT loaded */
@supports not (font-family: 'Font Awesome 6 Free') {
    .fa-solid, .fa-brands, .fa-regular { font-family: sans-serif !important; }
}
