/* ============================================================
   MTNC Portal - Main Stylesheet
   Mother Teresa Nursing College, Sonwahi Surajpur C.G.
   ============================================================ */

:root {
    --primary:   #003366;
    --primary-dark: #002244;
    --secondary: #2ecc71;
    --secondary-dark: #27ae60;
    --accent:    #f8f9fa;
    --text:      #333;
    --text-light:#666;
    --white:     #ffffff;
    --shadow:    0 4px 20px rgba(0,0,0,0.08);
    --radius:    10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; color: var(--text); overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ===== TOP INFO BAR ===== */
.top-bar-strip {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 7px 5%;
    font-size: 0.82rem;
}
.top-bar-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.top-bar-left  { display:flex; gap:20px; flex-wrap:wrap; }
.top-bar-left span { display:flex; align-items:center; gap:6px; }
.top-bar-left i { color: var(--secondary); }
.top-bar-right { display:flex; gap:12px; }
.top-bar-right a { color: rgba(255,255,255,0.75); font-size:1rem; transition:color 0.2s; }
.top-bar-right a:hover { color: var(--secondary); }

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    align-items: center;
    padding: 10px 4%;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 15px;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* Logo */
.logo-link { display:flex; align-items:center; gap:12px; text-decoration:none; flex-shrink:0; }
.navbar-logo {
    width: 70px; height: 70px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo-text { display:flex; flex-direction:column; line-height:1.2; }
.logo-name  { font-size: 1rem; font-weight: 700; color: var(--primary); }
.logo-sub   { font-size: 0.7rem; color: var(--text-light); }
.logo-motto { font-size: 0.68rem; color: var(--secondary); font-style: italic; }

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.nav-links > li > a {
    display: block;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: rgba(0,51,102,0.08); color: var(--secondary); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 220px;
    list-style: none;
    z-index: 999;
    border-top: 3px solid var(--secondary);
    padding: 5px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.88rem;
    color: var(--text);
    transition: background 0.2s;
}
.dropdown li a i { color: var(--secondary); width: 16px; }
.dropdown li a:hover { background: rgba(0,51,102,0.06); color: var(--primary); }
.dd-arrow { font-size: 0.65rem; margin-left: 3px; }

/* Apply Now button */
.btn-apply-nav {
    background: var(--secondary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-apply-nav:hover { background: var(--secondary-dark); transform: translateY(-2px); }

/* Burger */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    margin-left: auto;
    padding: 5px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--primary-dark);
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 8%;
}
.slide.active { opacity: 1; z-index: 1; }
.hero-default { background: linear-gradient(135deg, #002244, #003d80 50%, #005099); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,20,50,0.85) 0%, rgba(0,20,50,0.5) 60%, transparent 100%);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    animation: slideIn 0.8s ease;
}
@keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46,204,113,0.2);
    border: 1px solid rgba(46,204,113,0.5);
    color: #2ecc71;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    margin-bottom: 18px;
}
.slide-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
}
.slide-content h1 span { color: var(--secondary); }
.slide-content p { font-size: 1rem; opacity: 0.9; line-height: 1.7; margin-bottom: 28px; }
.slide-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.slide-btn-main {
    background: var(--secondary);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s;
}
.slide-btn-main:hover { background: var(--secondary-dark); transform: translateY(-3px); }
.slide-btn-alt {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.slide-btn-alt:hover { background: rgba(255,255,255,0.25); }

/* Slider controls */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: var(--secondary); border-color: var(--secondary); }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--secondary); transform: scale(1.3); }

/* ===== STATS ===== */
.stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background: white;
    box-shadow: var(--shadow);
}
.stat-box {
    flex: 1;
    text-align: center;
    padding: 35px 20px;
    border-right: 1px solid #eee;
    transition: background 0.3s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(0,51,102,0.03); }
.stat-box i { font-size: 2rem; color: var(--secondary); margin-bottom: 10px; display: block; }
.stat-box h3 { font-size: 2.2rem; color: var(--primary); font-weight: 800; margin-bottom: 5px; }
.stat-box p  { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 600; }

