/* =========================================
   1. CORE THEME & VARIABLES
   ========================================= */
:root {
    /* Colors */
    --primary-color: #2c3e50;  /* Standard Primary (Navy) */
    --accent-color: #ffc107;   /* Standard Accent (Gold/Yellow) */
    --text-dark: #333333;      /* Standard Text */
    --light-bg: #f8f9fa;
    --brand-green: #008f5d;    /* Specific to Branch/Contact */
    --school-green: #198754;   /* Specific Green variation */
    --brand-red: #cc181e;      /* YouTube/Video elements */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-gold: linear-gradient(135deg, #ffc107 0%, #ffdb58 100%);
    --gradient-footer: linear-gradient(180deg, #1a252f 0%, #2c3e50 100%);
}

body {
    font-family: 'Roboto', 'Outfit', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

a { text-decoration: none; }

/* =========================================
   2. COMMON UTILITIES & ANIMATIONS
   ========================================= */
.section-padding { padding: 80px 0; }

.section-subtitle {
    display: inline-block;
    color: #4e57d4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 30px; height: 2px; background-color: var(--accent-color);
}

/* Background Utilities */
.bg-light-section {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Animated Background Icons */
#bg-icon-container {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; overflow: hidden; pointer-events: none; opacity: 0.05; 
}

.bg-icon { 
    position: absolute; filter: grayscale(100%); object-fit: contain; display: block; 
    animation: drift 20s infinite linear;
}

@keyframes drift {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes slideUpSoft {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-text { animation: slideUpSoft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.fade-in { animation: fadeIn 0.5s forwards; }

/* =========================================
   3. NAVIGATION BAR
   ========================================= */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
    border-bottom: 3px solid var(--accent-color);
}

.navbar-brand {
    font-weight: 700; font-size: 1.5rem; color: var(--primary-color) !important;
    display: flex; align-items: center; gap: 10px;
}
.navbar-brand img { max-height: 50px; }
.navbar-brand i { color: var(--accent-color); font-size: 1.8rem; }

.nav-link {
    color: var(--primary-color) !important; font-weight: 500; margin-left: 15px; transition: color 0.3s; position: relative;
}
.nav-link:hover, .dropdown-item:hover { color: var(--accent-color) !important; }

/* Dropdowns */
.dropdown-menu { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 10px; margin-top: 15px; }
.dropdown-item { padding: 10px 20px; font-weight: 500; color: var(--primary-color); transition: all 0.2s; }
.dropdown-item:hover { background-color: #f8f9fa; padding-left: 25px; }

/* Buttons */
.btn-apply {
    background-color: var(--accent-color); color: var(--primary-color); font-weight: 700;
    padding: 8px 25px; border-radius: 50px; border: none; margin-left: 15px; transition: all 0.3s;
}
.btn-apply:hover { background-color: #e0a800; transform: translateY(-2px); color: #fff; }

.btn-map {
    width: 100%; border: 2px solid var(--primary-color); color: var(--primary-color); font-weight: 600;
    padding: 10px; border-radius: 8px; transition: all 0.3s; display: inline-block; text-align: center;
}
.btn-map:hover { background: var(--primary-color); color: white; }

/* Submenu Fix */
.dropdown-menu li { position: relative; }
@media (min-width: 992px) {
    .dropdown-menu .dropdown-toggle::after { border-left: 0.3em solid; border-top: 0.3em solid transparent; border-bottom: 0.3em solid transparent; border-right: 0; margin-left: 0.5em; vertical-align: middle; }
    .dropdown-menu .submenu { display: none; position: absolute; left: 100%; top: -7px; margin-left: 0.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 10px; min-width: 200px; background: #fff; list-style: none; padding: 0.5rem 0; border: 1px solid rgba(0,0,0,.15); }
    .dropdown-menu > li:hover > .submenu { display: block; }
}
@media (max-width: 991px) {
    .navbar-nav { margin-top: 20px; }
    .nav-link { margin-left: 0; padding: 10px 0; }
    .btn-apply { margin-left: 0; margin-top: 15px; width: 100%; display: block; }
    .dropdown-menu .submenu { position: static; display: block; margin-left: 20px; border-left: 2px solid var(--accent-color); background: transparent; box-shadow: none; border: none; padding-left: 10px; }
}

/* =========================================
   4. QUICK LINKS
   ========================================= */
.quick-links-bar {
    background-color: #343a40; border-bottom: 4px solid var(--accent-color); position: relative; z-index: 10;
}
.quick-link-item {
    color: #fff; text-decoration: none; display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 15px 10px; transition: all 0.3s ease; height: 100%; cursor: pointer;
}
.quick-link-item:hover { background-color: rgba(255,255,255,0.1); transform: translateY(-3px); color: var(--accent-color); }
.quick-link-item i { font-size: 1.5rem; color: var(--accent-color); transition: transform 0.3s ease; }
.quick-link-item:hover i { transform: scale(1.2) rotate(5deg); }
.quick-link-text { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2; }

/* =========================================
   5. MODERN FOOTER
   ========================================= */
.footer-section {
    background: var(--gradient-footer);
    color: #fff;
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

/* Wave Decoration */
.footer-top-wave svg { display: block; width: 100%; height: auto; max-height: 100px; }
.relative-z { position: relative; z-index: 2; padding-top: 40px; }

/* Brand Box */
.footer-logo-img { max-height: 70px; background: #fff; padding: 10px; border-radius: 8px; margin-bottom: 20px; }

/* Social Icons */
.social-icons-modern { display: flex; gap: 10px; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; color: #fff;
    transition: all 0.3s ease; text-decoration: none; border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { transform: translateY(-3px); color: #fff; }
.social-btn.fb:hover { background: #3b5998; border-color: #3b5998; }
.social-btn.x:hover { background: #000; border-color: #000; }
.social-btn.insta:hover { background: #E1306C; border-color: #E1306C; }
.social-btn.yt:hover { background: #FF0000; border-color: #FF0000; }

/* Headings */
.footer-heading {
    color: var(--accent-color); font-weight: 700; margin-bottom: 25px; position: relative;
    padding-bottom: 10px; font-family: 'Playfair Display', serif; letter-spacing: 0.5px;
}
.footer-heading::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px;
    background-color: var(--accent-color); border-radius: 2px;
}

/* Links List */
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { color: #ccc; text-decoration: none; transition: all 0.3s ease; display: flex; align-items: center; }
.footer-links-list a::before {
    content: '\f105'; font-family: "Font Awesome 6 Free"; font-weight: 900;
    margin-right: 8px; color: var(--accent-color); transition: margin-right 0.3s;
}
.footer-links-list a:hover { color: #fff; padding-left: 5px; }

/* Contact Info Boxes */
.contact-info-box { display: flex; margin-bottom: 15px; align-items: flex-start; }
.contact-info-box .icon-box {
    min-width: 35px; height: 35px; background: rgba(255, 193, 7, 0.15); color: var(--accent-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-right: 15px; font-size: 0.9rem;
}
.contact-info-box p { margin: 0; color: #ccc; font-size: 0.95rem; line-height: 1.5; }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; margin-top: 20px; color: #888; font-size: 0.9rem; }
.dev-link { color: var(--accent-color); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.dev-link:hover { color: #fff; text-decoration: underline; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: #FFF;
    border-radius: 50px; text-align: center; font-size: 24px; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none;
    padding: 12px 24px; transition: all 0.3s ease;
}
.whatsapp-float:hover { background-color: #20BA5A; color: #FFF; transform: scale(1.05); box-shadow: 0 6px 14px rgba(0,0,0,0.4); }
.whatsapp-icon { font-size: 28px; margin-right: 10px; }
.whatsapp-text { font-weight: 700; font-size: 16px; }

/* =========================================
   6. PAGE HEADERS & HEROES
   ========================================= */
/* Default Page Header */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1577896334698-13c1eed8880d?q=80&w=1000&auto=format&fit=crop');
    background-size: cover; background-position: center; padding: 100px 0; color: white; text-align: center; margin-bottom: 0;
}

/* Home Carousel */
#schoolHeroCarousel, .carousel-item { height: 85vh; min-height: 500px; background-color: #000; }
.carousel-item img, .carousel-item video { object-fit: cover; height: 100%; width: 100%; opacity: 0.7; }
.carousel-caption { bottom: 35%; z-index: 2; }
.carousel-caption h2 { font-size: 3.5rem; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.6); margin-bottom: 20px; }
.carousel-caption p { font-size: 1.25rem; text-shadow: 1px 1px 2px rgba(0,0,0,0.6); }
.carousel-indicators [data-bs-target] { background-color: var(--accent-color); height: 5px; }

/* Specific Page Heroes */
#awardHero, #faqHero, #admissionHero { height: 50vh; min-height: 400px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
#awardHero { background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('{{asset('website/images/awards_hero.jpg')}}'); }
#faqHero { background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('{{asset('website/images/faq_hero.jpg')}}'); }
#admissionHero { background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('{{asset('website/images/admission_hero.jpg')}}'); }
#awardHero h1, #faqHero h1, #admissionHero h1 { font-size: 3.5rem; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.6); }

@media (max-width: 991px) {
    #awardHero, #faqHero, #admissionHero, #schoolHeroCarousel, .carousel-item { height: 60vh; min-height: 400px; }
    .carousel-caption h2 { font-size: 2rem; }
    .page-header { padding: 80px 0; }
    
    .quick-links-bar .col-md-auto { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .quick-link-item { justify-content: flex-start; padding: 15px 20px; }
    
    .whatsapp-float { padding: 15px; border-radius: 50%; width: 60px; height: 60px; bottom: 20px; right: 20px; }
    .whatsapp-text { display: none; }
    .whatsapp-icon { margin-right: 0; font-size: 30px; }
}

/* =========================================
   7. BRANCHES & MARQUEE
   ========================================= */
.marquee-container { width: 100%; overflow: hidden; position: relative; padding: 20px 0; }
.marquee-track { display: flex; gap: 30px; width: max-content; animation: scroll 60s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.branch-card {
    width: 320px; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 15px;
    overflow: hidden; flex-shrink: 0; transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
}
.branch-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.branch-img { width: 100%; height: 200px; object-fit: cover; }
.branch-body { padding: 20px; text-align: left; flex-grow: 1; display: flex; flex-direction: column; }
.branch-title { font-weight: 700; color: var(--primary-color); margin-bottom: 5px; font-size: 1.2rem; }
.branch-address { color: #666; font-size: 0.9rem; margin-bottom: 12px; min-height: 40px; }
.branch-section-badge {
    font-size: 0.75rem; padding: 4px 8px; background-color: #f0f2f5; color: var(--primary-color);
    border-radius: 4px; margin-right: 5px; display: inline-block; margin-bottom: 5px; font-weight: 600;
}
.branch-location-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    background-color: var(--accent-color); color: var(--primary-color); border-radius: 50%;
    text-decoration: none; transition: all 0.3s; float: right; margin-top: 10px;
}
.branch-location-btn:hover { background-color: var(--primary-color); color: #fff; transform: scale(1.1); }

/* State Tabs (Branch Page Specific) */
.state-nav-wrapper { background: #fff; padding: 20px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: sticky; top: 80px; z-index: 90; }
.nav-pills .nav-link {
    color: var(--primary-color); background: transparent; border: 2px solid #eee; border-radius: 50px;
    padding: 10px 30px; margin: 0 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
}
.nav-pills .nav-link:hover { border-color: var(--brand-green); color: var(--brand-green); transform: translateY(-2px); }
.nav-pills .nav-link.active {
    background-color: var(--brand-green); border-color: var(--brand-green); color: white; box-shadow: 0 5px 15px rgba(0, 143, 93, 0.3);
}

/* =========================================
   8. VIDEO GALLERY (Life at Campus)
   ========================================= */
.video-gallery-card {
    position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; height: 250px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.video-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-gallery-card:hover img { transform: scale(1.1); }

.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); transition: 0.3s; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.video-gallery-card:hover .video-overlay { background: rgba(0,0,0,0.1); }

.play-button-wrapper {
    width: 60px; height: 60px; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; border: 2px solid rgba(255,255,255,0.5); margin-bottom: 20px;
}
.video-gallery-card:hover .play-button-wrapper {
    background: var(--accent-color); transform: scale(1.1); border-color: var(--accent-color);
}
.play-button-wrapper i { color: #fff; font-size: 1.5rem; margin-left: 4px; }

.video-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; text-align: center;
    transform: translateY(20px); transition: transform 0.3s;
}
.video-gallery-card:hover .video-info { transform: translateY(0); }

/* YouTube Section Box */
.video-container {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); border-radius: 15px; overflow: hidden; border: 5px solid #fff;
}

/* =========================================
   9. VENTURES & DEPARTMENTS
   ========================================= */
/* Container for the logo */
.venture-logo-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect: Lift up + Stronger Shadow + Border Highlight */
.venture-logo-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

/* Image styling: Ensure logos fit & show original colors */
.venture-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Zoom Effect on Hover */
.venture-logo-box:hover img {
    transform: scale(1.1);
}

/* Department Cards (Simple) */
.dept-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s ease; height: 100%; }
.dept-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.dept-img-box { position: relative; overflow: hidden; height: 220px; }
.dept-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dept-card:hover .dept-img-box img { transform: scale(1.1); }
.dept-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(44, 62, 80, 0.7);
    display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.dept-overlay i { color: var(--accent-color); font-size: 2.5rem; transform: translateY(20px); transition: transform 0.3s ease; }
.dept-card:hover .dept-overlay { opacity: 1; }
.dept-card:hover .dept-overlay i { transform: translateY(0); }
.dept-info { padding: 20px; text-align: center; }
.dept-info h5 { font-weight: 700; margin-bottom: 5px; font-size: 1.1rem; }

/* =========================================
   10. FORMS & CONTACT
   ========================================= */
/* Enquiry Form Card */
.enquiry-card {
    background: #fff; border: none; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden; height: 100%; 
}
.enquiry-header { background-color: var(--primary-color); color: white; padding: 15px; text-align: center; }
.enquiry-header h4 { color: white; margin: 0; }

/* Contact Page Specifics */
.contact-card {
    background: #fff; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px; height: 100%; border-left: 5px solid var(--accent-color);
}
.contact-info-item { display: flex; margin-bottom: 25px; align-items: flex-start; }
.contact-icon {
    width: 50px; height: 50px; background: rgba(44, 62, 80, 0.1); color: var(--primary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-right: 20px; font-size: 1.2rem; flex-shrink: 0; transition: all 0.3s ease;
}
.contact-info-item:hover .contact-icon { background: var(--brand-green); color: white; }
.contact-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #888; font-weight: 700; margin-bottom: 5px; }
.contact-value { font-size: 1.1rem; color: var(--primary-color); font-weight: 500; line-height: 1.4; }

.hours-table { width: 100%; margin-top: 20px; font-size: 0.95rem; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid #eee; }
.hours-table tr:last-child td { border-bottom: none; }
.closed-badge { background: #ffebee; color: #c62828; padding: 2px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }

.map-wrapper {
    height: 100%; min-height: 500px; border-radius: 15px; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 5px solid #fff;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* =========================================
   11. SPECIAL LAYOUTS (Directors, Timeline, Alumni)
   ========================================= */
/* Intro Card */
.asc-intro-box {
    background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative; margin-top: -50px; z-index: 2; border-top: 5px solid var(--accent-color);
}

/* 3D Cards */
.vm-card {
    background: #fff; padding: 40px 30px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.1s ease; height: 100%; border: 1px solid rgba(0,0,0,0.02); 
    position: relative; overflow: hidden; z-index: 1; transform-style: preserve-3d; perspective: 1000px;
}
.vm-content { transform: translateZ(20px); }
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, #fff 0%, #fffcf5 100%); z-index: -1; opacity: 0; transition: opacity 0.4s; }
.vm-card:hover::before { opacity: 1; }
.vm-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.15); border-color: var(--accent-color); }
.vm-icon-box {
    width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; margin-bottom: 25px; transition: all 0.4s ease; position: relative; 
    animation: float-icon 3s ease-in-out infinite; transform: translateZ(40px);
}
.vm-card.vision .vm-icon-box { background: rgba(255, 193, 7, 0.15); color: #d39e00; }
.vm-card.mission .vm-icon-box { background: rgba(44, 62, 80, 0.1); color: var(--primary-color); }
@keyframes float-icon { 0%, 100% { transform: translateY(0) translateZ(40px); } 50% { transform: translateY(-8px) translateZ(40px); } }

/* Director Image 3D */
.director-img-wrapper { position: relative; z-index: 1; padding: 20px; perspective: 1000px; }
.director-img { 
    width: 100%; border-radius: 15px; box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease-out; transform-style: preserve-3d; border: 5px solid #fff;
}
.director-img-wrapper::after {
    content: ''; position: absolute; top: 40px; left: 40px; right: 0; bottom: -20px;
    border: 2px solid var(--accent-color); border-radius: 15px; z-index: -1; transition: transform 0.5s ease;
}
.director-img-wrapper:hover::after { transform: translate(10px, 10px); }

/* Academic Director 3D Card */
.academic-3d-card {
    width: 100%; max-width: 400px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px);
    border-radius: 20px; border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 25px 45px rgba(0,0,0,0.1);
    overflow: visible; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); position: relative; transform-style: preserve-3d;
}
.academic-img-box {
    width: 90%; margin: -40px auto 20px; border-radius: 15px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative; transform: translateZ(30px); transition: transform 0.5s ease;
}
.academic-img-box img { width: 100%; display: block; transition: transform 0.5s ease; }
.academic-content { padding: 0 30px 30px; text-align: center; transform: translateZ(20px); }
.academic-3d-card:hover .academic-img-box { transform: translateZ(50px) scale(1.05); }
.academic-3d-card:hover .academic-img-box img { transform: scale(1.1); }

/* Alumni Styles */
.alumni-card { border-bottom: 1px solid #eee; padding-bottom: 60px; margin-bottom: 60px; }
.alumni-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.alumni-image-wrapper {
    position: relative; padding: 15px; background: #fff; border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); text-align: center; border: 1px solid #f0f0f0;
}
.alumni-image-wrapper::before, .alumni-image-wrapper::after {
    content: ''; position: absolute; width: 60px; height: 60px; background: var(--accent-color); z-index: -1;
}
.alumni-image-wrapper::before { top: 20px; right: -10px; clip-path: polygon(100% 0, 0 0, 100% 100%); }
.alumni-image-wrapper::after { bottom: 20px; left: -10px; clip-path: polygon(0 100%, 0 0, 100% 100%); }
.alumni-img { width: 100%; height: 350px; object-fit: cover; border-radius: 5px; }
.alumni-name-tag {
    background: var(--primary-color); color: white; padding: 10px; margin-top: 15px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-bottom: 4px solid var(--accent-color);
}
.alumni-name-tag span { color: #4cd137; }

/* =========================================
   12. ADMISSIONS & SIDEBAR
   ========================================= */
.sidebar-box {
    background: #fff; border: 1px solid #eee; border-radius: 5px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: sticky; top: 100px;
}
.sidebar-header {
    background-color: var(--brand-green); color: white; padding: 15px 20px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Playfair Display', serif;
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { border-bottom: 1px solid #f0f0f0; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { display: block; padding: 15px 20px; color: #555; font-weight: 500; transition: all 0.3s; }
.sidebar-list a:hover, .sidebar-list a.active {
    background-color: #f9f9f9; color: var(--brand-green); padding-left: 25px; border-left: 4px solid var(--brand-green);
}

/* Disclosure List */
.disclosure-card {
    background: #fff; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-color); overflow: hidden;
}
.disclosure-header { background-color: #f8f9fa; padding: 25px 30px; border-bottom: 1px solid #eee; }
.disclosure-header h2 { margin: 0; font-size: 1.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.disclosure-list { padding: 0; margin: 0; list-style: none; }
.disclosure-item { border-bottom: 1px solid #f0f0f0; transition: background-color 0.2s ease; }
.disclosure-item:hover { background-color: #fcfcfc; }
.disclosure-link { display: flex; align-items: center; padding: 15px 30px; text-decoration: none; color: var(--text-dark); font-size: 1.05rem; font-weight: 500; transition: all 0.3s ease; }
.disclosure-icon { color: var(--school-green); font-size: 1.2rem; margin-right: 15px; transition: transform 0.3s ease; }
.disclosure-link:hover { color: var(--accent-color); padding-left: 35px; }
.disclosure-link:hover .disclosure-icon { transform: scale(1.2); }
.download-badge {
    margin-left: auto; font-size: 0.8rem; background: #eee; padding: 5px 10px; border-radius: 20px; color: #666; opacity: 0; transition: opacity 0.3s;
}
.disclosure-link:hover .download-badge { opacity: 1; }

/* =========================================
   13. FAQ STYLES
   ========================================= */
.faq-accordion .accordion-item { border: none; margin-bottom: 15px; background: transparent; }
.faq-accordion .accordion-button {
    background-color: #fff; color: var(--primary-color); font-weight: 600; font-size: 1.1rem;
    border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-left: 5px solid transparent; transition: all 0.3s ease; padding: 20px;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff; color: var(--primary-color); border-left: 5px solid var(--accent-color); box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.faq-accordion .accordion-body {
    background-color: #fcfcfc; border-radius: 0 0 10px 10px; margin-top: -5px; padding: 25px 30px; color: #555; line-height: 1.6; border: 1px solid #f0f0f0; border-top: none;
}
.faq-cat-title { position: relative; padding-left: 20px; margin-bottom: 25px; margin-top: 40px; }
.faq-cat-title::before { content: ''; position: absolute; left: 0; top: 5px; bottom: 5px; width: 4px; background: var(--accent-color); border-radius: 2px; }

/* =========================================
   14. PRINCIPAL PAGE
   ========================================= */
.principal-frame {
    position: relative; padding: 20px; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.1); z-index: 1;
}
.principal-frame::before {
    content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px;
    background-color: var(--school-green); z-index: -1; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
.principal-frame::after {
    content: ''; position: absolute; bottom: -20px; left: -20px; width: 100px; height: 100px;
    background-color: var(--school-green); z-index: -1; clip-path: polygon(0 100%, 100% 100%, 0 0);
}
.principal-img { width: 100%; height: auto; border: 1px solid #eee; }
.principal-name-tag {
    background: #f8f9fa; padding: 15px; text-align: center; border-top: 3px solid var(--school-green); margin-top: -5px;
}
.highlight-box {
    background-color: #f1f8f5; border-left: 5px solid var(--school-green); padding: 25px;
    margin-top: 30px; font-style: italic; border-radius: 0 10px 10px 0;
}

/* =========================================
   15. CURRICULUM & ACTIVITY
   ========================================= */
.curriculum-intro-card {
    background: #fff; border-left: 5px solid var(--accent-color); padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-radius: 0 15px 15px 0; height: 100%;
}
.prog-card {
    background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease; height: 100%; border-top: 4px solid transparent;
}
.prog-card:hover { transform: translateY(-10px); border-top-color: var(--accent-color); }
.prog-icon {
    width: 60px; height: 60px; background: rgba(44, 62, 80, 0.1); color: var(--primary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.feature-box { display: flex; align-items: flex-start; margin-bottom: 30px; }
.feature-box i { font-size: 2rem; color: var(--accent-color); margin-right: 20px; margin-top: 5px; }
.activity-card {
    background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: all 0.3s; height: 100%;
}
.activity-card:hover { transform: scale(1.02); }
.activity-img { height: 200px; width: 100%; object-fit: cover; }
.activity-content { padding: 25px; }
.trek-highlight {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); color: #fff; border-radius: 20px;
    padding: 40px; position: relative; overflow: hidden;
}
.trek-highlight h3 { color: var(--accent-color); }
.trek-icon {
    position: absolute; right: 20px; bottom: 20px; font-size: 10rem; color: rgba(255,255,255,0.05); transform: rotate(-15deg);
}

/* =========================================
   16. MEDIA QUERIES (Mobile Fixes)
   ========================================= */
@media (max-width: 991px) {
    .asc-intro-box { margin-top: 0; padding: 25px; }
    .director-img-wrapper, .vm-card, .academic-3d-card { transform: none !important; }
    .director-bg-blob { width: 200px; height: 200px; }
    
    .timeline-container { padding-left: 15px; }
    .history-card { margin-left: 15px; }
    .history-card::before { left: -38px; }
    
    .alumni-img { height: auto; }
    .alumni-card { text-align: center; }
    .alumni-text { text-align: left; }
    .mobile-reverse { flex-direction: column-reverse; }
}