/* ============================================
   MAIN STYLESHEET - COLLEGE WEBSITE
   Combined & Enhanced CSS
   (Top Bar, Slider, Footer, Documents, Placements,
    Page Components: Hero, Breadcrumb, Cards, CTA)
   ============================================ */

/* ---------- GLOBAL RESET & FONTS ---------- */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Palette */
    --primary-green:          #2d6a4f;
    --primary-yellow:         #e9c46a;
    --primary-gold:           #f4a261;

    /* Secondary: Earthy Browns */
    --secondary-brown-light:  #4a3903;
    --secondary-brown-deep:   #86581b;
    --secondary-brown-navy:   #6b4c3a;
    --accent-terracotta:      #9c6644;

    /* Backgrounds & Text */
    --bg-light-cream:         #4a3903;
    --bg-soft-green:          #d4e0b2;
    --text-dark:              #2f1b0e;
    --text-muted:             #5c3e2b;
    --white:                  #ffffff;
    --black:                  #000000;

    /* Navbar & Dropdown Hover */
    --nav-hover-bg:           rgba(255, 215, 140, 0.15);
    --nav-hover-color:        #ffd966;
    --dropdown-hover-bg:      #fef5e8;
    --dropdown-hover-color:   #b45309;

    /* ── Page-component extras (used by inner pages) ── */
    --sky:                    #e8f4fd;
    --sky-border:             #b8d9f4;
    --green-pale:             #eafaf1;
    --green-border:           #a9dfbf;
    --amber-pale:             #fef9e7;
    --amber-border:           #f9e4a0;
    --rose-pale:              #fdf2f8;
    --rose-border:            #f0b8dc;
    --card-bg:                #ffffff;
    --page-bg:                #f4f7fb;
    --text-main:              #1e2f3a;
    --border-light:           #dde6ef;
    --shadow-card:            0 4px 24px rgba(30, 47, 58, .08);
    --shadow-hover:           0 10px 36px rgba(30, 47, 58, .14);
    --r:                      16px;
    --r-sm:                   10px;
    --dur:                    .22s;
}