/* ===== ABOUT STRIP ===== */
.about-strip { background: #f8f9fa; padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: center; }
.about-img-wrap { text-align: center; }
.about-logo-big {
    width: 200px; height: 200px;
    border-radius: 50%; object-fit: cover;
    border: 5px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin-bottom: 15px;
}
.about-accred { display:flex; flex-direction:column; gap:6px; }
.about-accred span {
    font-size: 0.82rem;
    color: var(--secondary-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.about-accred span i { color: var(--secondary); }
.section-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 8px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}
.section-title::after {
    content: '';
    display: block;
    width: 55px; height: 4px;
    background: var(--secondary);
    border-radius: 3px;
    margin: 10px auto 0;
}
.section-title.left-align { text-align: left; }
.section-title.left-align::after { margin-left: 0; }
.section-title.light { color: white; }
.section-title.light::after { background: rgba(255,255,255,0.4); }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 40px; }
.section-sub.light { color: rgba(255,255,255,0.75); }
.about-text p { line-height: 1.8; color: #444; margin-bottom: 12px; }
.about-btns { display:flex; gap:12px; margin-top:20px; flex-wrap:wrap; }

/* Buttons */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s;
}
.btn-main:hover { background: var(--secondary-dark); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: 0.3s;
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-outline-green:hover { background: var(--secondary); color: white; }

.btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-light:hover { background: rgba(255,255,255,0.25); }

.section-cta { text-align: center; margin-top: 40px; }

/* ===== COURSES ===== */
.courses-preview { padding: 80px 0; background: white; }
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}
.course-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}
.course-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.course-img-wrap { position: relative; }
.course-img-wrap img { width: 100%; height: 180px; object-fit: cover; }
.seats-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 15px;
}
.course-info { padding: 20px; }
.course-info h3 { color: var(--primary); font-size: 1rem; margin-bottom: 8px; }
.course-meta { font-size: 0.85rem; color: var(--secondary-dark); margin-bottom: 8px; display:flex; gap:6px; align-items:center; }
.course-eligibility { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; margin-bottom: 15px; }

.courses-info-bar { background: #e8f5e9; padding: 14px 5%; border-bottom: 2px solid #c8e6c9; }
.info-pills { display:flex; gap:30px; flex-wrap:wrap; }
.info-pills span { font-size: 0.88rem; color: #1a5c2e; font-weight: 500; }
.info-pills span i { color: var(--secondary); margin-right: 6px; }

/* ===== FACILITIES ===== */
.facilities-section { background: var(--primary); padding: 80px 0; }
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.facility-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 28px;
    color: white;
    transition: background 0.3s, transform 0.3s;
}
.facility-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-5px); }
.facility-card i { font-size: 2.2rem; color: var(--secondary); display: block; margin-bottom: 14px; }
.facility-card h4 { font-size: 1rem; margin-bottom: 8px; }
.facility-card p  { font-size: 0.85rem; opacity: 0.8; line-height: 1.6; }

