/* ============================================
   MASTER PAGE STYLESHEET - GVISH
   Color Scheme: Deep Burgundy (#460018) + White (No Gold/Golden Colors)
   ============================================ */

/* --------------------------------------------
   GLOBAL RESET & DESIGN TOKENS
   -------------------------------------------- */
:root {
    /* Primary Colors - Deep Burgundy Theme */
    --gv-primary: #460018;
    --gv-primary-dark: #2d0010;
    --gv-primary-light: #6b0025;
    --gv-primary-glow: rgba(70,0,24,0.08);
    /* Neutral Colors - White Only (No Gold) */
    --gv-white: #ffffff;
    --gv-off-white: #fefaf5;
    --gv-light-gray: #f5f5f5;
    --gv-ink: #1a1a2e;
    --gv-muted: rgba(26,26,46,0.55);
    --gv-border: rgba(70,0,24,0.12);
    --gv-light-bg: #fff9f5;
    /* Functional Colors */
    --gv-success: #2a7f3e;
    --gv-warning: #d4a11e;
    --gv-error: #c23b22;
    --gv-info: #2c6e9e;
    /* Status Colors - Without Gold */
    --gv-rose: #c0174f;
    --gv-green: #1a6b3c;
    /* Spacing & Sizing */
    --gv-header-height: 70px;
    --gv-strip-height: 36px;
    --gv-radius-sm: 6px;
    --gv-radius-md: 10px;
    --gv-radius-lg: 16px;
    --gv-shadow: 0 4px 20px rgba(70,0,24,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
/*    background: var(--gv-off-white);*/
    color: var(--gv-ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------
   TYPOGRAPHY
   -------------------------------------------- */
h1, h2, h3, .gv-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* --------------------------------------------
   PRELOADER - Branded with Burgundy
   -------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--gv-white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: opacity 0.4s ease, visibility 0.4s;
}

    #preloader .pl-logo {
        width: 85px;
        height: 85px;
        background: rgba(70,0,24,0.06);
        border: 1px solid rgba(70,0,24,0.15);
        border-radius: var(--gv-radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    #preloader .pl-spin {
        width: 32px;
        height: 32px;
        border: 2.5px solid rgba(70,0,24,0.1);
        border-top-color: var(--gv-primary);
        border-radius: 50%;
        animation: gv-spin 0.7s linear infinite;
    }

@keyframes gv-spin {
    to {
        transform: rotate(360deg);
    }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* --------------------------------------------
   ANNOUNCEMENT STRIP - Burgundy Theme
   -------------------------------------------- */
.gv-strip {
    height: var(--gv-strip-height);
    background: var(--gv-primary);
    overflow: hidden;
    position: relative;
}

    .gv-strip::before,
    .gv-strip::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
    }

    .gv-strip::before {
        left: 0;
        background: linear-gradient(90deg, var(--gv-primary) 20%, transparent);
    }

    .gv-strip::after {
        right: 0;
        background: linear-gradient(270deg, var(--gv-primary) 20%, transparent);
    }

.gv-strip__track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: gv-ticker 35s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes gv-ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gv-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 28px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
}

    .gv-strip__item .pip {
        width: 4px;
        height: 4px;
        background: var(--gv-white);
        border-radius: 50%;
    }

    .gv-strip__item b,
    .gv-strip__item strong {
        color: var(--gv-white);
        font-weight: 600;
    }

/* --------------------------------------------
   DESKTOP NAVIGATION - White with Burgundy accents
   -------------------------------------------- */
.gv-nav {
    position: sticky;
    top: 0;
    z-index: 800;
    height: var(--gv-header-height);
    background: var(--gv-white);
    border-bottom: 1px solid var(--gv-border);
    box-shadow: var(--gv-shadow);
}

.gv-nav__row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Brand Logo with Text */
.gv-nav__brand {
    display: flex;
    align-items: center;
/*    gap: 12px;*/
    text-decoration: none;
    padding-right: 1.5rem;
    border-right: 1px solid var(--gv-border);
    flex-shrink: 0;
}

    .gv-nav__brand img {
        height: 90px;
        width: auto;
        background: transparent;
        border: none;
        padding: 5px 0;
        object-fit: contain;
        transition: all 0.2s ease;
    }

    .gv-nav__brand span {
        font-family: 'Cormorant Garamond', 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--gv-primary);
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .gv-nav__brand:hover span {
        color: var(--gv-primary-light);
    }

/* Navigation Links */
.gv-nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex: 1;
}

    .gv-nav__links li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0.5rem 1rem;
        border-radius: var(--gv-radius-sm);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--gv-muted);
        transition: all 0.2s ease;
        position: relative;
    }

        .gv-nav__links li a img {
            width: 18px;
            height: 18px;
/*            opacity: 0.5;*/
            transition: opacity 0.2s;
/*            filter: brightness(0) saturate(100%);*/
        }

        .gv-nav__links li a:hover {
            background: rgba(70,0,24,0.04);
            color: var(--gv-primary);
        }

            .gv-nav__links li a:hover img {
                opacity: 1;
            }

        .gv-nav__links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--gv-primary);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.2s;
        }

        .gv-nav__links li a:hover::after,
        .gv-nav__links li.active a::after {
            transform: scaleX(1);
        }

/* Right Side */
.gv-nav__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    flex-shrink: 0;
}

