/* ==========================================================================
   SPVS Hanumangarh - Modern Executive Theme (style1.css)
   Palette: Deep Imperial Slate, Forest Emerald/Teal & Warm Royal Gold
   ========================================================================== */

:root {
    /* Color Palette */
    --spvs-primary: #0f766e;           /* Deep Forest Teal / Jewel Green */
    --spvs-primary-dark: #0f172a;      /* Imperial Midnight Slate */
    --spvs-primary-light: #14b8a6;     /* Bright Vibrant Teal */
    --spvs-primary-soft: #f0fdfa;      /* Teal 50 */
    --spvs-accent: #d97706;            /* Warm Royal Amber / Gold */
    --spvs-accent-light: #f59e0b;      /* Golden Amber */
    --spvs-accent-soft: #fffbeb;       /* Amber 50 */
    --spvs-dark-slate: #1e293b;        /* Slate 800 */
    --spvs-surface: #ffffff;
    --spvs-bg: #f8fafc;
    --spvs-text-main: #0f172a;
    --spvs-text-muted: #64748b;
    --spvs-border: #e2e8f0;
    --spvs-border-hover: #cbd5e1;

    /* Gradients */
    --spvs-gradient-primary: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #047857 100%);
    --spvs-gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --spvs-gradient-dark: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    --spvs-gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --spvs-gradient-hero: linear-gradient(135deg, #0f172a 0%, #134e4a 60%, #0f766e 100%);

    /* Shadows & Elevation */
    --spvs-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
    --spvs-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
    --spvs-shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --spvs-shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --spvs-shadow-glow: 0 0 20px rgba(15, 118, 110, 0.25);

    /* Radii */
    --spvs-radius-sm: 8px;
    --spvs-radius-md: 14px;
    --spvs-radius-lg: 20px;
}

/* Global Base */
body {
    font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--spvs-bg);
    color: var(--spvs-text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--spvs-text-main);
    letter-spacing: -0.3px;
}

/* Top Announcement Bar */
.spvs-topbar {
    background: var(--spvs-primary-dark);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.spvs-topbar a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}
.spvs-topbar a:hover {
    color: var(--spvs-accent-light);
}
.session-pill {
    background: var(--spvs-gradient-accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 3px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
    letter-spacing: 0.5px;
}
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   Portal Identity & State Dignitaries Header
   ========================================================================== */
.spvs-identity-header {
    background: #ffffff;
    border-bottom: 1px solid var(--spvs-border);
    padding: 10px 0;
    position: relative;
    z-index: 10;
    box-shadow: var(--spvs-shadow-xs);
}
.spvs-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-icon-box {
    width: 52px;
    height: 52px;
    background: var(--spvs-gradient-primary);
    border-radius: var(--spvs-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.spvs-brand:hover .brand-icon-box {
    transform: rotate(-5deg) scale(1.05);
}
.brand-text-main {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--spvs-primary);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.3px;
}
.brand-text-sub {
    font-size: 0.82rem;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
}
.brand-text-gov {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 1px;
}

/* State Dignitaries Cards in Header */
.spvs-dignitaries-strip {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dignitary-header-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    transition: all 0.25s ease;
    text-decoration: none;
}
.dignitary-header-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.dignitary-photo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d97706;
    background: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.25);
}
.dignitary-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.dignitary-details {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.dignitary-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
    white-space: nowrap;
}
.dignitary-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    display: inline-block;
    margin: 2px 0 1px;
    width: fit-content;
    white-space: nowrap;
}
.badge-cm {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}
.badge-min {
    background: #ccfbf1;
    color: #115e59;
    border: 1px solid #99f6e4;
}
.dignitary-state {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
}