/* Facilities Full Page */
.facilities-full-section { padding: 80px 0; background: #f8f9fa; }
.facilities-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.facility-full-card {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.facility-full-card:hover { transform: translateY(-4px); }
.facility-full-icon {
    background: rgba(0,51,102,0.08);
    border-radius: 12px;
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.facility-full-icon i { font-size: 1.6rem; color: var(--primary); }
.facility-full-body h3 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.facility-full-body p  { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }
.facilities-cta-box {
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}
.facilities-cta-box h3 { font-size: 1.5rem; margin-bottom: 10px; }
.facilities-cta-box p  { opacity: 0.85; margin-bottom: 20px; }

/* ===== NOTICES ===== */
.notices-section { padding: 80px 0; background: white; }
.notices-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.notices-left p { color: var(--text-light); line-height: 1.7; margin-top: 10px; }
.notices-right { border-left: 3px solid #eee; padding-left: 30px; }
.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.notice-item:last-child { border-bottom: none; }
.notice-item .date {
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 55px;
    text-align: center;
    flex-shrink: 0;
}
.notice-item h4 { font-size: 0.9rem; color: var(--text); line-height: 1.5; font-weight: 500; }

/* ===== SCHOLARSHIP CTA ===== */
/* ===== ENQUIRY SECTION ===== */
.enquiry-section { background: linear-gradient(135deg, #003366 0%, #005580 60%, #00704a 100%); padding: 70px 0; }
.enquiry-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.enquiry-left .section-eyebrow { color: #2ecc71; }
.enquiry-left .section-title { color: white; }
.enquiry-left .section-sub { color: rgba(255,255,255,0.75); }
.enquiry-features { list-style: none; padding: 0; margin: 20px 0 0; }
.enquiry-features li { color: rgba(255,255,255,0.85); padding: 6px 0; font-size: 0.95rem; }
.enquiry-features li i { color: #2ecc71; margin-right: 8px; }
.enquiry-form-box { background: white; border-radius: 16px; padding: 35px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.enquiry-form-box h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.2rem; }
.enquiry-form-box .eq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.enquiry-form-box input[type="text"],
.enquiry-form-box input[type="tel"],
.enquiry-form-box textarea { width: 100%; padding: 12px 15px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-size: 14px; outline: none; transition: border-color 0.2s; box-sizing: border-box; margin-bottom: 12px; font-family: inherit; }
.enquiry-form-box input:focus,
.enquiry-form-box textarea:focus { border-color: var(--secondary); }
.enquiry-form-box textarea { resize: vertical; min-height: 80px; margin-bottom: 15px; }
.eq-submit-btn { width: 100%; padding: 14px; background: var(--primary); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.eq-submit-btn:hover { background: var(--secondary); }
.eq-or { text-align: center; color: #999; margin: 15px 0 10px; font-size: 13px; }
.eq-call-btn { display: block; text-align: center; padding: 12px; background: #e8f5e9; color: var(--secondary); border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: background 0.2s; }
.eq-call-btn:hover { background: var(--secondary); color: white; }
@media(max-width:768px) {
    .enquiry-inner { grid-template-columns: 1fr; gap: 30px; }
    .enquiry-form-box .eq-row { grid-template-columns: 1fr; }
}

.scholarship-cta { background: linear-gradient(135deg, #e8f5e9, #f0fff4); padding: 40px 0; }
.scholarship-cta-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    border-radius: var(--radius);
    padding: 30px 35px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary);
}
.schol-cta-icon { font-size: 3rem; color: var(--secondary); flex-shrink: 0; }
.schol-cta-text { flex: 1; }
.schol-cta-text h3 { color: var(--primary); margin-bottom: 5px; }
.schol-cta-text p  { color: var(--text-light); font-size: 0.9rem; }

/* ===== SCHOLARSHIP PAGE ===== */
.scholarship-section { padding: 80px 0; }
.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.scholarship-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
    transition: transform 0.3s;
}
.scholarship-card:hover { transform: translateY(-5px); }
.schol-header { display:flex; align-items:flex-start; gap:12px; margin-bottom:15px; }
.schol-header i { font-size:1.8rem; color:var(--secondary); flex-shrink:0; margin-top:3px; }
.schol-header h3 { color: var(--primary); font-size: 1rem; line-height: 1.4; }
.schol-provider { color: var(--secondary-dark); font-size: 0.82rem; margin-bottom: 12px; }
.schol-provider i { margin-right: 5px; }
.schol-desc { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin-bottom: 15px; }
.schol-eligibility { background: #f8f9fa; border-radius: 8px; padding: 12px; margin-bottom: 12px; }
.schol-eligibility strong { color: var(--primary); font-size: 0.85rem; display:block; margin-bottom:5px; }
.schol-eligibility p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.schol-amount { color: var(--secondary-dark); font-size: 0.88rem; font-weight: 600; }
.schol-amount i { margin-right: 5px; }
.scholarship-note {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, #e8f5fe, #f0f8ff);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 40px;
    border-left: 5px solid #3498db;
}
.scholarship-note i { font-size: 2rem; color: #3498db; flex-shrink: 0; margin-top: 3px; }
.scholarship-note strong { color: var(--primary); display: block; font-size: 1.05rem; margin-bottom: 6px; }
.scholarship-note p { color: var(--text-light); line-height: 1.7; font-size: 0.9rem; }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, #005099);
    color: white;
    text-align: center;
    padding: 70px 5% 65px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
}
.page-banner h1 { font-size: 2.5rem; position: relative; margin-bottom: 10px; }
.page-banner p  { font-size: 1rem; opacity: 0.85; position: relative; }

/* ===== INNER PAGES ===== */
.inner-page { padding: 60px 5%; }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.content-main {}
.inner-heading { color: var(--primary); font-size: 1.8rem; margin-bottom: 5px; }
.inner-sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 20px; }
.inner-body { color: #444; line-height: 1.9; font-size: 0.95rem; }
.inner-body p { margin-bottom: 15px; }

.highlight-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.highlight-box {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 4px solid var(--secondary);
}
.highlight-box i { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.highlight-box strong { display: block; color: var(--primary); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.highlight-box span { color: var(--text-light); font-size: 0.88rem; }

.sidebar-card {
    background: white;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}
.sidebar-card h4 { color: var(--primary); margin-bottom: 15px; font-size: 1rem; }
.info-list { list-style: none; }
.info-list li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.88rem; color: var(--text-light); display:flex; align-items:center; gap:8px; }
.info-list li:last-child { border-bottom: none; }
.info-list li i { color: var(--secondary); width: 16px; flex-shrink: 0; }
.info-list li a { color: var(--text-light); transition: color 0.2s; }
.info-list li a:hover { color: var(--primary); }

/* Message Card */
.message-card { background: white; border-radius: var(--radius); padding: 35px; box-shadow: var(--shadow); }
.message-header { display:flex; gap:20px; align-items:flex-start; margin-bottom:20px; padding-bottom:20px; border-bottom:2px solid #f0f0f0; }
.message-photo img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); }
.message-info h2 { color: var(--primary); margin-bottom: 5px; }
.message-info p  { color: var(--text-light); font-size: 0.88rem; margin-bottom: 3px; }
.message-quote { font-size: 3rem; color: var(--secondary); opacity: 0.3; line-height: 1; margin-bottom: 10px; }
.message-body { color: #444; line-height: 1.9; font-size: 0.95rem; }
.message-body p { margin-bottom: 14px; }

/* Vision Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 40px; }
.vm-card { background: white; border-radius: var(--radius); padding: 35px; box-shadow: var(--shadow); }
.vision-card { border-top: 5px solid var(--primary); }
.mission-card { border-top: 5px solid var(--secondary); }
.vm-icon { font-size: 2.5rem; margin-bottom: 15px; }
.vision-card .vm-icon  { color: var(--primary); }
.mission-card .vm-icon { color: var(--secondary); }
.vm-card h2 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; }
.vm-body { color: #444; line-height: 1.8; font-size: 0.92rem; }

.motto-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary), #005099);
    color: white;
    padding: 35px;
    border-radius: var(--radius);
    margin: 30px 0;
    text-align: center;
}
.motto-banner i { font-size: 2rem; color: #e74c3c; opacity: 0.8; }
.motto-banner h3 { font-size: 1rem; opacity: 0.8; margin-bottom: 5px; }
.motto-text { font-size: 2.2rem; font-weight: 800; font-style: italic; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.value-card {
    background: white;
    border-radius: var(--radius);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-5px); }
.value-card i { font-size: 2rem; color: var(--secondary); margin-bottom: 12px; display: block; }
.value-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 0.95rem; }
.value-card p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ===== ADMISSION PAGE ===== */
.admission-section { padding: 60px 5%; }
.admission-container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 35px; max-width: 1100px; margin: 0 auto; }
.form-wrapper { background: white; padding: 35px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-header { display:flex; align-items:center; gap:15px; margin-bottom:25px; padding-bottom:20px; border-bottom:2px solid #f0f0f0; }
.form-header h2 { margin:0; color:var(--primary); font-size:1.3rem; }
.form-header p  { margin:4px 0 0; color:#888; font-size:0.85rem; }
.input-group { display:flex; gap:15px; margin-bottom:18px; }
.input-group input, .input-group select { flex:1; }
input, select, textarea {
    width:100%; padding:12px 15px; border:1.5px solid #e0e0e0;
    border-radius:8px; font-size:15px; font-family:inherit;
    outline:none; transition:0.3s; box-sizing:border-box;
}
input:focus, select:focus, textarea:focus { border-color:var(--secondary); box-shadow:0 0 0 3px rgba(46,204,113,0.12); }
textarea { margin-bottom:18px; resize:vertical; }
.btn-primary {
    width:100%; padding:14px; background:var(--secondary); border:none;
    color:white; font-size:16px; font-weight:700; border-radius:30px;
    cursor:pointer; transition:0.3s; font-family:inherit; display:flex; align-items:center; justify-content:center; gap:8px;
}
.btn-primary:hover { background:var(--secondary-dark); transform:translateY(-2px); }
.form-contact-note { margin-top:20px; padding-top:18px; border-top:1px solid #eee; font-size:0.88rem; color:#555; }
.form-contact-note p { margin-bottom:6px; }
.form-contact-note a { color:var(--primary); font-weight:600; }
.alert { padding:14px 18px; border-radius:8px; margin-bottom:20px; font-weight:500; display:flex; align-items:center; gap:10px; }
.alert.success { background:#d4edda; color:#155724; border-left:4px solid var(--secondary); }
.alert.danger  { background:#f8d7da; color:#721c24; border-left:4px solid #e74c3c; }

.admission-info { background:var(--primary); color:white; padding:30px; border-radius:var(--radius); }
.admission-info h3 { margin:0 0 20px; font-size:1.1rem; color:#aef; }
.eligibility-item { background:rgba(255,255,255,0.08); border-radius:8px; padding:16px; margin-bottom:15px; }
.eligibility-item h4 { margin:0 0 10px; color:var(--secondary); font-size:0.9rem; }
.eligibility-item ul, .admission-docs ul { list-style:none; padding:0; margin:0; }
.eligibility-item ul li, .admission-docs ul li { font-size:0.83rem; padding:4px 0 4px 18px; position:relative; opacity:0.9; }
.eligibility-item ul li::before, .admission-docs ul li::before { content:'✓'; color:var(--secondary); position:absolute; left:0; font-weight:bold; }
.admission-docs { margin-top:15px; padding-top:15px; border-top:1px solid rgba(255,255,255,0.1); }
.admission-docs h4 { margin:0 0 10px; color:var(--secondary); font-size:0.9rem; }

/* ===== FACULTY ===== */
.faculty-section { padding: 60px 5%; }
.faculty-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 22px; }
.f-card { background:white; text-align:center; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:transform 0.3s; }
.f-card:hover { transform:translateY(-6px); }
.f-card img { width:110px; height:110px; border-radius:50%; object-fit:cover; margin:25px auto 0; display:block; border:3px solid var(--secondary); }
.f-card-body { padding:15px 20px 22px; }
.f-card h3 { color:var(--primary); margin:8px 0 4px; font-size:1rem; }
.f-card .designation { color:var(--secondary-dark); font-size:0.85rem; margin-bottom:4px; }
.f-card .qualification { color:var(--text-light); font-size:0.82rem; }

/* ===== GALLERY ===== */
.gallery-section { padding: 60px 5%; }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)); gap:18px; }
.gallery-item { position:relative; border-radius:var(--radius); overflow:hidden; cursor:pointer; box-shadow:var(--shadow); aspect-ratio:4/3; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.gallery-item:hover img { transform:scale(1.07); }
.gallery-overlay { position:absolute; inset:0; background:rgba(0,51,102,0.72); color:white; display:flex; flex-direction:column; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; gap:10px; }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay i { font-size:2rem; }
.gallery-overlay p { font-size:0.9rem; padding:0 15px; text-align:center; }

/* Lightbox */
.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:9999; align-items:center; justify-content:center; }
.lightbox.active { display:flex; }
.lightbox-content { max-width:90vw; max-height:90vh; text-align:center; }
.lightbox-content img { max-width:100%; max-height:80vh; border-radius:8px; }
.lightbox-content p { color:white; margin-top:12px; }
.lightbox-close { position:absolute; top:20px; right:30px; color:white; font-size:2.5rem; cursor:pointer; z-index:10000; }
.lightbox-close:hover { color:var(--secondary); }

/* ===== CONTACT ===== */
.contact-section { padding: 60px 5%; }
.contact-wrapper { display:grid; grid-template-columns:1fr 1.3fr; gap:40px; align-items:start; }
.contact-info h3 { color:var(--primary); font-size:1.6rem; margin-bottom:25px; }
.contact-detail { display:flex; gap:15px; align-items:flex-start; margin-bottom:22px; }
.contact-detail i { color:var(--secondary); font-size:1.3rem; margin-top:3px; min-width:20px; }
.contact-detail strong { display:block; color:var(--primary); margin-bottom:2px; }
.contact-detail p, .contact-detail a { color:#555; text-decoration:none; }
.contact-detail a:hover { color:var(--secondary); }
.btn-whatsapp { display:inline-flex; align-items:center; gap:8px; background:#25d366; color:white; padding:12px 22px; border-radius:25px; text-decoration:none; font-weight:bold; margin-top:10px; transition:background 0.3s; }
.btn-whatsapp:hover { background:#1da851; }
.map-address-tag { background:var(--primary); color:white; padding:10px 18px; border-radius:0 0 var(--radius) var(--radius); font-size:0.88rem; text-align:center; }
.map-address-tag i { color:var(--secondary); margin-right:6px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary-dark); color: #bbb; padding: 60px 0 0; }
.footer-content { max-width:1200px; margin:0 auto; padding:0 5% 50px; display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr; gap:35px; }
.footer-about {}
.footer-logo { width: 75px; height: 75px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); margin-bottom: 15px; }
.footer-col h3 { color: white; margin-bottom: 18px; font-size: 1rem; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content:''; display:block; width:35px; height:2px; background:var(--secondary); position:absolute; bottom:0; left:0; }
.footer-col p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 10px; }
.footer-motto { color: var(--secondary) !important; font-style: italic; font-size: 0.9rem; }
.footer-social { display:flex; gap:8px; flex-wrap:wrap; margin-top:15px; }
.social-icon-btn { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:0.9rem; transition:transform 0.2s, opacity 0.2s; }
.social-icon-btn:hover { transform:scale(1.15); opacity:0.9; }
.footer-col ul { list-style:none; padding:0; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { color:#bbb; font-size:0.88rem; transition:color 0.2s, padding-left 0.2s; display:flex; align-items:center; gap:6px; }
.footer-col ul li a i { color:var(--secondary); width:12px; font-size:0.7rem; }
.footer-col ul li a:hover { color:white; padding-left:4px; }
.footer-contact-item { display:flex; gap:10px; margin-bottom:12px; align-items:flex-start; }
.footer-contact-item i { color:var(--secondary); margin-top:3px; min-width:16px; font-size:0.9rem; }
.footer-contact-item p { font-size:0.85rem; line-height:1.5; }
.footer-contact-item a { color:#bbb; }
.footer-contact-item a:hover { color:white; }
.footer-apply-btn { display:inline-flex; align-items:center; gap:8px; background:var(--secondary); color:white; padding:11px 20px; border-radius:25px; font-weight:700; font-size:0.85rem; margin-top:15px; transition:background 0.3s; }
.footer-apply-btn:hover { background:var(--secondary-dark); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); text-align:center; padding:18px 5%; font-size:0.82rem; color:#888; }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position:fixed; bottom:25px; right:25px;
    background:#25d366; color:white; width:58px; height:58px;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:1.8rem; box-shadow:0 4px 15px rgba(37,211,102,0.4);
    z-index:888; transition:transform 0.3s;
}
.whatsapp-float:hover { transform:scale(1.1); }

/* ===== Scroll Top ===== */
.scroll-top {
    position:fixed; bottom:90px; right:25px;
    background:var(--primary); color:white; width:42px; height:42px;
    border-radius:50%; display:none; align-items:center; justify-content:center;
    font-size:1rem; border:none; cursor:pointer; z-index:888;
    box-shadow:var(--shadow); transition:background 0.3s;
}
.scroll-top.visible { display:flex; }
.scroll-top:hover { background:#005099; }

/* ===== NO CONTENT ===== */
.no-content-msg { text-align:center; padding:60px 20px; color:#888; grid-column:1/-1; }
.no-content-msg i { font-size:4rem; color:#ccc; margin-bottom:15px; display:block; }
.no-content-msg h3 { margin-bottom:8px; color:#555; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.05); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes countUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Animate on scroll — classes added via JS */
.anim-fadeup   { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-fadeleft { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-faderight{ opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-zoomin   { opacity: 0; transform: scale(0.88); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-visible  { opacity: 1 !important; transform: none !important; }

/* Stagger delay */
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.4s; }
.anim-d5 { transition-delay: 0.5s; }

/* Animated logo float */
.about-logo-big { animation: float 4s ease-in-out infinite; }

/* Stat box count animation */
.stat-box h3 { animation: countUp 0.5s ease; }

/* WhatsApp pulse */
.whatsapp-float { animation: pulse 2.5s ease-in-out infinite; }

/* Navbar logo hover */
.navbar-logo { transition: transform 0.3s; }
.logo-link:hover .navbar-logo { transform: scale(1.05) rotate(3deg); }

/* Course card shimmer on hover */
.course-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    background-size: 200%;
    opacity: 0;
    transition: opacity 0.3s;
}
.course-card { position: relative; overflow: hidden; }
.course-card:hover::before { opacity: 1; animation: shimmer 0.8s ease; }

/* Facility card icon bounce */
.facility-card:hover i { animation: float 0.8s ease; }
.facility-full-card:hover .facility-full-icon i { animation: pulse 0.6s ease; }

/* Value card icon */
.value-card:hover i { animation: pulse 0.5s ease; }

/* Scholarship card */
.scholarship-card:hover .schol-header i { animation: pulse 0.5s ease; }

/* Page banner animated background */
.page-banner { animation: fadeInUp 0.5s ease; }

/* Slide content animation on active */
.slide.active .slide-content { animation: slideIn 0.7s ease forwards; }
.slide.active .slide-badge   { animation: fadeInUp 0.5s ease 0.1s both; }
.slide.active h1             { animation: fadeInUp 0.6s ease 0.2s both; }
.slide.active p              { animation: fadeInUp 0.6s ease 0.35s both; }
.slide.active .slide-btns    { animation: fadeInUp 0.6s ease 0.5s both; }

/* Hover transitions on all clickable elements */
.f-card, .gallery-item, .course-card, .facility-full-card, .scholarship-card, .value-card {
    will-change: transform;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .facility-full-card { min-width: 0; }
}

@media (max-width: 992px) {
    .burger { display: block; }
    .nav-links {
        display: none; position: absolute;
        top: 100%; left: 0; right: 0;
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        flex-direction: column; gap: 0;
        padding: 10px 0;
    }
    .nav-links.open { display: flex; }
    .nav-links > li > a { padding: 12px 20px; border-radius: 0; }
    .dropdown { position: static; border-radius: 0; box-shadow: none; border-top: none; background: #f8f9fa; display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .navbar { position: relative; flex-wrap: wrap; }
    .btn-apply-nav { display: none; }

    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap { order: -1; }
    .content-layout { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .notices-wrapper { grid-template-columns: 1fr; }
    .notices-right { border-left: none; padding-left: 0; border-top: 3px solid #eee; padding-top: 20px; }
    .admission-container { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .scholarship-cta-inner { flex-direction: column; text-align: center; }
    .facilities-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar-strip { display: none; }
    .hero-slider { height: 70vh; }
    .slide-content h1 { font-size: 1.8rem; }
    .stats { flex-wrap: wrap; }
    .stat-box { flex: 0 0 50%; border-right: 1px solid #eee; border-bottom: 1px solid #eee; }
    .page-banner h1 { font-size: 1.8rem; }
    .footer-content { grid-template-columns: 1fr; gap: 25px; }
    .input-group { flex-direction: column; }
    .navbar-logo { width: 55px; height: 55px; }
    .about-logo-big { width: 150px; height: 150px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