/* ========== BASE ========== */
body {
    background-color: var(--bg-light-cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

a { color: var(--primary-gold); }
a:hover { color: var(--secondary-brown-deep); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #0e2a3b, var(--secondary-brown-navy));
    color: #f0f2f5;
    padding: 8px 0;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 0.85rem;
}

.top-bar .row { align-items: center; }

.top-contact-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-start;
}

.top-contact-info a {
    color: #f0f2f5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-contact-info a i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.top-contact-info a:hover {
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.whatsapp-link i { color: #25D366; }
.phone-icon i    { color: var(--primary-gold); }

.college-title-single {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.3px;
    color: white;
    background: rgba(0,0,0,0.25);
    padding: 6px 18px;
    border-radius: 40px;
    display: inline-block;
    backdrop-filter: blur(3px);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border-left: 2px solid var(--primary-gold);
    border-right: 2px solid var(--primary-gold);
}

.college-title-single i {
    margin-right: 6px;
    color: var(--primary-gold);
}

.top-social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.top-social-links a {
    color: #ddd;
    transition: 0.3s;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-social-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.erp-badge {
    background-color: var(--primary-gold);
    padding: 5px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.75rem;
    color: #21130d !important;
    margin-left: 5px;
}

.erp-badge i { color: #21130d; }

.erp-badge:hover {
    background-color: #c57235;
    color: white !important;
}

/* Top Bar Responsive */
@media (max-width: 768px) {
    .top-contact-info { gap: 0.7rem; }
    .top-contact-info a { font-size: 0.7rem; }
    .college-title-single { font-size: 0.7rem; padding: 4px 10px; white-space: nowrap; }
    .top-social-links { gap: 12px; }
    .top-social-links a { font-size: 0.8rem; }
    .erp-badge { padding: 3px 8px; font-size: 0.65rem; }
}

@media (max-width: 576px) {
    .top-contact-info a span { display: none; }
    .top-contact-info a i { margin-right: 0; }
    .college-title-single { font-size: 0.65rem; padding: 4px 6px; }
    .top-social-links a:not(.erp-badge) span { display: none; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: linear-gradient(135deg, var(--secondary-brown-deep), var(--secondary-brown-navy));
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-gold) !important;
}

.navbar-brand img {
    height: 65px;
    width: auto;
    border-radius: 50%;
    background: white;
    padding: 3px;
    transition: transform 0.3s;
}

.navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.2rem;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.navbar-nav .nav-link:hover {
    color: var(--nav-hover-color) !important;
    background: var(--nav-hover-bg);
    transform: translateY(-2px);
}

.dropdown-menu {
    background-color: var(--secondary-brown-navy);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 220px;
    border-radius: 10px;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: white;
    font-size: 0.8rem;
    padding: 8px 18px;
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background-color: var(--dropdown-hover-bg) !important;
    color: var(--dropdown-hover-color) !important;
    transform: translateX(5px);
}

.dropdown-toggle::after { transition: transform 0.2s ease; }
.dropdown.show .dropdown-toggle::after { transform: rotate(180deg); }

/* Responsive Navbar */
@media (max-width: 992px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--secondary-brown-deep), var(--secondary-brown-navy));
        border-radius: 15px;
        margin-top: 10px;
        padding: 10px;
    }
    .navbar-nav {
        flex-direction: column;
        max-height: 60vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        white-space: normal;
        text-align: center;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider-modern {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
    background-color: #0a1a2a;
}

.slider-container-modern {
    position: relative;
    width: 100%;
    height: 540px;
    background: #0a1a2a;
}

.slider-slide-modern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.slider-slide-modern.active { opacity: 1; z-index: 2; }

.slider-slide-modern img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: crisp-edges;
}

.slider-overlay-modern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(6,57,112,0.5), rgba(21,76,121,0.65));
    pointer-events: none;
}

.slider-caption-modern {
    position: absolute;
    bottom: 5%;
    left: 0; right: 0;
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px 30px;
    animation: fadeInUp 0.8s ease-out;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
    border-radius: 20px;
    max-width: 55%;
    margin: 0 auto;
    backdrop-filter: blur(3px);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slider-caption-modern h2 { font-size: 1rem; font-weight: 800; margin-bottom: 0.25rem; }
.slider-caption-modern h4 { font-size: 1rem; font-weight: 700; }
.slider-caption-modern p  { font-size: 0.75rem; font-weight: 500; margin-bottom: 0.5rem; }

.btn-slider-modern {
    background-color: var(--primary-gold);
    color: white;
    font-weight: bold;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,215,140,0.6);
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-slider-modern:hover {
    background-color: #c57235;
    transform: scale(1.05);
    color: white;
    border-color: var(--primary-gold);
}

.slider-dots-modern {
    position: absolute;
    bottom: 22px;
    left: 0; right: 0;
    text-align: center;
    z-index: 15;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot-modern {
    width: 12px; height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-modern.active {
    background-color: var(--primary-gold);
    width: 32px;
    border-radius: 12px;
    transform: scale(1.1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    color: white;
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    font-size: 1.5rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,215,140,0.6);
}

.slider-arrow:hover {
    background: var(--primary-gold);
    transform: translateY(-50%) scale(1.08);
    color: #21130d;
}

.arrow-left  { left: 25px; }
.arrow-right { right: 25px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slider Responsive */
@media (max-width: 992px) { .slider-container-modern { height: 440px; } }
@media (max-width: 768px) {
    .slider-container-modern { height: 320px; }
    .slider-caption-modern h2 { font-size: 1.4rem; }
    .slider-caption-modern p  { font-size: 0.9rem; }
    .btn-slider-modern { padding: 6px 18px; font-size: 0.75rem; }
    .slider-arrow { width: 34px; height: 34px; font-size: 1rem; }
}
@media (max-width: 992px) {
    .slider-caption-modern h2 { font-size: 2rem; }
    .slider-caption-modern h4 { font-size: 1.5rem; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section-wrapper { margin: 50px 0; }

.about-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-card:hover { transform: translateY(-5px); }

.about-image-container img {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 550 / 450;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-text-container {
    padding: 35px 30px;
    background: white;
}

.about-text-container h2 {
    color: var(--secondary-brown-deep);
    border-left: 5px solid var(--primary-gold);
    padding-left: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.feature-box {
    flex: 1;
    min-width: 180px;
    background: #fdf8ed;
    padding: 12px 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-gold);
}

/* ============================================
   NEWS & ANNOUNCEMENTS
   ============================================ */
.news-announcement-row { margin: 50px 0; }

.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid rgba(226, 135, 67, 0.25);
}

.card-header-custom {
    background: linear-gradient(135deg, var(--secondary-brown-deep), var(--secondary-brown-navy));
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 3px solid var(--primary-gold);
}

.news-auto-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.news-slide-container {
    position: relative;
    width: 100%;
    height: 320px;
}

.news-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.news-slide.active { opacity: 1; z-index: 1; }
.news-slide img { width: 100%; height: 100%; object-fit: cover; }

.news-slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, #000000cc, transparent);
    color: white;
    padding: 12px;
    font-weight: 600;
}

.marquee-up-wrapper {
    padding: 15px;
    background: var(--bg-soft-green);
    height: 380px;
    overflow: hidden;
    position: relative;
}

.marquee-up {
    display: flex;
    flex-direction: column;
    animation: scrollUp 22s linear infinite;
}

.marquee-up:hover { animation-play-state: paused; }

.announcement-item {
    padding: 12px 12px;
    border-bottom: 1px dashed #8ba9b5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

@keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* ============================================
   PLACEMENTS SECTION
   ============================================ */
.placements-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    text-align: center;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.section-subtitle {
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.placements-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.placement-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-img {
    width: 100%; height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.placement-card:hover .card-img { transform: scale(1.05); }

.card-info { padding: 20px; }
.card-info h3 { color: #2c3e50; margin-bottom: 8px; font-size: 1.3rem; }
.card-info p  { color: #7f8c8d; font-size: 0.9rem; }

/* Placements carousel (mobile only) */
@media (max-width: 768px) {
    .placements-grid { display: none; }

    .carousel-container {
        display: block;
        position: relative;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .carousel-slide .placement-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
    }

    .dot {
        width: 10px; height: 10px;
        background-color: #bbb;
        border-radius: 50%;
        cursor: pointer;
    }

    .dot.active {
        background-color: #3498db;
        transform: scale(1.2);
    }
}

@media (min-width: 769px) {
    .carousel-container, .carousel-dots { display: none; }
}

/* ============================================
   DOCUMENTS SECTION
   ============================================ */
.document-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-brown-deep);
    border-left: 5px solid var(--primary-gold);
    border-right: 5px solid var(--primary-gold);
    display: inline-block;
    padding: 0 25px;
}

.data-table-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow-x: auto;
    margin-bottom: 30px;
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 800px;
}

.document-table th {
    background: linear-gradient(135deg, var(--secondary-brown-deep), var(--secondary-brown-navy));
    color: white;
    padding: 16px 15px;
    font-weight: 600;
    text-align: center;
    border-bottom: 3px solid var(--primary-gold);
}

.document-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3e50;
    font-weight: 500;
}

.document-table tr:hover { background-color: #fef9e6; }

.pdf-btn {
    background: linear-gradient(135deg, var(--primary-gold), #c57235);
    border: none;
    padding: 8px 18px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pdf-btn:hover {
    transform: translateY(-2px);
    background: var(--secondary-brown-deep);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Mobile cards for documents */
.cards-container {
    display: none;
    gap: 20px;
    flex-direction: column;
}

.document-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    overflow: hidden;
    border-left: 5px solid var(--primary-gold);
    animation: cardFadeIn 0.4s ease-out forwards;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0e6d2;
    padding: 12px 18px;
    align-items: center;
}

.card-label {
    width: 130px;
    font-weight: 700;
    color: var(--secondary-brown-deep);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.card-value { flex: 1; color: #2c3e50; font-weight: 500; }

.card-action {
    background-color: #fef5e8;
    padding: 14px 18px;
    text-align: right;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .data-table-wrapper { display: none; }
    .cards-container { display: flex; }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, #0b2b3b, var(--secondary-brown-deep));
    color: #eef2f5;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 4px solid var(--primary-gold);
}

.footer-bottom {
    background-color: #06212e;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 20px 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.footer-col:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    color: var(--primary-gold);
    border-left: 4px solid var(--primary-gold);
    padding-left: 12px;
}

.address-map-wrapper { display: flex; flex-direction: column; gap: 20px; }

.address-half {
    background: rgba(0,0,0,0.2);
    border-radius: 18px;
    padding: 12px 15px;
}

.address-half i { color: var(--primary-gold); width: 28px; margin-right: 8px; }

.address-half p {
    margin-bottom: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.map-half {
    background: rgba(0,0,0,0.2);
    border-radius: 18px;
    overflow: hidden;
    min-height: 180px;
}

.map-half iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 16px;
    display: block;
}

.links-list { list-style: none; padding: 0; margin: 0; }
.links-list li { margin-bottom: 10px; }

.links-list a {
    color: #eef2f5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.links-list a i { color: var(--primary-gold); font-size: 0.75rem; }
.links-list a:hover { color: var(--primary-gold); transform: translateX(5px); }

.sub-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0 8px 0;
    color: var(--primary-gold);
    border-bottom: 1px dashed rgba(234,182,118,0.4);
    display: inline-block;
}

.video-player-wrapper { background: #00000030; border-radius: 20px; padding: 6px; }

.video-thumb-container {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: #0a1a2a;
}

.video-thumb-container img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.video-thumb-container:hover img { transform: scale(1.02); }

.play-icon-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.65);
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid var(--primary-gold);
}

.play-icon-overlay i { font-size: 28px; color: white; margin-left: 4px; }

.video-caption { font-size: 0.75rem; text-align: center; margin-top: 10px; color: #cfdfed; }

.video-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.video-modal.active { display: flex; }

.video-modal-content {
    max-width: 85%;
    width: 880px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-gold);
}

.video-modal-content iframe { width: 100%; aspect-ratio: 16 / 9; border: none; }

.close-modal {
    position: absolute;
    top: 12px; right: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10;
}

.close-modal:hover { background: var(--primary-gold); color: #21130d; }

.social-icon-small { margin-top: 15px; display: flex; gap: 15px; }
.social-icon-small a { color: #ccc; font-size: 1.1rem; transition: 0.2s; }
.social-icon-small a:hover { color: var(--primary-gold); transform: translateY(-2px); }

/* Footer Responsive */
@media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   UTILITY / SHARED COMPONENTS
   ============================================ */
.section-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.section-card h2 {
    color: var(--secondary-brown-deep);
    border-left: 5px solid var(--primary-gold);
    padding-left: 15px;
    margin-bottom: 25px;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

.btn-back {
    background: var(--secondary-brown-deep);
    color: white;
    border-radius: 40px;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.btn-back:hover { background: var(--primary-gold); color: #21130d; }

/* ============================================
   INNER PAGE COMPONENTS
   (Shared by principals-message, vision-mission,
    admission-procedure, etc.)
   ============================================ */

/* ── Page Hero ───────────────────────────────── */
.proc-hero {
    background: linear-gradient(135deg, #1e2f3a 0%, #2d4a5e 100%);
    padding: 52px 0 44px;
    text-align: center;
}

.proc-hero-tag {
    display: inline-block;
    background: var(--primary-yellow);
    color: #1e2f3a;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.proc-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff !important;
    margin: 0 0 10px;
}

.proc-hero p { color: rgba(255,255,255,.72); font-size: .92rem; margin: 0; }

/* ── Breadcrumb Bar ──────────────────────────── */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    font-size: .78rem;
}

.breadcrumb-bar a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-bar a:hover { color: #1e2f3a; }
.breadcrumb-bar .sep { color: var(--border-light); margin: 0 7px; }
.breadcrumb-bar .current { color: #1e2f3a; font-weight: 600; }

/* ── Inner Section Card ──────────────────────── */
.inner-section-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

/* ── Section Heading ─────────────────────────── */
.proc-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 2rem; }

.proc-heading-icon {
    width: 50px; height: 50px;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, #1e2f3a, #2d4a5e);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}

.proc-heading h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #1e2f3a !important;
    border-left: 5px solid var(--primary-yellow);
    padding-left: 1rem;
    margin: 0;
}

/* ── Intro Box ───────────────────────────────── */
.intro-box {
    background: var(--sky);
    border: 1px solid var(--sky-border);
    border-radius: var(--r-sm);
    padding: 16px 20px;
    font-size: .9rem; font-weight: 500;
    color: #1a4a70;
    margin-bottom: 28px;
    display: flex; align-items: flex-start; gap: 12px;
}

.intro-box-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

/* ── Doc Heading ─────────────────────────────── */
.doc-heading {
    font-size: .95rem; font-weight: 800;
    color: #1e2f3a;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

/* ── Step Cards Grid ─────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px; margin-bottom: 28px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-sm);
    padding: 18px 20px;
    transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
    display: flex; gap: 14px; align-items: flex-start;
}

.step-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.step-num {
    min-width: 38px; height: 38px;
    background: linear-gradient(135deg, #1e2f3a, #2d4a5e);
    color: var(--primary-yellow);
    font-size: .85rem; font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.step-text h5 { font-size: .88rem; font-weight: 700; color: #1e2f3a; margin: 0 0 4px; }
.step-text p  { font-size: .8rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── SC / Highlight Block ────────────────────── */
.sc-block {
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    border-radius: var(--r-sm);
    padding: 18px 22px; margin-bottom: 28px;
}

.sc-block-title {
    display: flex; align-items: center; gap: 9px;
    font-size: .88rem; font-weight: 800; color: #7d5a00;
    margin-bottom: 8px;
}

.sc-block p { font-size: .82rem; color: #7d5a00; line-height: 1.7; margin: 0; }

/* ── Document List ───────────────────────────── */
.doc-list {
    list-style: none; padding: 0;
    margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 10px;
}

.doc-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 16px;
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-sm);
    font-size: .82rem; color: #1e2f3a; line-height: 1.65;
    transition: background var(--dur), border-color var(--dur);
}

.doc-list li:hover { background: #eaf2fb; border-color: var(--sky-border); }

.doc-num {
    min-width: 26px; height: 26px;
    background: var(--primary-yellow); color: #1e2f3a;
    font-size: .72rem; font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── SC Sub-Doc Box ──────────────────────────── */
.sc-doc-box {
    background: var(--rose-pale);
    border: 1px solid var(--rose-border);
    border-radius: var(--r-sm);
    padding: 16px 20px;
    margin-top: -4px; margin-bottom: 24px;
}

.sc-doc-box-title { font-size: .82rem; font-weight: 700; color: #7b1d6e; margin-bottom: 10px; }

.sc-doc-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }

.sc-doc-list li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: .8rem; color: #6b1960; line-height: 1.6;
}

.sc-doc-list li::before { content: '›'; color: #c44fa3; font-size: 1rem; font-weight: 700; flex-shrink: 0; }

/* ── Notice / Value Cards Grid ───────────────── */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px; margin-bottom: 28px;
}

.notice-card {
    border-radius: var(--r-sm); padding: 16px 18px;
    font-size: .8rem; line-height: 1.7;
    display: flex; gap: 12px; align-items: flex-start;
    border: 1px solid;
    transition: transform var(--dur), box-shadow var(--dur);
}

.notice-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.notice-card.blue  { background: var(--sky);        border-color: var(--sky-border);   color: #1a4070; }
.notice-card.green { background: var(--green-pale);  border-color: var(--green-border); color: #1a5c2e; }
.notice-card.amber { background: var(--amber-pale);  border-color: var(--amber-border); color: #7d5a00; }
.notice-card.rose  { background: var(--rose-pale);   border-color: var(--rose-border);  color: #7b1d6e; }

.notice-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.notice-card strong { display: block; font-weight: 700; margin-bottom: 3px; font-size: .83rem; }

/* ── Sports / Callout Dark Bar ───────────────── */
.sports-callout {
    background: linear-gradient(135deg, #1e2f3a, #2d4a5e);
    border-radius: var(--r-sm); padding: 20px 24px;
    display: flex; align-items: center; gap: 16px; margin-top: 24px;
}

.sports-callout-icon { font-size: 2.2rem; flex-shrink: 0; }
.sports-callout h6   { color: var(--primary-yellow); font-size: .85rem; font-weight: 800; margin: 0 0 4px; }
.sports-callout p    { color: rgba(255,255,255,.78); font-size: .8rem; margin: 0; }

.sports-callout .gurmukhi {
    font-size: 1.05rem; font-weight: 700;
    color: var(--primary-yellow);
    display: block; margin-top: 5px; letter-spacing: .03em;
}

/* ── CTA Band ────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, #1e2f3a, #2d4a5e);
    border-radius: var(--r); padding: 32px 28px;
    text-align: center; margin-top: 32px;
}

.cta-band h4 { color: #fff !important; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cta-band p  { color: rgba(255,255,255,.7) !important; font-size: .84rem; margin-bottom: 20px; }

.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-cta-gold {
    background: var(--primary-yellow); color: #1e2f3a !important;
    border: none; padding: 11px 26px; border-radius: 8px;
    font-weight: 700; font-size: .84rem; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background var(--dur), transform var(--dur);
}

.btn-cta-gold:hover { background: #e09000; transform: translateY(-2px); }

.btn-cta-outline {
    background: transparent; color: #fff !important;
    border: 2px solid rgba(255,255,255,.35); padding: 11px 26px;
    border-radius: 8px; font-weight: 700; font-size: .84rem;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: all var(--dur);
}

.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ── Opening Quote Block (Principal's Message) ── */
.opening-quote {
    background: linear-gradient(135deg, #1e2f3a 0%, #2d4a5e 100%);
    border-radius: var(--r-sm); padding: 28px 30px;
    margin-bottom: 28px; text-align: center;
    position: relative; overflow: hidden;
}

.opening-quote::before {
    content: '\201C';
    position: absolute; top: -18px; left: 14px;
    font-size: 7rem; color: rgba(245,166,35,.12);
    font-family: Georgia, serif; pointer-events: none; line-height: 1;
}

.opening-quote blockquote {
    font-size: clamp(.95rem, 2.5vw, 1.12rem);
    font-style: italic; color: rgba(255,255,255,.92) !important;
    line-height: 1.8; margin: 0 0 14px; position: relative;
}

.opening-quote cite {
    font-size: .8rem; font-weight: 700; font-style: normal;
    color: var(--primary-yellow); letter-spacing: .06em; text-transform: uppercase;
}

/* ── Message Body Paragraphs ─────────────────── */
.msg-body { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }

.msg-para {
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-yellow);
    border-radius: var(--r-sm); padding: 16px 20px;
    font-size: .875rem; color: #1e2f3a; line-height: 1.85;
    transition: border-left-color var(--dur), background var(--dur);
}

.msg-para:hover { background: #eaf2fb; border-left-color: #1e2f3a; }

/* ── Principal Sign-off ──────────────────────── */
.signoff {
    display: flex; align-items: center; gap: 16px;
    background: var(--page-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-sm); padding: 18px 22px; margin-top: 24px;
}

.signoff-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #1e2f3a, #2d4a5e);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}

.signoff-name { font-size: .9rem; font-weight: 800; color: #1e2f3a; }
.signoff-role { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* ── Vision Block ────────────────────────────── */
.vision-block {
    background: linear-gradient(135deg, #1e2f3a 0%, #2d4a5e 100%);
    border-radius: var(--r-sm); padding: 24px 26px;
    margin-bottom: 24px; position: relative; overflow: hidden;
}

.vision-block::before {
    content: '✦'; position: absolute; top: -10px; right: 20px;
    font-size: 5rem; color: rgba(245,166,35,.08); pointer-events: none;
}

.vision-block-label {
    font-size: .7rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--primary-yellow); margin-bottom: 8px;
}

.vision-block p { color: rgba(255,255,255,.88) !important; font-size: .9rem; line-height: 1.8; margin: 0; }

/* ── Mission Cards Grid ──────────────────────── */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px; margin-bottom: 28px;
}

.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-sm); padding: 18px 20px;
    transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
    display: flex; gap: 14px; align-items: flex-start;
}

.mission-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.mission-icon {
    min-width: 42px; height: 42px;
    background: linear-gradient(135deg, #1e2f3a, #2d4a5e);
    font-size: 1.2rem; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.mission-text h5 { font-size: .88rem; font-weight: 700; color: #1e2f3a !important; margin: 0 0 5px; }
.mission-text p  { font-size: .8rem; color: var(--text-muted); line-height: 1.68; margin: 0; }

/* ── Core Values Grid ────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px; margin-bottom: 28px;
}

.value-card {
    border-radius: var(--r-sm); padding: 16px 18px;
    font-size: .8rem; line-height: 1.7;
    display: flex; gap: 12px; align-items: flex-start;
    border: 1px solid;
    transition: transform var(--dur), box-shadow var(--dur);
}

.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.value-card.blue  { background: var(--sky);        border-color: var(--sky-border);   color: #1a4070; }
.value-card.green { background: var(--green-pale);  border-color: var(--green-border); color: #1a5c2e; }
.value-card.amber { background: var(--amber-pale);  border-color: var(--amber-border); color: #7d5a00; }
.value-card.rose  { background: var(--rose-pale);   border-color: var(--rose-border);  color: #7b1d6e; }
.value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.value-card strong { display: block; font-weight: 700; margin-bottom: 3px; font-size: .83rem; }

/* ── Objective Sections ──────────────────────── */
.obj-section { margin-bottom: 24px; }

.obj-section-title {
    display: flex; align-items: center; gap: 9px;
    font-size: .88rem; font-weight: 800; color: #1e2f3a;
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    border-radius: var(--r-sm);
    padding: 10px 16px; margin-bottom: 10px;
}

.sub-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; margin: 0; }

.sub-list li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: .8rem; color: var(--text-muted); line-height: 1.68;
}

.sub-list li::before { content: '›'; color: var(--secondary-brown-deep); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }

/* ── Quote Callout ───────────────────────────── */
.quote-callout {
    background: linear-gradient(135deg, #1e2f3a, #2d4a5e);
    border-radius: var(--r-sm); padding: 20px 24px;
    display: flex; align-items: center; gap: 16px; margin-top: 24px;
}

.quote-callout-icon { font-size: 2.2rem; flex-shrink: 0; }
.quote-callout h6 { color: var(--primary-yellow); font-size: .85rem; font-weight: 800; margin: 0 0 4px; }
.quote-callout p  { color: rgba(255,255,255,.78) !important; font-size: .8rem; margin: 0; font-style: italic; }

/* ============================================
   INNER PAGES — RESPONSIVE
   ============================================ */
@media (max-width: 576px) {
    .proc-hero { padding: 36px 0 30px; }
    .inner-section-card { padding: 1rem; }
    .steps-grid   { grid-template-columns: 1fr; }
    .notice-grid  { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .values-grid  { grid-template-columns: 1fr; }
    .sports-callout  { flex-direction: column; text-align: center; }
    .quote-callout   { flex-direction: column; text-align: center; }
    .signoff         { flex-direction: column; text-align: center; }
    .cta-btns        { flex-direction: column; align-items: center; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .document-section { background: white; padding: 20px; }
    .pdf-btn, .btn-back, .card-action,
    .video-modal, .slider-arrow, .navbar { display: none; }
    .data-table-wrapper { display: block; box-shadow: none; }
    .cards-container { display: none; }
}