/* Sticky Navigation Header */
.spvs-header {
    background: #0f172a;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 3px solid var(--spvs-accent);
    box-shadow: var(--spvs-shadow-md);
    padding: 10px 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.spvs-nav-mini-brand {
    font-size: 1.18rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.spvs-nav-mini-brand i {
    color: var(--spvs-accent-light);
    font-size: 1.25rem;
}

/* Nav Menu */
.navmenu ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}
.navmenu a, .navmenu a:focus {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 0.96rem;
    font-weight: 600;
    color: #cbd5e1;
    border-radius: var(--spvs-radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.15px;
    min-height: 42px;
}
.navmenu a:hover, .navmenu .active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
}
.navmenu .active {
    color: var(--spvs-accent-light);
    font-weight: 700;
}

/* Action Nav Buttons */
.btn-nav-school {
    background: var(--spvs-gradient-accent) !important;
    color: #ffffff !important;
    border: 1.5px solid transparent !important;
    border-radius: 50px !important;
    padding: 9px 22px !important;
    font-weight: 700 !important;
    font-size: 0.93rem !important;
    min-height: 42px !important;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35) !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-nav-school:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.5) !important;
    color: #ffffff !important;
}
.btn-nav-school.active {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    border: 2px solid #fbbf24 !important;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.4), 0 6px 18px rgba(217, 119, 6, 0.6) !important;
    color: #ffffff !important;
}
.btn-nav-school.inactive {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: none !important;
}
.btn-nav-school.inactive:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #fde68a !important;
    border-color: #f59e0b !important;
}

.btn-nav-admin {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    padding: 9px 20px !important;
    font-weight: 700 !important;
    font-size: 0.93rem !important;
    min-height: 42px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25) !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-nav-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4) !important;
    color: #ffffff !important;
}
.btn-nav-admin.active {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    border: 2px solid #38bdf8 !important;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.4), 0 6px 18px rgba(2, 132, 199, 0.6) !important;
    color: #ffffff !important;
}
.btn-nav-admin.inactive {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: none !important;
}
.btn-nav-admin.inactive:hover {
    background: rgba(56, 189, 248, 0.2) !important;
    color: #bae6fd !important;
    border-color: #38bdf8 !important;
}

/* Header Responsive Media Queries */
@media (max-width: 991px) {
    .spvs-identity-header {
        padding: 8px 0;
    }
    .brand-text-main {
        font-size: 1.15rem;
    }
    .brand-text-sub {
        font-size: 0.75rem;
    }
    .brand-text-gov {
        font-size: 0.68rem;
    }
    .dignitary-header-card {
        padding: 4px 8px;
        gap: 8px;
    }
    .dignitary-photo-wrap {
        width: 42px;
        height: 42px;
    }
    .dignitary-name {
        font-size: 0.78rem;
    }
    .dignitary-badge {
        font-size: 0.62rem;
        padding: 0 4px;
    }
    .dignitary-state {
        font-size: 0.62rem;
    }
}

@media (max-width: 575px) {
    .spvs-dignitaries-strip {
        gap: 6px;
        justify-content: space-between !important;
        width: 100%;
    }
    .dignitary-header-card {
        flex: 1;
        padding: 4px 6px;
        gap: 6px;
    }
    .dignitary-photo-wrap {
        width: 36px;
        height: 36px;
    }
    .dignitary-name {
        font-size: 0.72rem;
    }
    .dignitary-badge {
        font-size: 0.58rem;
    }
    .dignitary-state {
        display: none;
    }
}