.gv-nav__pill {
    background: var(--gv-primary);
    color: var(--gv-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

    .gv-nav__pill::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--gv-white);
        border-radius: 50%;
    }

/* --------------------------------------------
   PAGE HEADER BANNER - Burgundy Gradient
   -------------------------------------------- */
.gv-header {
    /*    background: linear-gradient(108deg, var(--gv-primary) 0%, var(--gv-primary-light) 55%, #5a001f 100%);*/
    background: linear-gradient(108deg, var(--ink) 0%, var(--ink-mid) 55%, #102e66 100%);
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
}

    .gv-header::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .gv-header::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 15%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.gv-header__rule {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gv-white) 0%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.1) 80%, transparent);
}

.gv-header__inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gv-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gv-white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

    .gv-header__badge::before {
        content: '';
        width: 5px;
        height: 5px;
        background: var(--gv-white);
        border-radius: 50%;
    }

.gv-header__text {
    flex: 1;
}

    .gv-header__text h1 {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        color: var(--gv-white);
        margin: 0;
        line-height: 1.2;
    }

    .gv-header__text p {
        color: rgba(255,255,255,0.55);
        font-size: 0.8rem;
        margin-top: 0.35rem;
    }

.gv-header__sep {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.gv-header__stats {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
}

.gv-header__stat {
    text-align: center;
}

.gv-header__stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gv-white);
    line-height: 1;
}

.gv-header__stat-lbl {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    margin-top: 2px;
}

/* --------------------------------------------
   MAIN CONTENT AREA
   -------------------------------------------- */
.gv-main {
    max-width: 1440px;
    margin: 0 auto;
/*    padding: 2rem;*/
    min-height: 50vh;
/*    background: var(--gv-off-white);*/
}

/* --------------------------------------------
   FOOTER - Burgundy Theme
   -------------------------------------------- */
.gv-footer {
    background: var(--gv-primary);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gv-footer__left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gv-footer__logo {
    height: 36px;
    width: auto;
    background: rgba(255,255,255,0.08);
    border-radius: var(--gv-radius-sm);
    padding: 4px 8px;
    object-fit: contain;
}

.gv-footer__copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}

.gv-footer__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gv-footer__session {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}

.gv-footer__tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gv-white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

/* --------------------------------------------
   MOBILE HEADER & DRAWER
   -------------------------------------------- */
.gv-mob-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 64px;
    background: var(--gv-white);
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    border-bottom: 1px solid var(--gv-border);
    box-shadow: var(--gv-shadow);
}

    .gv-mob-bar .gv-mob-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 10px;
    }

        .gv-mob-bar .gv-mob-logo img {
            height: 75px;
            width: auto;
            background: transparent;
            border: none;
            padding: 5px 0;
            object-fit: contain;
        }

        .gv-mob-bar .gv-mob-logo span {
            font-family: 'Cormorant Garamond', 'Playfair Display', serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--gv-primary);
        }

.gv-mob-btn {
    background: rgba(70,0,24,0.05);
    border: 1px solid rgba(70,0,24,0.1);
    border-radius: var(--gv-radius-sm);
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

    .gv-mob-btn span {
        width: 20px;
        height: 2px;
        background: var(--gv-primary);
        border-radius: 2px;
        transition: all 0.2s;
    }

    .gv-mob-btn.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .gv-mob-btn.is-open span:nth-child(2) {
        opacity: 0;
    }

    .gv-mob-btn.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.gv-mob-drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 850;
    background: var(--gv-white);
    border-bottom: 1px solid var(--gv-border);
    box-shadow: 0 6px 20px rgba(70,0,24,0.08);
    padding: 0.5rem 0.75rem 1rem;
}

    .gv-mob-drawer.open {
        display: block;
    }

    .gv-mob-drawer ul {
        list-style: none;
    }

        .gv-mob-drawer ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.75rem 1rem;
            border-radius: var(--gv-radius-sm);
            color: var(--gv-primary);
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
        }

            .gv-mob-drawer ul li a:hover {
                background: rgba(70,0,24,0.04);
                color: var(--gv-primary-light);
            }

            .gv-mob-drawer ul li a img {
                width: 20px;
                height: 20px;
                opacity: 0.6;
            }

/* --------------------------------------------
   UTILITY CLASSES - Burgundy Theme
   -------------------------------------------- */
.gv-primary-text {
    color: var(--gv-primary);
}

.gv-primary-bg {
    background: var(--gv-primary);
    color: var(--gv-white);
}

.gv-primary-bg-light {
    background: rgba(70,0,24,0.08);
    color: var(--gv-primary);
}

.gv-btn-primary {
    background: var(--gv-primary);
    color: var(--gv-white);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--gv-radius-sm);
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

    .gv-btn-primary:hover {
        background: var(--gv-primary-light);
        transform: translateY(-1px);
    }

.gv-btn-outline {
    background: transparent;
    border: 1.5px solid var(--gv-primary);
    color: var(--gv-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--gv-radius-sm);
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

    .gv-btn-outline:hover {
        background: var(--gv-primary);
        color: var(--gv-white);
    }

/* --------------------------------------------
   CARD STYLES - Clean white cards with burgundy accents
   -------------------------------------------- */
.gv-card {
    background: var(--gv-white);
    border-radius: var(--gv-radius-md);
    border: 1px solid var(--gv-border);
    padding: 1.25rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .gv-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(70,0,24,0.08);
        border-color: rgba(70,0,24,0.15);
    }

.gv-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gv-primary);
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--gv-primary);
    padding-left: 0.75rem;
}

