/* ============================================================
   SHYAMAPADA DAS COLLEGE OF EDUCATION
   Navy Blue & White Liquid Glass Design System
   Primary: #0A3161 | Background: #FFFFFF | Accent: #FFC72C
   Loaded AFTER style.css on public pages and after Bootstrap
   on the admin panel. Redefines the full visual system.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============ 1. DESIGN TOKENS ============ */
:root {
    /* Master palette — Navy Blue & Gold Theme */
    --primary: #0A3161;
    --primary-dark: #072244;
    --primary-light: #154886;
    --secondary: #FFC72C;
    --secondary-dark: #E5B220;
    --secondary-light: #FFD768;
    --accent: #FFC72C;

    --dark: #072244;
    --light: #FFFFFF;
    --white: #FFFFFF;

    --bg-main: #FFFFFF;
    --bg-secondary: #FAFBFD;
    --bg-tertiary: #F5F7FA;

    --text-primary: #072244;
    --text-secondary: #4A5568;
    --text-muted: #718096;

    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(10, 49, 97, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.95);

    --glow-blue: rgba(10, 49, 97, 0.22);
    --glow-cyan: rgba(255, 199, 44, 0.20);
    --glow-violet: rgba(10, 49, 97, 0.12);

    --gray: #64748B;
    --light-gray: #E2E8F0;
    --success: #28A745;
    --info: #0A3161;
    --warning: #FFC72C;
    --danger: #DC3545;

    /* Fonts */
    --font-heading: 'Inter', 'SF Pro Display', -apple-system, 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'SF Pro Text', -apple-system, 'Segoe UI', system-ui, sans-serif;

    --transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(10, 49, 97, 0.05);
    --shadow-md: 0 12px 32px rgba(10, 49, 97, 0.08);
    --shadow-lg: 0 24px 48px rgba(10, 49, 97, 0.12);
    --shadow-xl: 0 40px 80px rgba(10, 49, 97, 0.16);

    --border-radius-sm: 10px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 28px;
    --border-radius-xxl: 40px;

    /* Bootstrap re-theme lever */
    --bs-primary: #0A3161;
    --bs-primary-rgb: 10, 49, 97;
    --bs-primary-bg-subtle: #F0F4F9;
    --bs-primary-border-subtle: #C5D5E8;
    --bs-primary-text-emphasis: #0A3161;
    --bs-link-color: #0A3161;
    --bs-link-color-rgb: 10, 49, 97;
    --bs-link-hover-color: #072244;
    --bs-focus-ring-color: rgba(10, 49, 97, 0.25);
    --bs-focus-ring-width: 0.15rem;
    --bs-border-color: rgba(10, 49, 97, 0.15);
    --bs-body-bg: #FFFFFF;
    --bs-body-color: #072244;
    --bs-secondary-bg: #FAFBFD;
    --bs-tertiary-bg: #F5F7FA;
}

/* ============ 2. BASE & BACKGROUND ============ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: radial-gradient(1200px 600px at 12% -6%, rgba(255, 199, 44, 0.10), transparent 60%),
                radial-gradient(1000px 700px at 105% 20%, rgba(10, 49, 97, 0.07), transparent 55%),
                radial-gradient(900px 700px at 10% 110%, rgba(10, 49, 97, 0.05), transparent 60%),
                linear-gradient(165deg, #FFFFFF 0%, #FAFBFD 48%, #FFFFFF 100%);
    background-attachment: fixed;
    background-color: #FFFFFF;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

::selection {
    background: rgba(255, 199, 44, 0.35);
    color: #0A3161;
}

:focus-visible {
    outline: 2px solid rgba(10, 49, 97, 0.6);
    outline-offset: 2px;
}

/* Animated floating glass orbs */
.bg-orbs {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    will-change: transform;
}
.orb-1 { width: 520px; height: 520px; left: -140px; top: -140px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 199, 44, 0.18), rgba(10, 49, 97, 0.12) 62%, transparent 74%);
    animation: orbFloat 18s ease-in-out infinite; }
.orb-2 { width: 480px; height: 480px; right: -130px; top: 34%;
    background: radial-gradient(circle at 60% 60%, rgba(10, 49, 97, 0.14), rgba(255, 199, 44, 0.10) 60%, transparent 72%);
    animation: orbFloat 23s ease-in-out infinite reverse; }
.orb-3 { width: 620px; height: 620px; left: 16%; bottom: -240px;
    background: radial-gradient(circle, rgba(255, 199, 44, 0.12), transparent 66%);
    animation: orbFloat 27s ease-in-out infinite; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(34px, -46px) scale(1.06); }
}