/* Main Content Wrapper */
.spvs-content-area {
    min-height: 60vh;
    padding: 30px 0 50px;
}
.spvs-page-title-banner {
    background: var(--spvs-gradient-hero);
    color: #ffffff;
    padding: 24px 0;
    margin-bottom: 25px;
    box-shadow: var(--spvs-shadow-sm);
    border-bottom: 3px solid var(--spvs-accent);
}
.spvs-page-title-banner h2 {
    color: #ffffff;
    font-size: 1.75rem;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Quick Feature Highlights */
.hero-stat-card {
    background: #ffffff;
    border: 1px solid var(--spvs-border);
    border-radius: var(--spvs-radius-md);
    padding: 18px 16px;
    box-shadow: var(--spvs-shadow-xs);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--spvs-shadow-md);
    border-color: #5eead4;
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--spvs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.icon-teal { background: #ccfbf1; color: var(--spvs-primary); }
.icon-amber { background: #fef3c7; color: var(--spvs-accent); }
.icon-emerald { background: #ecfdf5; color: #059669; }
.icon-slate { background: #f1f5f9; color: #334155; }

/* Officer Profile Cards */
.officer-card {
    background: #ffffff;
    border: 1px solid var(--spvs-border);
    border-radius: var(--spvs-radius-md);
    overflow: hidden;
    box-shadow: var(--spvs-shadow-xs);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--spvs-shadow-md);
    border-color: #99f6e4;
}
.officer-avatar-wrapper {
    padding: 24px 20px 16px;
    text-align: center;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}
.officer-img {
    width: 105px;
    height: 105px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s ease;
}
.officer-card:hover .officer-img {
    transform: scale(1.05);
}
.officer-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--spvs-gradient-primary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
}
.officer-body {
    padding: 20px 16px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.officer-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.officer-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--spvs-accent);
    margin-bottom: 6px;
}
.officer-designation {
    font-size: 0.82rem;
    color: var(--spvs-text-muted);
    line-height: 1.4;
    margin-bottom: 10px;
}
.officer-contact-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}
.officer-contact-chip:hover {
    background: var(--spvs-primary);
    color: #ffffff;
}

/* Notice Board & Orders Card */
.notice-card {
    background: #ffffff;
    border: 1px solid var(--spvs-border);
    border-radius: var(--spvs-radius-md);
    overflow: hidden;
    box-shadow: var(--spvs-shadow-sm);
}
.notice-header {
    background: var(--spvs-gradient-hero);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notice-header h5 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.notice-item {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.25s ease;
}
.notice-item:hover {
    background-color: var(--spvs-primary-soft);
    transform: translateX(4px);
    color: var(--spvs-primary);
}
.notice-pdf-icon {
    width: 38px;
    height: 38px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: var(--spvs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.notice-doc-icon {
    width: 38px;
    height: 38px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: var(--spvs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.notice-img-icon {
    width: 38px;
    height: 38px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: var(--spvs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.notice-video-icon {
    width: 38px;
    height: 38px;
    background: #ffedd5;
    color: #ea580c;
    border-radius: var(--spvs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.notice-date-badge {
    font-size: 0.72rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
}

/* Support Helpdesk Box */
.support-box {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border: 1px solid #99f6e4;
    border-radius: var(--spvs-radius-md);
    padding: 18px;
    margin-top: 20px;
}

/* Search Card Styling */
.spvs-search-card {
    background: #ffffff;
    border: 1px solid var(--spvs-border);
    border-radius: var(--spvs-radius-md);
    box-shadow: var(--spvs-shadow-sm);
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.spvs-search-card:hover {
    box-shadow: var(--spvs-shadow-md);
}
.spvs-search-card .card-header {
    background: var(--spvs-gradient-hero);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 20px;
    border: none;
}
.spvs-search-card .card-body {
    padding: 24px 20px;
}
.spvs-search-card .card-footer {
    background: #f8fafc;
    border-top: 1px solid var(--spvs-border);
    padding: 14px 20px;
}
.spvs-search-input {
    border: 1.5px solid var(--spvs-border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.spvs-search-input:focus {
    border-color: var(--spvs-primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
    outline: none;
}
.btn-spvs-primary {
    background: var(--spvs-gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
    transition: all 0.3s ease;
}
.btn-spvs-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.4);
    color: #ffffff;
}

/* Result Table in Search */
.spvs-result-table {
    width: 100%;
    margin-bottom: 0;
}
.spvs-result-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.92rem;
}
.spvs-result-table td:first-child {
    font-weight: 700;
    color: #475569;
    width: 35%;
    background-color: #f8fafc;
}
.spvs-result-table td:last-child {
    color: #0f172a;
    font-weight: 600;
}

/* Modern Login Card Styling */
.login-hero-box {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 60%, #0f766e 100%);
    border-radius: var(--spvs-radius-lg);
    padding: 40px 30px;
    color: #ffffff;
    box-shadow: var(--spvs-shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.login-card {
    background: #ffffff;
    border: 1px solid var(--spvs-border);
    border-radius: var(--spvs-radius-lg);
    box-shadow: var(--spvs-shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.login-card-header {
    background: var(--spvs-gradient-hero);
    color: #ffffff;
    padding: 24px 24px 20px;
    text-align: center;
    border-bottom: 3px solid var(--spvs-accent);
}
.login-card-body {
    padding: 30px 24px;
}
.login-input-group {
    position: relative;
    margin-bottom: 20px;
}
.login-input-group label {
    font-weight: 700;
    font-size: 0.88rem;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}
.login-input {
    border: 1.5px solid var(--spvs-border);
    border-radius: 10px;
    padding: 11px 14px 11px 42px;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.25s ease;
}
.login-input:focus {
    border-color: var(--spvs-primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
    outline: none;
}
.login-input-icon {
    position: absolute;
    left: 14px;
    top: 36px;
    color: var(--spvs-text-muted);
    font-size: 1.1rem;
}
.captcha-container {
    background: #f8fafc;
    border: 1px solid var(--spvs-border);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.captcha-container .Captcha {
    flex: 1;
    display: flex;
    align-items: center;
}
.captcha-container .Captcha img {
    width: 100%;
    max-width: 240px;
    height: 46px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

/* Contacts Info Card */
.info-card {
    background: #ffffff;
    border: 1px solid var(--spvs-border);
    border-radius: var(--spvs-radius-md);
    padding: 24px 20px;
    box-shadow: var(--spvs-shadow-xs);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--spvs-shadow-md);
    border-color: #5eead4;
}
.info-card .icon-box {
    width: 54px;
    height: 54px;
    background: var(--spvs-primary-soft);
    color: var(--spvs-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--spvs-text-main);
}
.info-card p {
    margin-bottom: 4px;
    color: var(--spvs-text-muted);
    font-size: 0.88rem;
}

/* Footer Styling */
.spvs-footer {
    background: var(--spvs-gradient-dark);
    color: #94a3b8;
    padding: 60px 0 0;
    border-top: 4px solid var(--spvs-primary);
    font-size: 0.92rem;
}
.spvs-footer h5 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.spvs-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    background: var(--spvs-accent);
    border-radius: 2px;
}
.spvs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spvs-footer-links li {
    margin-bottom: 10px;
}
.spvs-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.spvs-footer-links a:hover {
    color: var(--spvs-accent-light);
    transform: translateX(4px);
}
.spvs-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #cbd5e1;
}
.spvs-footer-contact-item i {
    color: var(--spvs-accent);
    font-size: 1.15rem;
    margin-top: 3px;
}
.spvs-counter-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f8fafc;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 12px;
}
.spvs-footer-bottom {
    background: #020617;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}
.spvs-footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}
.spvs-footer-bottom a:hover {
    color: var(--spvs-accent-light);
}

/* Scroll Top Floating Button */
.spvs-scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: var(--spvs-gradient-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.spvs-scroll-top.active {
    visibility: visible;
    opacity: 1;
}
.spvs-scroll-top:hover {
    transform: translateY(-4px);
    background: var(--spvs-accent);
    color: #ffffff;
}

/* ==========================================================================
   10-08-2026: School Registration & Guest Form Styles (Centralized CSS)
   ========================================================================== */
.reg-card {
    background: #ffffff;
    border-radius: var(--spvs-radius-md, 16px);
    border: 1px solid var(--spvs-border, #e2e8f0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.reg-card-header {
    background: var(--spvs-gradient-primary, linear-gradient(135deg, #0f766e 0%, #115e59 100%));
    color: #ffffff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.guide-card-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-label-custom {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-control-custom {
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.form-control-custom:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3.5px rgba(15, 118, 110, 0.15);
}
.board-selector-box {
    display: flex;
    gap: 16px;
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
}
.guide-step-card {
    border-left: 4px solid #0f766e;
    background: #f8fafc;
    padding: 14px 16px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 14px;
    transition: transform 0.15s ease;
}
.guide-step-card:hover {
    transform: translateX(4px);
}

/* 11-08-2026: User Manual & Video Card Styling */
.manual-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    margin-bottom: 20px;
}
.manual-header {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    color: #ffffff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.manual-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.manual-list {
    padding: 10px 14px;
    display: flex;
    flex-column: column;
    gap: 10px;
}
.manual-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.2s ease;
}
.manual-item:hover {
    background: #f0fdfa;
    border-color: #0f766e;
    transform: translateX(4px);
    color: #0f766e;
}
.manual-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.manual-icon-pdf {
    background: #fee2e2;
    color: #dc2626;
}
.manual-icon-doc {
    background: #dbeafe;
    color: #2563eb;
}
.manual-icon-img {
    background: #dcfce7;
    color: #16a34a;
}
.manual-icon-video {
    background: #ffedd5;
    color: #ea580c;
}
.manual-badge {
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
}