/* --------------------------------------------
   FORM ELEMENTS
   -------------------------------------------- */
input, select, textarea {
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-sm);
    padding: 0.6rem 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: var(--gv-white);
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: var(--gv-primary);
        box-shadow: 0 0 0 3px rgba(70,0,24,0.1);
    }

/* --------------------------------------------
   TABLE STYLES
   -------------------------------------------- */
.gv-table {
    width: 100%;
    background: var(--gv-white);
    border-collapse: collapse;
    border-radius: var(--gv-radius-md);
    overflow: hidden;
}

    .gv-table th {
        background: var(--gv-primary);
        color: var(--gv-white);
        padding: 0.75rem 1rem;
        font-weight: 600;
        font-size: 0.85rem;
    }

    .gv-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--gv-border);
        color: var(--gv-ink);
    }

    .gv-table tr:hover td {
        background: rgba(70,0,24,0.03);
    }

/* --------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------- */
@media (max-width: 991px) {
    .gv-strip {
        display: none !important;
    }

    .gv-nav {
        display: none !important;
    }

    .gv-mob-bar {
        display: flex;
    }

    .gv-layout {
        padding-top: 64px;
    }

    .gv-header {
        padding: 1rem;
    }

    .gv-header__stats,
    .gv-header__sep {
        display: none;
    }

    .gv-main {
        padding: 1rem;
    }

    .gv-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .gv-nav__brand span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gv-nav__brand span {
        display: none;
    }

    .gv-mob-bar .gv-mob-logo span {
        display: none;
    }
}

/* --------------------------------------------
   ANIMATIONS
   -------------------------------------------- */
@keyframes gv-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gv-fade-in {
    animation: gv-fadeIn 0.4s ease forwards;
}

/* --------------------------------------------
   PRINT STYLES
   -------------------------------------------- */
