
    :root {
        --navy: #002147;
        --gold: #FFBF00;
        --maroon: #800000;
    }

    .fw-black { font-weight: 800; }
    .bg-navy { background-color: var(--navy); }
    .text-navy { color: var(--navy); }
    .text-gold { color: var(--gold); }
    .bg-gold { background-color: var(--gold); }
    .btn-gold { background-color: var(--gold); color: var(--navy); border: none; }
    .btn-gold:hover { background-color: #fff; color: var(--navy); }

    /* Hero Section */
    .admission-hero {
        background: linear-gradient(135deg, var(--navy) 0%, #003366 100%);
        min-height: 300px;
        border-radius: 0 0 50px 50px;
    }
    .hero-pattern {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: radial-gradient(var(--gold) 0.5px, transparent 0.5px);
        background-size: 30px 30px;
        opacity: 0.1;
    }

    /* DOST Card */
    .dost-card { transform: translateY(-30px); }

    /* Enquiry Card */
    .icon-circle-lg {
        width: 60px; height: 60px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.8rem;
    }
    .bg-light-gold { background: rgba(255, 191, 0, 0.1); }
    .btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); transition: 0.3s; }
    .btn-outline-navy:hover { background: var(--navy); color: white; }

    /* Step Cards */
    .step-card-modern { transition: 0.3s ease; position: relative; overflow: hidden; }
    .step-card-modern:hover { transform: translateY(-5px); border-color: var(--gold) !important; box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important; }
    .step-number-pill {
        background: var(--navy);
        color: white;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .x-small { font-size: 0.85rem; }

    @media (max-width: 768px) {
        .admission-hero { border-radius: 0 0 30px 30px; }
        .display-4 { font-size: 2rem; }
    }


    /*document requried */

    /* Jaagruthi Documents Page Styles */

:root {
    --j-navy: #002147;
    --j-gold: #FFBF00;
    --j-maroon: #800000;
    --j-gray: #f8f9fa;
}

/* Header Section */
.doc-header-section {
    background: linear-gradient(135deg, var(--j-navy) 0%, #003366 100%);
    padding: 60px 0;
    position: relative;
    border-bottom: 6px solid var(--j-gold);
}

.doc-badge {
    background: var(--j-gold);
    color: var(--j-navy);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doc-title {
    color: white;
    font-weight: 800;
    margin-top: 15px;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.doc-divider {
    width: 60px;
    height: 4px;
    background: white;
    margin: 15px auto;
    border-radius: 10px;
    opacity: 0.6;
}

.doc-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Card Styling */
.jaagruthi-doc-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.jaagruthi-doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,33,71,0.1) !important;
}

.card-accent {
    height: 5px;
    width: 100%;
}

.bg-navy { background-color: var(--j-navy); }

.doc-category-icon {
    width: 45px;
    height: 45px;
    background: #eef2f7;
    color: var(--j-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cat-name {
    font-weight: 800;
    color: var(--j-navy);
    font-size: 0.95rem;
    margin-left: 12px;
    text-transform: uppercase;
}

/* List Styling */
.doc-items-container {
    padding-top: 5px;
}

.doc-single-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #f0f0f0;
}

.doc-single-line:last-child {
    border-bottom: none;
}

.doc-bullet {
    color: var(--j-gold);
    margin-right: 12px;
    font-size: 1rem;
    line-height: 1;
}

.doc-text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
}

.card-footer-mini {
    background: #fdfdfd;
    padding: 10px 20px;
    font-size: 0.7rem;
    color: #999;
    border-top: 1px solid #f5f5f5;
    text-align: right;
    font-weight: 600;
}

.help-box {
    background: #f8f9fa;
    border: 1px solid #eee;
}

.text-gold { color: var(--j-gold); }

/* Mobile View */
@media (max-width: 768px) {
    .doc-title { font-size: 1.6rem; }
    .jaagruthi-doc-card { margin-bottom: 10px; }
}