/* ============ 3. TOP BAR ============ */
.top-bar {
    background: linear-gradient(120deg, #072244 0%, #0A3161 100%);
    color: #fff;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1030;
}
.top-bar i { color: #FFC72C; }
.top-bar a { color: #F0F4F9; }
.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.top-bar-social i {
    color: #FFFFFF !important;
    transition: color 0.25s ease;
}
.top-bar-social:hover {
    background: #FFC72C;
    border-color: #FFC72C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.35);
}
.top-bar-social:hover i {
    color: #072244 !important;
}
.goog-te-gadget-simple {
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
}
.goog-te-gadget-simple .goog-te-menu-value,
.goog-te-gadget-simple .goog-te-menu-value span { color: #fff !important; text-shadow: none; }

/* ============ 4. ANNOUNCEMENT BAR ============ */
.announcement-bar {
    background: linear-gradient(120deg, #0A3161 0%, #072244 100%);
    color: #fff;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 5;
    border-bottom: 2px solid #FFC72C;
}
.announcement-bar marquee i { color: #FFC72C; margin-right: 0.5rem; }

/* ============ 5. NAVBAR / HEADER ============ */
.site-header {
    background: transparent;
    border: none;
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    padding: 0.9rem 0;
}
.site-header.header-hidden {
    transform: translateY(-110%);
}
.site-header.scrolled {
    padding: 0.55rem 0;
}
.site-header.scrolled .navbar {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(10, 49, 97, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-header .navbar {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(10, 49, 97, 0.12);
    border-radius: 60px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 34px rgba(10, 49, 97, 0.08);
    padding: 0.45rem 1.4rem;
    transition: all 0.35s ease;
}

.navbar-brand { display: flex; align-items: center; }
.navbar-brand .text-content h1 {
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--primary);
    background: linear-gradient(90deg, #0A3161 0%, #154886 65%, #0A3161 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-brand .text-content p { color: var(--text-secondary); font-weight: 500; }

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.1rem;
    border-radius: 40px;
    position: relative;
    transition: all 0.25s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(10, 49, 97, 0.08);
}
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(10, 49, 97, 0.10);
    box-shadow: inset 0 0 0 1px rgba(10, 49, 97, 0.20), 0 8px 22px rgba(10, 49, 97, 0.12);
}

/* Dropdown caret / arrow for About, Academics, Gallery toggles */
.navbar-nav .dropdown-toggle::after {
    display: inline-block !important;
    content: "" !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    background: transparent !important;
    width: 8px !important;
    height: 8px !important;
    margin-left: 0.45em;
    margin-right: 0.05em;
    vertical-align: middle;
    border: none !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    transform: rotate(45deg) translateY(-2px) !important;
    transform-origin: center !important;
    transition: transform 0.25s ease !important;
}
.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after {
    border-right-color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
}
.navbar-nav .nav-item.show .dropdown-toggle::after,
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    border-right-color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
    transform: rotate(225deg) translateY(-1px) !important;
}

.navbar-nav .dropdown-menu {
    border-radius: 18px;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    backdrop-filter: blur(24px) saturate(170%);
    border: 1px solid rgba(10, 49, 97, 0.14);
    box-shadow: 0 24px 50px rgba(10, 49, 97, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    margin-top: 0.6rem;
}
.navbar-nav .dropdown-menu .dropdown-item {
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}
.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    background: rgba(10, 49, 97, 0.08);
    color: var(--primary);
    transform: translateX(4px);
}

.navbar-toggler {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(10, 49, 97, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-actions .btn-admission {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    padding: 0.55rem 1.3rem;
    white-space: nowrap;
}

/* ============ 6. BUTTON SYSTEM ============ */
.btn {
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    padding: 0.6rem 1.4rem;
    position: relative;
    overflow: hidden;
    border: none;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-22deg);
    transition: left 0.65s ease;
    pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:focus-visible { outline: 2px solid rgba(10, 49, 97, 0.6); outline-offset: 3px; }

.btn-primary,
.btn-enquiry,
.btn-login,
.btn-submit,
.btn-subscribe,
.btn-hero {
    background: linear-gradient(135deg, #0A3161 0%, #072244 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.30), 0 10px 26px rgba(10, 49, 97, 0.35);
}
.btn-primary:hover,
.btn-enquiry:hover,
.btn-login:hover,
.btn-submit:hover,
.btn-subscribe:hover,
.btn-hero:hover {
    background: linear-gradient(135deg, #154886 0%, #0A3161 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 16px 36px rgba(10, 49, 97, 0.45);
}
.btn-primary:active,
.btn-enquiry:active,
.btn-login:active,
.btn-submit:active { transform: translateY(0); }

.btn-primary:disabled,
.btn-primary.disabled {
    background: rgba(10, 49, 97, 0.4);
    box-shadow: none;
}

/* Golden Yellow CTA Button */
.btn-admission,
.btn-accent,
.btn-warning {
    background: linear-gradient(135deg, #FFD768 0%, #FFC72C 50%, #E5B220 100%);
    color: #072244;
    font-weight: 700;
    border-color: transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 24px rgba(255, 199, 44, 0.35);
}
.btn-admission:hover,
.btn-accent:hover,
.btn-warning:hover {
    background: linear-gradient(135deg, #FFE082 0%, #FFD043 100%);
    color: #072244;
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 30px rgba(255, 199, 44, 0.45);
}

.btn-hero {
    font-size: 1.1rem;
    padding: 1rem 2.6rem;
    border-radius: 50px;
}

/* Outline Buttons */
.btn-outline-secondary,
.btn-outline-primary,
.btn-outline-success,
.btn-login-outline {
    background: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
    border: 1.5px solid rgba(10, 49, 97, 0.35);
    color: var(--primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.btn-outline-secondary:hover,
.btn-outline-primary:hover,
.btn-outline-success:hover {
    background: rgba(10, 49, 97, 0.08);
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(10, 49, 97, 0.18);
}

.btn-success {
    background: linear-gradient(135deg, #28A745, #1E7E34);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 24px rgba(40, 167, 69, 0.32);
}
.btn-success:hover {
    background: linear-gradient(135deg, #34CE57, #28A745);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(40, 167, 69, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #DC3545, #BD2130);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 24px rgba(220, 53, 69, 0.32);
}
.btn-danger:hover { color: #fff; transform: translateY(-2px); }

.btn-light {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-primary);
    border: 1px solid rgba(10, 49, 97, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.btn-light:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }

.btn-link { color: var(--primary); }
.btn-link:hover { color: var(--primary-dark); }
.btn-close {
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.06) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23072244'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-size: 55% auto; background-position: center; background-repeat: no-repeat;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

/* ============ 7. SECTION TITLES ============ */
.section-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}
.section-title::after {
    background: linear-gradient(90deg, #0A3161, #FFC72C);
    box-shadow: 0 4px 14px rgba(255, 199, 44, 0.35);
}
.section-subtitle { color: var(--text-secondary); font-weight: 400; }

/* ============ 8. FORMS ============ */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(10, 49, 97, 0.20);
    border-radius: 16px;
    color: var(--text-primary);
    padding: 0.65rem 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus,
.form-select:focus {
    background: #FFFFFF;
    border-color: #0A3161 !important;
    box-shadow: 0 0 0 0.2rem rgba(10, 49, 97, 0.18), 0 10px 26px rgba(10, 49, 97, 0.10) !important;
}
textarea.form-control { border-radius: 18px; }

.input-group-text {
    background: rgba(10, 49, 97, 0.08);
    border: 1px solid rgba(10, 49, 97, 0.20);
    color: var(--primary);
    border-radius: 16px !important;
    border-right: none;
}

.form-label { color: var(--text-primary); font-weight: 600; font-size: 0.92rem; }
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.form-check-input:focus { box-shadow: 0 0 0 0.2rem rgba(10, 49, 97, 0.18); }

.is-invalid {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

/* Photo upload (apply-now) */
.photo-upload-box {
    border: 2.5px dashed rgba(10, 49, 97, 0.35);
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 30px rgba(10, 49, 97, 0.06);
}
.photo-upload-box:hover { border-color: var(--primary); background: rgba(240, 244, 249, 0.9); }

/* ============ 9. GLASS CARD SYSTEM ============ */
.glass,
.card,
.notice-card,
.top-card,
.infra-card,
.achievement-card,
.alumni-card,
.testimonial-card,
.faculty-card,
.profile-card,
.sponsor-item,
.step-box,
.qr-box,
.contact-card,
.apply-card,
.payment-card,
.mission-box,
.vision-box,
.experience-badge,
.stat-item {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.65));
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(10, 49, 97, 0.10);
    border-radius: 26px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 34px rgba(10, 49, 97, 0.07), 0 3px 10px rgba(15, 23, 42, 0.04);
    transition: transform 0.38s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.38s ease, border-color 0.3s ease, background 0.3s ease;
}

.glass:hover,
.card:hover,
.notice-card:hover,
.top-card:hover,
.infra-card:hover,
.achievement-card:hover,
.alumni-card:hover,
.testimonial-card:hover,
.faculty-card:hover,
.profile-card:hover,
.stat-item:hover,
.contact-card:hover,
.step-box:hover,
.mission-box:hover,
.vision-box:hover {
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(10, 49, 97, 0.22);
    background: #FFFFFF;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 24px 52px rgba(10, 49, 97, 0.14), 0 12px 20px rgba(15, 23, 42, 0.05);
}

.card { border: 1px solid rgba(10, 49, 97, 0.10); border-radius: 26px; overflow: hidden; }
.card-body { color: var(--text-primary); }
.card-title { color: var(--text-primary); font-weight: 700; }
.card-text { color: var(--text-secondary); }
.card-img-top { border-radius: 0; }

.notice-card {
    border-left: 5px solid var(--primary);
    border-radius: 24px;
}
.notice-card.high-priority { border-left: 5px solid #FFC72C; }
.notice-title { color: var(--text-primary); font-weight: 700; }
.notice-content { color: var(--text-secondary); }
.notice-link { color: var(--primary); font-weight: 600; }
.notice-meta { color: var(--text-muted); font-size: 0.82rem; }
.notice-image { border-radius: 16px; }

.top-card { border-radius: 24px; text-align: center; padding: 2rem 1.6rem; height: 100%; }
.top-card i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 62px; height: 62px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.12), rgba(255, 199, 44, 0.18));
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    -webkit-background-clip: initial;
    background-clip: initial;
    font-size: 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 20px rgba(10, 49, 97, 0.10);
    margin-bottom: 1rem;
}
.top-card h3 { font-size: 1.15rem; color: var(--text-primary); }
.top-card p { color: var(--text-secondary); font-size: 0.94rem; }
.top-card:hover i {
    color: #FFC72C;
    -webkit-text-fill-color: #FFC72C;
    background: #0A3161;
}

.infra-card { border-radius: 24px; padding: 1.8rem 1.5rem; height: 100%; text-align: center; }
.infra-icon {
    width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0A3161, #154886);
    color: #FFC72C; font-size: 1.45rem;
    box-shadow: 0 12px 26px rgba(10, 49, 97, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.infra-card h4 { color: var(--text-primary); }

.achievement-card { border-radius: 24px; padding: 2rem 1.7rem; height: 100%; text-align: center; }
.achievement-card i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.12), rgba(255, 199, 44, 0.20));
    color: var(--primary); font-size: 1.3rem; margin-bottom: 0.9rem;
}
.achievement-card h4 { color: var(--text-primary); }
.achievement-card p { color: var(--text-secondary); }
.achievement-date { color: var(--text-muted); }

.faculty-card { border-radius: 26px; padding: 1.9rem 1.4rem; text-align: center; height: 100%; }
.faculty-image {
    width: 128px; height: 128px; margin: 0 auto 1.1rem; border-radius: 50%;
    padding: 5px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
    border: 1.5px solid rgba(10, 49, 97, 0.25);
    box-shadow: 0 12px 30px rgba(10, 49, 97, 0.12);
    overflow: hidden;
}
.faculty-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.faculty-name { color: var(--text-primary); margin-bottom: 0.25rem; }
.faculty-designation { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.faculty-qualification { color: var(--text-muted); font-size: 0.85rem; }
.faculty-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(10, 49, 97, 0.10); color: var(--primary);
}
.faculty-social a:hover { background: var(--primary); color: #FFC72C; }

.alumni-card { border-radius: 26px; padding: 2rem 1.4rem; text-align: center; height: 100%; }
.alumni-photo {
    width: 104px; height: 104px; border-radius: 50%;
    object-fit: cover; margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(10, 49, 97, 0.15);
}
.alumni-name { font-size: 1.1rem; }
.alumni-batch, .alumni-position, .alumni-company { color: var(--text-secondary); font-size: 0.9rem; }

.testimonial-card { border-radius: 26px; padding: 2.1rem 1.7rem; text-align: center; height: 100%; }
.student-photo {
    width: 92px; height: 92px; border-radius: 50%;
    object-fit: cover; margin: 0 auto 1rem;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(10, 49, 97, 0.15);
}
.student-name { color: var(--text-primary); }
.student-batch { color: var(--primary); font-weight: 600; }
.testimonial-message { color: var(--text-secondary); }
.rating .fa-star { color: #FFC72C; text-shadow: 0 2px 8px rgba(255, 199, 44, 0.4); }

.profile-card { border-radius: 26px; padding: 1.6rem; text-align: center; min-width: 280px; }
.profile-img {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem;
    background-size: cover !important; background-position: center !important;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(10, 49, 97, 0.15);
}
.profile-title { color: var(--primary); font-weight: 600; }

.sponsor-item { border-radius: 22px; padding: 1.8rem 1.2rem; text-align: center; margin: 0 0.6rem; }
.sponsor-title { color: var(--text-primary); font-weight: 700; }
.sponsor-name { color: var(--text-secondary); }

.stat-item { border-radius: 22px; padding: 1.6rem 0.8rem; text-align: center; height: 100%; }
.stat-item i { color: #FFC72C; filter: drop-shadow(0 6px 14px rgba(255, 199, 44, 0.35)); }
.stat-item h3 {
    font-size: 2.1rem; font-weight: 800; color: var(--text-primary);
    text-shadow: 0 4px 18px rgba(10, 49, 97, 0.15);
}
.stat-item p { color: var(--text-secondary); font-weight: 500; }

.mission-box, .vision-box {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(10, 49, 97, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(10, 49, 97, 0.06);
}
.mission-box i, .vision-box i { color: var(--primary); -webkit-text-fill-color: var(--primary); -webkit-background-clip: initial; }
.mission-box h4, .vision-box h4 { color: var(--text-primary); }

.experience-badge {
    border-radius: 24px; padding: 1.2rem 1.6rem;
    background: linear-gradient(145deg, #FFFFFF, rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(10, 49, 97, 0.15);
}
.experience-badge .years { color: var(--primary); font-weight: 800; }
.experience-badge .text { color: var(--text-secondary); }

.link-item {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0.55rem 0.9rem;
    margin-bottom: 0.55rem;
    border: 1px solid rgba(10, 49, 97, 0.10);
    transition: all 0.25s ease;
}
.link-item:hover { transform: translateX(6px); background: #FFFFFF; border-color: #0A3161; }
.link-item i { color: var(--primary); margin-right: 0.5rem; }
.link-item a { color: var(--text-primary); font-weight: 500; }
.link-item a:hover { color: var(--primary); }
.link-category { color: var(--primary); font-size: 1.15rem; font-weight: 700; }

/* ============ 10. HERO SLIDER ============ */
.hero-slider { position: relative; height: 84vh; min-height: 620px; max-height: 860px; overflow: hidden; }
.hero-slider .slider-item {
    display: flex !important; align-items: center; justify-content: center;
    text-align: center; height: 84vh; min-height: 620px; max-height: 860px;
}
.hero-slider .slider-item::before {
    background: linear-gradient(120deg, rgba(7, 34, 68, 0.88) 0%, rgba(10, 49, 97, 0.65) 52%, rgba(10, 49, 97, 0.40) 100%);
}
.hero-slider .hero-content {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: transparent;
    border: none;
    max-width: 980px;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}
.hero-slider .hero-title {
    color: #fff;
    text-shadow: 0 6px 30px rgba(7, 34, 68, 0.6), 0 2px 8px rgba(0, 0, 0, 0.35);
    background: none;
    -webkit-text-fill-color: #fff;
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    line-height: 1.12;
    font-weight: 800;
    overflow-wrap: break-word;
    word-break: break-word;
    margin-bottom: 0.9rem;
}
.hero-slider .hero-subtitle {
    background: rgba(10, 49, 97, 0.45);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 199, 44, 0.5);
    color: #FFC72C;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 34px rgba(7, 34, 68, 0.4);
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    padding: 0.55rem 1.8rem;
    border-radius: 50px;
    max-width: 100%;
    width: 100%;
    word-break: break-word;
}
.hero-slider .hero-description {
    color: rgba(255, 255, 255, 0.96);
    background: rgba(7, 34, 68, 0.45);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 22px;
    padding: 0.9rem 1.6rem;
    max-width: 760px;
    margin: 1.2rem auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 16px 40px rgba(7, 34, 68, 0.35);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.7;
}

.hero-slider .slick-dots li button::before {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}
.hero-slider .slick-dots li.slick-active button::before {
    color: #FFC72C;
    text-shadow: 0 0 10px rgba(255, 199, 44, 0.8);
}
.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 5;
}
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover { background: #FFC72C; }
.hero-slider .slick-prev:hover::before,
.hero-slider .slick-next:hover::before { color: #0A3161; }
.hero-slider .slick-prev::before,
.hero-slider .slick-next::before { color: #fff; font-size: 22px; }

/* ============ 11. GALLERY ============ */
.gallery-item { position: relative; }
.gallery-image-wrapper {
    border-radius: 22px; overflow: hidden;
    border: 1px solid rgba(10, 49, 97, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 36px rgba(10, 49, 97, 0.10);
    transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-item:hover .gallery-image-wrapper {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(10, 49, 97, 0.18);
}
.gallery-image-wrapper img { transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.gallery-item:hover .gallery-image-wrapper img { transform: scale(1.07); }
.gallery-overlay {
    background: linear-gradient(160deg, rgba(10, 49, 97, 0.4), rgba(7, 34, 68, 0.85));
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #FFC72C; font-size: 1.6rem; text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); }
.gallery-info h6 { color: var(--text-primary); }

.nav-pills .nav-link {
    border-radius: 40px;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.5rem 1.3rem;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 49, 97, 0.15);
    transition: all 0.25s ease;
}
.nav-pills .nav-link:hover { color: var(--primary); background: #FFFFFF; }
.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #0A3161, #072244);
    color: #fff;
    box-shadow: 0 10px 24px rgba(10, 49, 97, 0.35);
}

/* ============ 12. ACCORDION ============ */
.accordion-item {
    border: 1px solid rgba(10, 49, 97, 0.12);
    border-radius: 18px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 26px rgba(10, 49, 97, 0.05);
    margin-bottom: 0.9rem;
}
.accordion-button {
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    padding: 1.2rem 1.5rem;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.10), rgba(255, 199, 44, 0.10));
    color: var(--primary-dark);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 0.2rem rgba(10, 49, 97, 0.15); }
.accordion-body { background: rgba(255, 255, 255, 0.8); font-weight: 400; }

/* ============ 13. TABLES ============ */
.table-responsive {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(10, 49, 97, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 34px rgba(10, 49, 97, 0.06);
    overflow: hidden;
}
.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(10, 49, 97, 0.02);
    --bs-table-hover-bg: rgba(10, 49, 97, 0.05);
    color: var(--text-primary);
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
}
.table > :not(caption) > * > * {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(10, 49, 97, 0.10);
    background: transparent;
    color: var(--text-primary);
}
.table thead th {
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.10), rgba(255, 199, 44, 0.08)) !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid rgba(10, 49, 97, 0.20) !important;
}
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: rgba(10, 49, 97, 0.05);
    color: var(--text-primary);
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(10, 49, 97, 0.02);
}

/* ============ 14. MODALS ============ */
.modal-content {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.90));
    -webkit-backdrop-filter: blur(32px) saturate(170%);
    backdrop-filter: blur(32px) saturate(170%);
    border: 1px solid rgba(10, 49, 97, 0.15);
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(10, 49, 97, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.modal-header, .modal-footer { border-color: rgba(10, 49, 97, 0.10); background: transparent; }
.modal-header { border-bottom: 1px solid rgba(10, 49, 97, 0.10); }
.modal-title { color: var(--text-primary); font-weight: 700; }
.modal-backdrop.show { opacity: 0.45; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal.fade .modal-dialog { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.modal.fade.show .modal-dialog { transform: translateY(0) scale(1); }

/* ============ 15. ALERTS / BADGES / PAGINATION ============ */
.alert {
    border: none;
    border-radius: 18px;
    border-left: 4px solid;
    font-weight: 500;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.alert-success { background: rgba(40, 167, 69, 0.12); color: #1e7e34; border-left-color: #28a745; }
.alert-danger  { background: rgba(220, 53, 69, 0.12); color: #bd2130; border-left-color: #dc3545; }
.alert-warning { background: rgba(255, 199, 44, 0.20); color: #7A6300; border-left-color: #FFC72C; }
.alert-info    { background: rgba(10, 49, 97, 0.10); color: #0A3161; border-left-color: #0A3161; }
.alert-success, .alert-danger, .alert-warning, .alert-info { color: var(--text-primary); }

.badge { font-weight: 600; letter-spacing: 0.02em; border-radius: 40px; padding: 0.45em 0.8em; }
.badge.bg-warning { background: linear-gradient(135deg, #FFD768, #FFC72C) !important; color: #072244 !important; }
.badge.bg-info    { background: linear-gradient(135deg, #154886, #0A3161) !important; color: #fff; }
.badge.bg-success { background: linear-gradient(135deg, #28A745, #1E7E34) !important; color: #fff; }
.badge.bg-primary { background: linear-gradient(135deg, #0A3161, #072244) !important; color: #fff; }

.pagination .page-link {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--primary);
    border: 1px solid rgba(10, 49, 97, 0.2);
    border-radius: 12px;
    margin: 0 3px;
    font-weight: 600;
}
.pagination .page-link:hover, .pagination .page-link:focus {
    background: rgba(10, 49, 97, 0.10);
    color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(10, 49, 97, 0.15);
}
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0A3161, #072244);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(10, 49, 97, 0.35);
}

/* ============ 16. SECTION BACKGROUNDS ============ */
.notice-section,
.stats-section,
.gallery-section,
.infrastructure-section,
.profile-section,
.news-section,
.sponsor-section,
.links-section,
.faq-section,
.history-section,
.facilities-section,
.contact-section,
.map-section {
    background: #FFFFFF !important;
}
.top-picks-section,
.faculty-section {
    background: linear-gradient(180deg, #FAFBFD, #FFFFFF) !important;
}
.about-section {
    background: linear-gradient(180deg, #FFFFFF, #FAFBFD) !important;
}

.achievements-section,
.testimonials-section {
    background: linear-gradient(130deg, #072244 0%, #0A3161 55%, #051B36 100%) !important;
    position: relative;
    overflow: hidden;
}
.achievements-section .section-title,
.testimonials-section .section-title { color: #fff; }
.achievements-section .section-title::after,
.testimonials-section .section-title::after {
    background: linear-gradient(90deg, #FFC72C, #fff);
    left: 0;
}
.text-center .achievements-section .section-title::after,
.text-center .testimonials-section .section-title::after { left: 50%; transform: translateX(-50%); }
.achievements-section .section-subtitle,
.testimonials-section .section-subtitle { color: rgba(255, 255, 255, 0.85); }

/* ============ 17. BREADCRUMB ============ */
.breadcrumb-section {
    background: linear-gradient(130deg, #072244 0%, #0A3161 60%, #154886 100%);
    padding: 3.4rem 0;
    margin-bottom: 2.6rem;
    position: relative;
    overflow: hidden;
}
.breadcrumb-section::before,
.breadcrumb-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.breadcrumb-section::before {
    width: 320px; height: 320px; left: -80px; top: -120px;
    background: rgba(255, 199, 44, 0.15);
}
.breadcrumb-section::after {
    width: 360px; height: 360px; right: -100px; bottom: -160px;
    background: rgba(10, 49, 97, 0.35);
}
.breadcrumb-title { color: #fff; font-weight: 800; text-shadow: 0 6px 24px rgba(7, 34, 68, 0.45); }
.breadcrumb-nav .breadcrumb { margin-bottom: 0; }
.breadcrumb-nav .breadcrumb-item { color: rgba(255, 255, 255, 0.85); }
.breadcrumb-nav .breadcrumb-item a { color: #FFC72C; }
.breadcrumb-nav .breadcrumb-item a:hover { color: #fff; }
.breadcrumb-nav .breadcrumb-item.active { color: #fff; font-weight: 600; }
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }

/* ============ 18. CONTACT / MAP ============ */
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.4rem; }
.contact-info-icon {
    width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.12), rgba(255, 199, 44, 0.15));
    color: var(--primary); font-size: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.contact-info-text h5 { font-size: 1.05rem; color: var(--text-primary); }
.contact-info-text p { color: var(--text-secondary); margin: 0; }
.map-container {
    border-radius: 26px; overflow: hidden;
    border: 1px solid rgba(10, 49, 97, 0.12);
    box-shadow: 0 20px 46px rgba(10, 49, 97, 0.10);
    min-height: 380px;
}
.map-container iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }

/* Apply & Payment cards */
.apply-card, .payment-card { overflow: hidden; }
.apply-header, .payment-header {
    background: linear-gradient(130deg, #072244 0%, #0A3161 55%, #154886 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.apply-header h2, .payment-header h2 { color: #fff; }
.apply-header i, .payment-header i { color: #FFC72C; filter: drop-shadow(0 6px 18px rgba(255, 199, 44, 0.35)); }
.apply-body, .payment-body { padding: 2.5rem; }
.form-section { border-bottom: 1px solid rgba(10, 49, 97, 0.12); }
.form-section h5 {
    color: var(--primary);
    font-weight: 700;
    border-left: 4px solid var(--secondary);
    padding-left: 12px;
    border-radius: 2px;
}
.qr-box { background: #FFFFFF; border: 2px dashed rgba(10, 49, 97, 0.30); }
.qr-box img { max-width: 220px; max-height: 220px; border-radius: 14px; }
.upi-badge {
    background: linear-gradient(135deg, #0A3161, #072244);
    color: #FFC72C; padding: 10px 20px; border-radius: 40px; font-weight: 700;
    box-shadow: 0 12px 26px rgba(10, 49, 97, 0.30);
}
.step-box { background: rgba(255, 255, 255, 0.85); }
.step-num {
    background: linear-gradient(135deg, #FFD768, #FFC72C);
    color: #072244; box-shadow: 0 8px 18px rgba(255, 199, 44, 0.35);
}
.txn-display {
    background: linear-gradient(135deg, rgba(10, 49, 97, 0.08), rgba(255, 199, 44, 0.08));
    border: 1px solid rgba(10, 49, 97, 0.20);
    color: var(--primary-dark);
    border-radius: 12px;
}

/* ============ 19. FOOTER ============ */
.site-footer {
    background: linear-gradient(160deg, #072244 0%, #0A3161 55%, #051B36 100%);
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    margin-top: 3rem;
}
.site-footer::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 260px at 15% 0%, rgba(255, 199, 44, 0.12), transparent 60%),
        radial-gradient(500px 300px at 85% 100%, rgba(10, 49, 97, 0.3), transparent 60%);
    pointer-events: none;
}
.footer-main { position: relative; padding-top: 3.4rem; }
.footer-widget h4 {
    color: #fff; font-weight: 700; margin-bottom: 1.2rem;
    position: relative; padding-bottom: 0.6rem;
}
.footer-widget h4::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 42px; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, #FFC72C, #fff);
    box-shadow: 0 3px 10px rgba(255, 199, 44, 0.5);
}
.footer-text { color: rgba(255, 255, 255, 0.82); }
.footer-contact p { color: rgba(255, 255, 255, 0.85); }
.footer-links li a { color: rgba(255, 255, 255, 0.85); }
.footer-links li a i { color: #FFC72C; }
.footer-links li a:hover { color: #FFC72C; padding-left: 5px; }

.social-links a {
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}
.social-links a:hover { background: #FFC72C; color: #072244; transform: translateY(-3px); }

.footer-newsletter h5 { color: #fff; font-size: 1rem; }
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}
.newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, 0.7); }
.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.24);
    border-color: #FFC72C;
    box-shadow: 0 0 0 0.2rem rgba(255, 199, 44, 0.25);
}
.input-group > .input-group-text {
    background: #0A3161;
    border: 1px solid #0A3161;
}
.newsletter-form .btn-subscribe {
    border-radius: 16px;
    background: #FFC72C;
    color: #072244;
    font-weight: 700;
}
.newsletter-form .btn-subscribe:hover {
    background: #FFD768;
    color: #072244;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(4, 20, 41, 0.7);
    position: relative;
}
.footer-bottom .copyright,
.footer-bottom .developer { color: rgba(255, 255, 255, 0.75); margin: 0; }
.footer-bottom .developer a { color: #FFC72C; }
.footer-bottom .developer a:hover { color: #fff; }

/* Back to top + floating actions */
.back-to-top {
    position: fixed; right: 22px; bottom: 92px;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0A3161, #072244);
    color: #FFC72C;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    box-shadow: 0 14px 32px rgba(10, 49, 97, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: all 0.35s ease; z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
    background: linear-gradient(135deg, #FFD768, #FFC72C);
    color: #072244;
    transform: translateY(-4px);
}

.floating-actions { z-index: 901; }
.floating-call, .floating-whatsapp {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex !important; align-items: center; justify-content: center;
    box-shadow: 0 14px 32px rgba(10, 49, 97, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.floating-call { background: linear-gradient(135deg, #0A3161, #072244); color: #FFC72C; }
.floating-whatsapp { background: linear-gradient(135deg, #28A745, #1E7E34); color: #fff; }
.floating-call:hover {
    background: linear-gradient(135deg, #FFD768, #FFC72C);
    color: #072244;
    transform: translateY(-4px) scale(1.06);
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.06); color: #fff; }

/* ============ 20. ADMIN PANEL ============ */
/* Admin top navbar */
.admin-topbar-brand { font-weight: 800; color: #fff; }
.navbar-dark.bg-success,
.navbar-dark.bg-primary,
.navbar-dark.bg-dark,
.navbar-dark.bg-info {
    background: linear-gradient(120deg, #072244 0%, #0A3161 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 30px rgba(10, 49, 97, 0.25);
    position: sticky; top: 0; z-index: 1030;
}
.navbar-dark .navbar-brand { color: #fff; }
.navbar-dark .btn-light { color: #0A3161; }

/* Main admin content column */
.admin-content { position: relative; z-index: 1; }

/* Dashboard stat cards — light glass */
.row > .card.text-white.bg-success,
.row > .card.text-white.bg-info,
.row > .card.text-white.bg-warning,
.row > .card.text-white.bg-danger,
.row > .card.text-white.bg-primary,
.row > .card.text-white.bg-secondary {
    color: var(--text-primary) !important;
    background: linear-gradient(145deg, #FFFFFF, rgba(255, 255, 255, 0.85)) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(10, 49, 97, 0.12) !important;
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 36px rgba(10, 49, 97, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}
.row > .card.text-white.bg-success:hover,
.row > .card.text-white.bg-info:hover,
.row > .card.text-white.bg-warning:hover,
.row > .card.text-white.bg-danger:hover,
.row > .card.text-white.bg-primary:hover,
.row > .card.text-white.bg-secondary:hover {
    transform: translateY(-6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 26px 52px rgba(10, 49, 97, 0.16);
}
.row > .card.text-white.bg-success .card-title,
.row > .card.text-white.bg-info .card-title,
.row > .card.text-white.bg-warning .card-title,
.row > .card.text-white.bg-danger .card-title,
.row > .card.text-white.bg-primary .card-title,
.row > .card.text-white.bg-secondary .card-title { color: var(--primary); }
.row > .card.text-white.bg-success .card-body > i,
.row > .card.text-white.bg-info .card-body > i,
.row > .card.text-white.bg-warning .card-body > i,
.row > .card.text-white.bg-danger .card-body > i,
.row > .card.text-white.bg-primary .card-body > i,
.row > .card.text-white.bg-secondary .card-body > i { color: #FFC72C; border-radius: 14px; }

/* Admin card headers (Quick actions / Recent messages etc.) */
.card-header.bg-success,
.card-header.bg-primary,
.card-header.bg-info {
    background: transparent !important;
    border-bottom: 1px solid rgba(10, 49, 97, 0.14);
    color: var(--primary) !important;
}
.card-header.bg-success * ,
.card-header.bg-primary * ,
.card-header.bg-info * { color: var(--primary) !important; }

/* Admin quick-action list groups */
.list-group-item {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(10, 49, 97, 0.10);
    color: var(--text-primary);
    border-radius: 14px;
    margin-bottom: 6px;
    transition: all 0.25s ease;
}
.list-group-item:hover, .list-group-item.active {
    background: rgba(10, 49, 97, 0.10);
    color: var(--primary);
    border-color: rgba(10, 49, 97, 0.25);
    transform: translateX(4px);
}

/* Window-level text */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
    letter-spacing: -0.02em;
}

/* ============ 21. ANIMATION ============ */
[data-aos] { will-change: transform, opacity; }

/* ============ 22. RESPONSIVE ============ */
@media (max-width: 1200px) {
    .hero-slider .hero-title { font-size: 3.6rem; }
    .navbar-nav .nav-link { padding: 0.5rem 0.9rem; }
}

/* ============ DESKTOP NAVBAR (2-ROW): row 1 = brand + actions, row 2 = centered nav ============ */
@media (min-width: 992px) {
    .site-header .navbar {
        border-radius: 28px;
        padding: 0.55rem 1.4rem 0.7rem;
    }
    .site-header .navbar .container-fluid { flex-wrap: wrap; }
    .site-header .navbar .navbar-brand { order: 1; min-width: 0; }
    .site-header .navbar .navbar-toggler { order: 2; }
    .site-header .navbar .header-actions { order: 3; margin-left: auto; }
    .site-header .navbar .navbar-collapse {
        order: 4;
        flex-basis: 100%;
        flex-grow: 1;
        justify-content: center;
        margin-top: 0.5rem;
        padding-top: 0.4rem;
        border-top: 1px solid rgba(10, 49, 97, 0.10);
    }
    .site-header .navbar .navbar-nav {
        margin-left: auto;
        margin-right: auto;
        gap: 0.1rem;
    }
    .navbar-brand .text-content h1 {
        font-size: 1.15rem;
        white-space: normal;
        overflow-wrap: break-word;
    }
    .navbar-brand .text-content p { white-space: normal; }
}

@media (max-width: 992px) {
    .site-header .navbar { border-radius: 32px; }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        backdrop-filter: blur(24px) saturate(160%);
        border: 1px solid rgba(10, 49, 97, 0.15);
        border-radius: 24px;
        padding: 1rem;
        margin-top: 0.8rem;
        box-shadow: 0 26px 56px rgba(10, 49, 97, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        max-height: 74vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        text-align: center;
        border-radius: 14px;
        border-bottom: 1px solid rgba(10, 49, 97, 0.08);
        padding: 0.7rem 1rem;
    }
    .navbar-nav .dropdown-menu { text-align: center; background: transparent; border: none; box-shadow: none; margin-top: 0; padding: 0; }
    .header-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .apply-body, .payment-body { padding: 1.5rem; }
    .breadcrumb-section { padding: 2.6rem 0; }
    .hero-slider { height: auto; min-height: 60vh; }
    .hero-slider .slider-item { height: auto; min-height: 60vh; padding: 2.6rem 1rem; }
    .hero-slider .hero-content { padding: 1.5rem; }
    .hero-slider .hero-title { font-size: 2.9rem; }
    .hero-slider .hero-subtitle { font-size: 1.45rem; padding: 0.45rem 1.2rem; }
    .hero-slider .btn-hero { padding: 0.85rem 1.6rem; font-size: 1rem; }
    .stat-item h3 { font-size: 1.8rem; }
    .top-bar { font-size: 0.78rem; }
    .footer-main { padding-top: 2.6rem; }
    .map-container, .map-container iframe { min-height: 320px; }
}

@media (max-width: 576px) {
    .hero-slider .hero-title { font-size: 2.1rem; line-height: 1.15; }
    .hero-slider .hero-subtitle { font-size: 1.1rem; padding: 0.35rem 0.95rem; }
    .hero-slider .hero-description { font-size: 0.95rem; line-height: 1.6; padding: 0.75rem 1.1rem; }
    .section-title { font-size: 1.9rem; }
    .btn { padding: 0.55rem 1.2rem; }
    .floating-call, .floating-whatsapp { width: 48px; height: 48px; }
    .back-to-top { right: 16px; bottom: 80px; width: 44px; height: 44px; }
}
@media (max-width: 430px) {
    .navbar-brand .text-content h1 { font-size: 0.95rem; }
    .navbar-brand img { max-height: 34px; }
    .header-actions .btn { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
    .section-title { font-size: 1.7rem; }
    .table-responsive { border-radius: 16px; }
    .gallery-image-wrapper { height: 180px; }
}
@media (max-width: 360px) {
    .navbar-brand .text-content h1 { font-size: 0.85rem; }
    .hero-slider .hero-title { font-size: 1.85rem; }
    .hero-slider .hero-description { display: none; }
    .body { overflow-x: hidden; }
}

/* ============ 23. REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .orb-1, .orb-2, .orb-3 { animation: none !important; }
}