@media print {
    .gv-nav,
    .gv-mob-bar,
    .gv-strip,
    .gv-footer__right {
        display: none;
    }

    .gv-header {
        background: var(--gv-primary);
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .gv-main {
        padding: 0;
    }
}

/* --------------------------------------------
   SCROLLBAR STYLING
   -------------------------------------------- */
::-webkit-scrollbar {
/*    width: 8px;*/
/*    height: 8px;*/
}

::-webkit-scrollbar-track {
/*    background: var(--gv-off-white);*/
}

::-webkit-scrollbar-thumb {
/*    background: var(--gv-primary);*/
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
/*        background: var(--gv-primary-light);*/
    }

    /* ============================================
   DEPARTMENT PAGE (Default.aspx) STYLES
   VIBRANT & MODERN COLOR SCHEME
   Fresh Teal, Coral, Soft Navy & Warm Accents
   ============================================ */

/* Page wrapper - Fresh gradient background */
.gv-page {
    font-family: 'Inter', 'DM Sans', sans-serif;
    background: linear-gradient(135deg, #EEF5F9 0%, #E8F0F5 100%);
    padding: 30px 0;
}

/* Hero Banner - Vibrant Teal/Coral Blend */
.gv-hero {
    background: linear-gradient(135deg, #1A6B7A 0%, #208B9E 50%, #1A7A8A 100%);
    border-radius: 28px;
    padding: 28px 38px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(26, 107, 122, 0.25);
}

.gv-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,245,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.gv-hero::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,200,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.gv-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gv-hero-badge {
    display: inline-block;
    background: rgba(255,245,235,0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,245,235,0.4);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.gv-hero h1 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    color: #FFFFFF;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    margin: 0 0 10px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gv-hero p {
    color: rgba(255,255,245,0.85);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Two-column layout */
.gv-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .gv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Card styles - Clean white with vibrant borders */
.gv-card {
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(26, 107, 122, 0.2);
    transition: all 0.35s ease;
}

.gv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 107, 122, 0.35);
}

/* Login Card - Enhanced border */
.login-card {
    border: 1px solid rgba(26, 107, 122, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* Card Header - Vibrant Teal gradient */
.gv-card-head {
    background: linear-gradient(110deg, #1A6B7A 0%, #208B9E 50%, #1A6B7A 100%);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gv-card-head .head-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.18);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    flex-shrink: 0;
}

.gv-card-head span {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Card Body */
.gv-card-body {
    padding: 32px 30px;
}

/* Alert Links (PDF) - Clean & interactive */
.gv-alert-link {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #F8FBFD;
    border: 1px solid rgba(26, 107, 122, 0.2);
    border-radius: 24px;
    padding: 18px 24px;
    margin-bottom: 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.gv-alert-link:hover {
    background: #FFFFFF;
    border-color: #1A6B7A;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(26, 107, 122, 0.15);
}

.gv-alert-link .al-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A6B7A 0%, #208B9E 100%);
    color: #FFFFFF;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(26, 107, 122, 0.2);
}

.gv-alert-link .alert-text {
    font-size: 14px;
    font-weight: 500;
    color: #2C3E50;
    line-height: 1.45;
    flex: 1;
}

/* Divider */
.gv-divider {
    border: none;
    border-top: 2px solid rgba(26, 107, 122, 0.15);
    margin: 26px 0;
}

/* BUTTONS - Three distinct vibrant color schemes */
.gv-btn {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 60px;
    padding: 16px 20px;
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.gv-btn:last-child {
    margin-bottom: 0;
}

/* Student Section Button - Vibrant Coral */
.gv-btn-student {
    background: linear-gradient(115deg, #E85D75 0%, #F07A91 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(232, 93, 117, 0.35);
}

.gv-btn-student:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(232, 93, 117, 0.45);
    background: linear-gradient(115deg, #D44A62 0%, #E86880 100%);
}

/* Institute Section Button - Vibrant Purple/Indigo */
.gv-btn-institute {
    background: linear-gradient(115deg, #6B4E9E 0%, #8369B6 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(107, 78, 158, 0.35);
}

.gv-btn-institute:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(107, 78, 158, 0.45);
    background: linear-gradient(115deg, #5A3D8A 0%, #735CA8 100%);
}

/* Vertical Marquee Container */
.vertical-marquee-container {
    background: #F8FBFD;
    border: 1px solid rgba(26, 107, 122, 0.2);
    border-radius: 28px;
    padding: 18px 20px;
    margin-bottom: 26px;
    height: 460px;
    overflow: hidden;
    position: relative;
}

.vertical-marquee-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(26, 107, 122, 0.15);
}

.vertical-marquee-header h4 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A6B7A;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vertical-marquee-header h4 i {
    color: #1A6B7A;
    font-size: 20px;
}

.notice-count-badge {
    background: rgba(26, 107, 122, 0.12);
    color: #1A6B7A;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 40px;
}

.vertical-marquee {
    height: 360px;
    overflow: hidden;
    position: relative;
}

.vertical-marquee-content {
    animation: scrollVertical 32s linear infinite;
}

.vertical-marquee-content:hover {
    animation-play-state: paused;
}

/* Marquee Items */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: #FFFFFF;
    border-radius: 24px;
    border-left: 5px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.marquee-item:hover {
    background: #F0F7FA;
    transform: translateX(6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.marquee-item.hot-marquee {
    border-left-color: #E85D75;
    background: linear-gradient(90deg, #FEF5F6 0%, #FFFFFF 100%);
}

.marquee-item.new-marquee {
    border-left-color: #4CAF7A;
    background: linear-gradient(90deg, #F0F9F4 0%, #FFFFFF 100%);
}

.marquee-item.normal-marquee {
    border-left-color: #6B4E9E;
}

.marquee-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hot-marquee .marquee-dot {
    background: #E85D75;
    box-shadow: 0 0 0 3px rgba(232, 93, 117, 0.2);
}

.new-marquee .marquee-dot {
    background: #4CAF7A;
    box-shadow: 0 0 0 3px rgba(76, 175, 122, 0.2);
}

.normal-marquee .marquee-dot {
    background: #6B4E9E;
}

.marquee-text {
    font-size: 13px;
    font-weight: 500;
    flex: 1;
}

.hot-marquee .marquee-text {
    color: #C23D55;
    font-weight: 600;
}

.new-marquee .marquee-text {
    color: #358A5E;
    font-weight: 600;
}

.normal-marquee .marquee-text {
    color: #3D4F5F;
}

.marquee-badge-hot,
.marquee-badge-new {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    margin-left: 10px;
}

.marquee-badge-hot {
    background: #E85D75;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(232, 93, 117, 0.3);
}

.marquee-badge-new {
    background: #4CAF7A;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(76, 175, 122, 0.3);
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* Video button - Vibrant Orange/Amber */
.gv-video-wrap {
    text-align: center;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 2px solid rgba(26, 107, 122, 0.12);
}

.gv-video-wrap a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.35);
}

.gv-video-wrap a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(243, 156, 18, 0.45);
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
}

.gv-video-wrap a .play-circle {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Hidden Panel */
.hidden-panel {
    display: none;
}

/* SweetAlert Custom Styles */
.swal-image-custom {
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    margin-bottom: 18px;
}

.swal2-popup {
    border-radius: 32px !important;
    padding: 28px !important;
    background: #FFFFFF !important;
}

.swal2-title {
    color: #1A6B7A !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700 !important;
}

.swal2-confirm {
    border-radius: 60px !important;
    font-weight: 700 !important;
    padding: 12px 32px !important;
    background: linear-gradient(135deg, #1A6B7A 0%, #208B9E 100%) !important;
    box-shadow: 0 4px 14px rgba(26, 107, 122, 0.4) !important;
    border: none !important;
}

.swal2-confirm:hover {
    background: linear-gradient(135deg, #0F5A68 0%, #1A7A8A 100%) !important;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .gv-page {
        padding: 20px 0;
    }

    .gv-card-body {
        padding: 24px 22px;
    }

    .gv-alert-link {
        padding: 14px 18px;
        gap: 14px;
    }

    .gv-alert-link .alert-text {
        font-size: 12px;
    }

    .gv-alert-link .al-icon {
        font-size: 11px;
        padding: 8px 18px;
    }

    .vertical-marquee-container {
        height: 430px;
    }

    .vertical-marquee {
        height: 350px;
    }

    .gv-card-head {
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .gv-card-head {
        padding: 14px 20px;
    }

    .gv-card-head .head-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .gv-card-head span {
        font-size: 18px;
    }

    .gv-alert-link {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .gv-alert-link .al-icon {
        display: inline-block;
    }

    .gv-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .marquee-item {
        padding: 10px 14px;
    }

    .marquee-text {
        font-size: 11px;
    }

    .gv-card-body {
        padding: 20px 18px;
    }
}

/* Utility overrides */
.gv-primary-text {
    color: #1A6B7A;
}

.gv-primary-bg {
    background: #1A6B7A;
    color: white;
}

.gv-primary-bg-light {
    background: rgba(26, 107, 122, 0.1);
    color: #1A6B7A;
}


/* ============================================
   COLLEGE LOGIN PAGE STYLES
   Clean & Vibrant Color Scheme
   Fresh Teal, Coral Accents, Professional Look
   ============================================ */

/* Login Wrapper - Full height gradient background */
.login-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    background: linear-gradient(135deg, #EEF5F9 0%, #E8F0F5 100%);
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

/* Login Card - Clean white with subtle shadow */
.login-card {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 122, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .login-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

/* Card Header Primary - Teal Gradient */
.card-header-primary {
    background: linear-gradient(110deg, #1A6B7A 0%, #208B9E 50%, #1A6B7A 100%);
    padding: 24px 28px;
    text-align: center;
    position: relative;
}

    .card-header-primary i {
        font-size: 48px;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        margin-bottom: 12px;
    }

.header-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    letter-spacing: -0.2px;
}

.institute-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-top: 12px;
}

/* Warning Header - Coral/Orange Alert */
.card-header-warning {
    background: #FEF3F0;
    border-left: 5px solid #E85D75;
    padding: 12px 20px;
}

.warning-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #C23D55;
}

    .warning-text i {
        font-size: 16px;
    }

/* Card Body */
.card-body-custom {
    padding: 32px 30px;
}

/* Form Group */
.form-group-custom {
    margin-bottom: 24px;
}

    .form-group-custom label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #2C3E50;
        margin-bottom: 8px;
        letter-spacing: 0.3px;
    }

.label-icon {
    color: #1A6B7A;
    font-size: 14px;
    width: 18px;
}

/* Modern Form Control */
.form-control-modern {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'Inter', 'DM Sans', sans-serif;
    border: 1.5px solid rgba(26, 107, 122, 0.25);
    border-radius: 16px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .form-control-modern:focus {
        outline: none;
        border-color: #1A6B7A;
        box-shadow: 0 0 0 3px rgba(26, 107, 122, 0.1);
    }

    .form-control-modern:hover {
        border-color: rgba(26, 107, 122, 0.5);
    }

/* Dropdown specific */
select.form-control-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A6B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Password Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-wrapper .form-control-modern {
        flex: 1;
        padding-right: 52px;
    }

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.2s ease;
}

    .toggle-password:hover {
        background: rgba(26, 107, 122, 0.08);
    }

    .toggle-password svg {
        width: 20px;
        height: 20px;
        stroke: #6B8A9A;
        stroke-width: 2;
    }

    .toggle-password:hover svg {
        stroke: #1A6B7A;
    }

/* Validator Error */
.validator-error {
    font-size: 12px;
    margin-top: 6px;
    display: block;
    color: #E85D75 !important;
}

/* Login Button */
.btn-login {
    width: 100%;
    background: linear-gradient(115deg, #1A6B7A 0%, #208B9E 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', 'DM Sans', sans-serif;
    letter-spacing: 1px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .btn-login:hover {
        background: linear-gradient(115deg, #0F5A68 0%, #1A7A8A 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .btn-login:active {
        transform: translateY(0);
    }

/* Message Label */
.msg-label {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
}

/* Login Footer */
.login-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 107, 122, 0.15);
    text-align: center;
    font-size: 11px;
    color: #7A8D9A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .login-footer i {
        color: #1A6B7A;
        font-size: 12px;
    }

/* Responsive Adjustments */
@media (max-width: 580px) {
    .login-wrapper {
        padding: 20px 16px;
        min-height: calc(100vh - 160px);
    }

    .card-header-primary {
        padding: 20px 20px;
    }

        .card-header-primary i {
            font-size: 40px;
        }

    .header-title {
        font-size: 20px;
    }

    .card-body-custom {
        padding: 24px 20px;
    }

    .form-group-custom {
        margin-bottom: 20px;
    }

    .form-control-modern {
        padding: 12px 14px;
        font-size: 14px;
    }

    .btn-login {
        padding: 14px 18px;
        font-size: 15px;
    }

    .warning-text {
        font-size: 11px;
        gap: 8px;
    }

    .login-footer {
        font-size: 10px;
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .card-body-custom {
        padding: 20px 16px;
    }

    .institute-badge {
        font-size: 9px;
        padding: 4px 12px;
    }

    .warning-text {
        flex-wrap: wrap;
        text-align: center;
    }
}

/* Animation for form appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Input autofill styles */
.form-control-modern:-webkit-autofill,
.form-control-modern:-webkit-autofill:hover,
.form-control-modern:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #2C3E50;
    border-color: #1A6B7A;
}

/* SweetAlert overrides for consistency (if used) */
.swal2-popup {
    border-radius: 28px !important;
}

.swal2-confirm {
    background: #1A6B7A !important;
    border-radius: 60px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
}

    .swal2-confirm:hover {
        background: #0F5A68 !important;
    }

.swal2-title {
    color: #1A6B7A !important;
    font-family: 'Cormorant Garamond', serif !important;
}

/* ============================================
   STUDENT LOGIN PAGE STYLES
   Clean & Vibrant - Matching Main Theme
   ============================================ */

/* Login Container - Two Column Layout */
.login-container {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .login-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Login Card */
.login-card {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 122, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .login-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

/* Card Header - Coral Gradient (Student Theme) */
.card-header-custom {
    background: linear-gradient(110deg, #E85D75 0%, #F07A91 50%, #E85D75 100%);
    padding: 24px 28px;
    text-align: center;
    position: relative;
}
    .card-header-custom i {
        font-size: 32px;
        color: rgba(255, 255, 255, 0.9);
        margin-right: 12px;
    }

    .card-header-custom .header-title {
        font-family: 'Cormorant Garamond', 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: #FFFFFF;
        letter-spacing: -0.2px;
        flex: 1;
    }

.step-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Card Body */
.card-body-custom {
    padding: 32px 30px;
}

/* Form Group */
.form-group-custom {
    margin-bottom: 24px;
}

    .form-group-custom label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: #2C3E50;
        margin-bottom: 8px;
    }

.label-icon {
    color: #E85D75;
    font-size: 14px;
    width: 18px;
}

.required-star {
    color: #E85D75;
    font-size: 14px;
    margin-left: 4px;
}

/* Modern Form Control */
.form-control-modern {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'Inter', 'DM Sans', sans-serif;
    border: 1.5px solid rgba(26, 107, 122, 0.25);
    border-radius: 16px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .form-control-modern:focus {
        outline: none;
        border-color: #E85D75;
        box-shadow: 0 0 0 3px rgba(232, 93, 117, 0.1);
    }

    .form-control-modern:hover {
        border-color: rgba(232, 93, 117, 0.5);
    }

/* Password Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-wrapper .form-control-modern {
        flex: 1;
        padding-right: 52px;
    }

.toggle-password-login {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.2s ease;
}

    .toggle-password-login:hover {
        background: rgba(232, 93, 117, 0.08);
    }

    .toggle-password-login svg {
        width: 20px;
        height: 20px;
        stroke: #6B8A9A;
        stroke-width: 2;
    }

    .toggle-password-login:hover svg {
        stroke: #E85D75;
    }

/* Validator Error */
.validator-error {
    font-size: 12px;
    margin-top: 6px;
    display: block;
    color: #E85D75 !important;
}

/* Login Button */
.btn-login {
    width: 100%;
    background: linear-gradient(115deg, #E85D75 0%, #F07A91 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', 'DM Sans', sans-serif;
    letter-spacing: 1px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .btn-login:hover {
        background: linear-gradient(115deg, #D44A62 0%, #E86880 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

/* Divider */
.divider {
    text-align: center;
    margin: 24px 0 20px;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(26, 107, 122, 0.15);
    }

    .divider span {
        background: #FFFFFF;
        padding: 0 16px;
        position: relative;
        font-size: 13px;
        color: #7A8D9A;
        font-weight: 500;
    }

/* Register Button */
.btn-register {
    width: 100%;
    background: transparent;
    border: 2px solid #1A6B7A;
    color: #1A6B7A;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', 'DM Sans', sans-serif;
    letter-spacing: 1px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-register:hover {
        background: #1A6B7A;
        color: #FFFFFF;
        transform: translateY(-2px);
    }

/* Message Label */
.msg-label {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
}

/* Instruction Card */
.instruction-card {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 122, 0.2);
    height: 100%;
}

.instruction-header {
    background: linear-gradient(110deg, #1A6B7A 0%, #208B9E 50%, #1A6B7A 100%);
    padding: 24px 28px;
    text-align: center;
}

    .instruction-header i {
        font-size: 42px;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        margin-bottom: 10px;
    }

    .instruction-header .header-title {
        font-family: 'Cormorant Garamond', 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: #FFFFFF;
    }

.instruction-body {
    padding: 28px 26px;
}

.steps-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A6B7A;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(26, 107, 122, 0.15);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.step-number {
    width: 36px;
    height: 36px;
    background: #E85D75;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: #2C3E50;
}

.step-arrow img {
    max-width: 40px;
    height: auto;
}

/* ============================================
   REGISTRATION PAGE STYLES
   ============================================ */

.reg-page {
    padding: 40px 20px;
    background: linear-gradient(135deg, #EEF5F9 0%, #E8F0F5 100%);
    min-height: calc(100vh - 200px);
}

.registration-container {
    max-width: 1000px;
    margin: 0 auto;
}

.registration-card {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 122, 0.2);
}

.form-header {
    background: linear-gradient(110deg, #1A6B7A 0%, #208B9E 50%, #1A6B7A 100%);
    padding: 24px 30px;
    text-align: center;
}

    .form-header h3 {
        font-family: 'Cormorant Garamond', 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
        letter-spacing: -0.3px;
    }

.form-body {
    padding: 32px 30px;
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.field-modern {
    display: flex;
    flex-direction: column;
}

    .field-modern.full-width {
        grid-column: 1 / -1;
    }

.label-required {
    font-size: 13px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

    .label-required::after {
        content: '*';
        color: #E85D75;
        margin-left: 4px;
    }

.helper-text-modern {
    font-size: 10px;
    color: #7A8D9A;
    margin-top: 6px;
}

.validator-error-modern {
    font-size: 11px;
    color: #E85D75;
    margin-top: 5px;
    display: block;
}

/* Terms Checkbox */
.terms-wrapper {
    flex-direction: row;
    align-items: center;
}

.checkbox-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #2C3E50;
}

    .checkbox-modern input {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #1A6B7A;
    }

    .checkbox-modern a {
        color: #E85D75;
        text-decoration: none;
        font-weight: 600;
    }

        .checkbox-modern a:hover {
            text-decoration: underline;
        }

/* Submit Button Wrapper */
.btn-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-submit {
    background: linear-gradient(115deg, #E85D75 0%, #F07A91 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', 'DM Sans', sans-serif;
    letter-spacing: 1px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .btn-submit:hover {
        background: linear-gradient(115deg, #D44A62 0%, #E86880 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

.message-modern {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    display: block;
}

/* ============================================
   STUDENT DASHBOARD PAGE STYLES
   ============================================ */

/* Dashboard Page Wrapper */
.gv-page {
    padding: 40px 20px;
    background: linear-gradient(135deg, #EEF5F9 0%, #E8F0F5 100%);
    min-height: calc(100vh - 180px);
}

/* Row Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.col-lg-4 {
    flex: 1;
    min-width: 280px;
}

.col-md-8 {
    flex: 2;
    min-width: 300px;
}

@media (max-width: 900px) {
    .col-lg-4, .col-md-8 {
        flex: 100%;
    }
}

/* Premium Card */
.premium-card {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 122, 0.2);
    height: 100%;
}

.card-header-premium {
    background: linear-gradient(110deg, #1A6B7A 0%, #208B9E 50%, #1A6B7A 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .card-header-premium .head-icon {
        width: 46px;
        height: 46px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #FFFFFF;
    }

    .card-header-premium h3 {
        font-family: 'Cormorant Garamond', 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
    }

.card-body-premium {
    padding: 28px 24px;
}

/* Step Buttons */
.step-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', 'DM Sans', sans-serif;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    text-align: center;
}

.btn-step1 {
    background: linear-gradient(115deg, #1A6B7A 0%, #208B9E 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .btn-step1:hover {
        background: linear-gradient(115deg, #0F5A68 0%, #1A7A8A 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

.btn-step2 {
    background: linear-gradient(115deg, #E85D75 0%, #F07A91 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .btn-step2:hover {
        background: linear-gradient(115deg, #D44A62 0%, #E86880 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

/* PDF Link Card */
.pdf-link-card {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 107, 122, 0.15);
}

    .pdf-link-card a {
        display: flex;
        align-items: center;
        gap: 14px;
        background: #F8FBFD;
        border: 1px solid rgba(26, 107, 122, 0.2);
        border-radius: 20px;
        padding: 14px 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .pdf-link-card a:hover {
            background: #FFFFFF;
            border-color: #1A6B7A;
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

.pdf-icon {
    background: linear-gradient(135deg, #1A6B7A 0%, #208B9E 100%);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pdf-link-card a span:last-child {
    font-size: 13px;
    font-weight: 500;
    color: #2C3E50;
    flex: 1;
}

/* Video Card */
.video-card {
    background: #FFFFFF;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 107, 122, 0.2);
    height: 100%;
}

.video-content {
    padding: 28px 24px;
}

.video-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(26, 107, 122, 0.15);
}

    .video-title i {
        font-size: 24px;
        color: #E85D75;
    }

    .video-title span {
        font-size: 16px;
        font-weight: 600;
        color: #1A6B7A;
    }

/* Video Button Link */
.video-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(115deg, #E85D75 0%, #F07A91 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .video-btn-link:hover {
        background: linear-gradient(115deg, #D44A62 0%, #E86880 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .video-btn-link i {
        font-size: 18px;
    }

/* Video Frame */
.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #1A1A2E;
}

    .video-frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 20px;
    }

/* ============================================
   RESPONSIVE OVERRIDES
   ============================================ */

@media (max-width: 580px) {
    .login-container, .gv-page, .reg-page {
        padding: 20px 16px;
    }

    .card-header-custom, .card-header-premium, .form-header, .instruction-header {
        padding: 18px 20px;
    }

        .card-header-custom i, .instruction-header i {
            font-size: 36px;
        }

        .card-header-custom .header-title, .instruction-header .header-title, .form-header h3 {
            font-size: 20px;
        }

    .card-body-custom, .form-body, .instruction-body, .card-body-premium, .video-content {
        padding: 24px 20px;
    }

    .form-row {
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-control-modern {
        padding: 12px 14px;
    }

    .btn-login, .btn-register, .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }

    .step-item {
        gap: 10px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .step-text {
        font-size: 12px;
    }

    .step-arrow img {
        max-width: 30px;
    }

    .video-btn-link {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card, .instruction-card, .registration-card, .premium-card, .video-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* ============================================
   INPUT AUTO-FILL STYLES
   ============================================ */

.form-control-modern:-webkit-autofill,
.form-control-modern:-webkit-autofill:hover,
.form-control-modern:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #2C3E50;
    border-color: #1A6B7A;
}

/* ============================================
   SUCCESS PAGE - REGISTRATION CONFIRMATION
   Color Scheme: Deep Teal & Elegant Neutrals
   ============================================ */

/* Success Page Container */
.success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Success Card Styling */
.success-card {
    background: var(--pure-white);
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease-out;
}

/* Success Header */
.success-header {
    background: linear-gradient(110deg, #1A6B7A 0%, #208B9E 50%, #1A6B7A 100%);
    padding: 25px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .success-header::before {
      
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 80px;
        opacity: 0.1;
        color: white;
        font-weight: bold;
    }

    .success-header h2 {
        color: white;
        margin: 0;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -0.3px;
    }

    .success-header p {
        color: rgba(255, 255, 255, 0.9);
        margin: 10px 0 0;
        font-size: 14px;
    }

/* Success Icon Animation */
.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: successPop 0.5s ease-out;
}

    .success-icon::after {

        font-size: 45px;
        color: white;
        font-weight: bold;
    }

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Success Messages */
.success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 15px 20px;
    margin: 20px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    border-left: 4px solid #10b981;
}

    .success-message h3 {
        color: #065f46;
        margin: 0 0 5px;
        font-size: 18px;
    }

    .success-message p {
        color: #047857;
        margin: 0;
        font-size: 13px;
    }

/* Info Message */
.info-message {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 12px 20px;
    margin: 15px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    border-left: 4px solid #3b82f6;
}

    .info-message span {
        color: #1e40af;
        font-size: 13px;
        font-weight: 500;
    }

/* Details View Container */
.details-container {
    padding: 20px 25px;
}

.details-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--teal-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--teal-pale);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .details-title::before {
   
        font-size: 20px;
    }

/* DetailsView Styling */
.details-table {
    width: 100%;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

    .details-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .details-table tr {
        border-bottom: 1px solid var(--teal-pale);
        transition: var(--transition-fast);
    }

        .details-table tr:hover {
            background: var(--teal-light);
        }

    .details-table td {
        padding: 14px 20px;
        font-size: 14px;
        color: var(--gray-700);
    }

        .details-table td:first-child {
            font-weight: 700;
            color: var(--teal-primary);
            width: 40%;
            background: var(--teal-mist);
        }

        .details-table td:last-child {
            font-weight: 500;
            color: var(--gray-800);
        }

/* Button Container */
.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 0 25px 25px;
    flex-wrap: wrap;
}

/* Print Button */
.print-btn {
    background: linear-gradient(110deg, #4b5563 0%, #374151 50%, #4b5563 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--pure-white);
    transition: var(--transition-normal);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .print-btn::before {
        
        font-size: 16px;
    }

    .print-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        background: linear-gradient(110deg, #6b7280 0%, #4b5563 50%, #6b7280 100%);
    }

/* Login Button */
.login-btn {
    background: linear-gradient(110deg, #1A6B7A 0%, #208B9E 50%, #1A6B7A 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 12px 35px;
    font-weight: 600;
    font-size: 14px;
    color: var(--pure-white);
    transition: var(--transition-normal);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .login-btn::before {
        
        font-size: 14px;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary);
        background: linear-gradient(110deg, #1f7d8f 0%, #249eb3 50%, #1f7d8f 100%);
        color: white;
        text-decoration: none;
    }

/* Warning Note */
.warning-note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px 20px;
    margin: 0 25px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid #f59e0b;
}

    .warning-note::before {
      
        font-size: 20px;
    }

.warning-note-text {
    color: #92400e;
    font-size: 12px;
    font-weight: 500;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .success-header h2 {
        font-size: 20px;
    }

    .details-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .success-header {
        padding: 20px;
    }

        .success-header h2 {
            font-size: 18px;
        }

        .success-header p {
            font-size: 12px;
        }

    .success-icon {
        width: 65px;
        height: 65px;
        margin-top: -32px;
    }

        .success-icon::after {
            font-size: 35px;
        }

    .success-message,
    .info-message {
        margin: 15px 20px;
        padding: 12px 15px;
    }

        .success-message h3 {
            font-size: 16px;
        }

    .details-container {
        padding: 15px 20px;
    }

    .details-title {
        font-size: 16px;
    }

    .details-table {
        overflow-x: auto;
        display: block;
    }

        .details-table table {
            min-width: 500px;
        }

        .details-table td {
            padding: 10px 14px;
            font-size: 12px;
        }

    .button-container {
        flex-direction: column;
        padding: 0 20px 20px;
    }

    .print-btn,
    .login-btn {
        justify-content: center;
        width: 100%;
    }

    .warning-note {
        margin: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .success-header h2 {
        font-size: 16px;
    }

    .success-icon {
        width: 55px;
        height: 55px;
        margin-top: -27px;
    }

        .success-icon::after {
            font-size: 30px;
        }

    .success-message h3 {
        font-size: 14px;
    }

    .success-message p,
    .info-message span {
        font-size: 11px;
    }

    .details-title {
        font-size: 14px;
    }

    .print-btn,
    .login-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .header-desktop,
    .header-mobile,
    .menu-sidebar,
    .print-btn,
    .login-btn,
    .warning-note,
    .button-container {
        display: none !important;
    }

    .success-card {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }

    .success-header {
        background: #1A6B7A;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .details-table tr:hover {
        background: none;
    }

    .details-table td:first-child {
        background: #f0f8fa;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .success-icon {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




