
.naac-section{

    position:relative;
    overflow:hidden;
}

/* ===================================== */
/* MAIN WRAPPER */
/* ===================================== */

.naac-wrapper{
    background:#ffffff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
    border:1px solid rgba(38,52,137,0.08);
    z-index:1;
}

/* TOP DESIGN */

.naac-wrapper::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:230px;
    height:230px;
    background:rgba(38,52,137,0.04);
    border-radius:50%;
}

.naac-wrapper::after{
    content:"";
    position:absolute;
    bottom:-70px;
    left:-70px;
    width:180px;
    height:180px;
    background:rgba(236,29,37,0.05);
    border-radius:50%;
}

/* ===================================== */
/* HEADER */
/* ===================================== */

.naac-top{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.naac-main-title{
    color:var(--primary-blue);
    font-size:44px;
    font-weight:800;
    margin-bottom:15px;
    display:inline-block;
    position:relative;
    letter-spacing:0.5px;
}

/* UNDERLINE */

.naac-main-title::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    width:90px;
    height:4px;
    background:var(--accent-red);
    border-radius:10px;
}

.naac-subtitle{
    color:#666;
    font-size:16px;
    margin-top:20px;
    letter-spacing:0.4px;
}

/* ===================================== */
/* CUSTOM TABS */
/* ===================================== */

.custom-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    padding-left:0;
    margin-bottom:45px;
    list-style:none;
    border:none !important;
    flex-wrap:wrap;
    position:relative;
    z-index:5;
}

.custom-tabs li{
    margin:0 !important;
    float:none !important;
}

/* TAB BUTTON */

.custom-tabs li a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    padding:15px 32px;
    border-radius:60px !important;
    background:#edf1fb !important;
    color:var(--primary-blue) !important;
    text-decoration:none !important;
    font-size:16px;
    font-weight:700;
    border:none !important;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
    box-shadow:none !important;
}

/* SHINE EFFECT */

.custom-tabs li a::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.22);
    transform:skewX(-20deg);
    transition:0.5s ease;
}

.custom-tabs li a:hover::before{
    left:120%;
}

/* ACTIVE */

.custom-tabs li.active a,
.custom-tabs li.active a:hover,
.custom-tabs li.active a:focus{
    background:linear-gradient(135deg,var(--primary-blue),#3145b3) !important;
    color:#fff !important;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(38,52,137,0.22) !important;
}

/* HOVER */

.custom-tabs li a:hover{
    background:linear-gradient(135deg,var(--primary-blue),#3145b3) !important;
    color:#fff !important;
}

/* ===================================== */
/* TAB CONTENT */
/* ===================================== */

.custom-tab-content{
    position:relative;
    z-index:5;
    width:100%;
}

/* IMPORTANT FIX */

.tab-content .tab-pane{
    display:none;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
}

.tab-content .tab-pane.active{
    display:block !important;
    opacity:1;
    visibility:visible;
}

/* ===================================== */
/* INFO CARD */
/* ===================================== */

.info-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    margin-bottom:28px;
    position:relative;
    overflow:hidden;
    border-left:6px solid var(--accent-red);
    box-shadow:0 10px 28px rgba(0,0,0,0.05);
    transition:0.35s ease;
}

/* CARD HOVER */

.info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* TOP DESIGN */

.info-card::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:130px;
    height:130px;
    background:rgba(38,52,137,0.05);
    border-radius:0 0 0 100%;
}

/* ===================================== */
/* CARD HEADINGS */
/* ===================================== */

.info-card h2{
    color:var(--primary-blue);
    font-size:26px;
    font-weight:800;
    margin-bottom:22px;
    display:inline-block;
    position:relative;
    letter-spacing:0.3px;
}

/* UNDERLINE */

.info-card h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:65px;
    height:4px;
    background:var(--accent-red);
    border-radius:10px;
}

/* ===================================== */
/* PARAGRAPH */
/* ===================================== */

.info-card p{
    color:#444;
    font-size:15.8px;
    line-height:1.95;
    margin-bottom:0;
    text-align:justify;
}

/* ===================================== */
/* LIST */
/* ===================================== */

.info-card ul{
    margin:0;
    padding-left:24px;
}

.info-card ul li{
    color:#444;
    font-size:15.5px;
    line-height:1.9;
    margin-bottom:12px;
    padding-left:3px;
}

/* BULLETS */

.info-card ul li::marker{
    color:var(--accent-red);
    font-size:16px;
}

/* ===================================== */
/* FADE ANIMATION */
/* ===================================== */

.tab-pane.active .info-card{
    animation:fadeUp 0.6s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:992px){

    .naac-wrapper{
        padding:35px 25px;
    }

    .naac-main-title{
        font-size:34px;
    }

    .custom-tabs{
        gap:12px;
    }

    .custom-tabs li a{
        min-width:145px;
        padding:13px 20px;
        font-size:15px;
    }

}

@media(max-width:768px){

    .naac-section{
        padding:45px 0;
    }

    .naac-wrapper{
        padding:25px 18px;
        border-radius:22px;
    }

    .naac-main-title{
        font-size:28px;
    }

    .naac-subtitle{
        font-size:14px;
    }

    .custom-tabs{
        flex-direction:column;
        align-items:stretch;
        gap:10px;
    }

    .custom-tabs li{
        width:100%;
    }

    .custom-tabs li a{
        width:100%;
        min-width:100%;
        text-align:center;
        padding:12px 16px;
        font-size:15px;
    }

    .info-card{
        padding:24px 20px;
        border-radius:18px;
    }

    .info-card h2{
        font-size:22px;
    }

    .info-card p,
    .info-card ul li{
        font-size:14.5px;
        line-height:1.8;
    }

}


:root{
    --primary-blue:#263489;
    --accent-red:#ec1d25;
    --text-black:#000000;
    --bg-light:#f4f6f9;
}

/* ===================================== */
/* SECTION */
/* ===================================== */

.naac-links-section{
   
}

/* ===================================== */
/* WRAPPER */
/* ===================================== */

.naac-links-wrapper{
    background:#ffffff;
    border-radius:30px;
    padding:45px;
    position:relative;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,0.06);
    border:1px solid rgba(38,52,137,0.08);
}

/* TOP DESIGN */

.naac-links-wrapper::before{
    content:"";
    position:absolute;
    top:-90px;
    right:-90px;
    width:220px;
    height:220px;
    background:rgba(38,52,137,0.04);
    border-radius:50%;
}

.naac-links-wrapper::after{
    content:"";
    position:absolute;
    bottom:-70px;
    left:-70px;
    width:170px;
    height:170px;
    background:rgba(236,29,37,0.05);
    border-radius:50%;
}

/* ===================================== */
/* HEADER */
/* ===================================== */

.naac-links-header{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.naac-links-title{
    color:var(--primary-blue);
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

/* UNDERLINE */

.naac-links-title::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    width:90px;
    height:4px;
    border-radius:10px;
    background:var(--accent-red);
}

.naac-links-subtitle{
    color:#666;
    font-size:16px;
    margin-top:18px;
}

/* ===================================== */
/* GRID */
/* ===================================== */

.naac-links-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    position:relative;
    z-index:2;
}

/* ===================================== */
/* LINK CARD */
/* ===================================== */

.naac-link-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:22px 55px 22px 20px;
    border-radius:20px;
    text-decoration:none !important;
    color:var(--primary-blue);
    font-size:15px;
    font-weight:700;
    line-height:1.5;
    transition:0.35s ease;
    overflow:hidden;
    border-left:5px solid var(--accent-red);
    box-shadow:0 8px 22px rgba(0,0,0,0.05);
}

/* NUMBER */

.naac-link-card span{
    min-width:42px;
    height:42px;
    background:linear-gradient(135deg,var(--primary-blue),#3145b3);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    transition:0.35s ease;
}

/* PDF ICON */

.naac-link-card i{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:20px;
    color:var(--accent-red);
    transition:0.35s ease;
}

/* HOVER EFFECT */

.naac-link-card:hover{
    transform:translateY(-5px);
    background:linear-gradient(135deg,var(--primary-blue),#3145b3);
    color:#fff !important;
    box-shadow:0 18px 35px rgba(38,52,137,0.18);
}

/* CHANGE NUMBER COLOR */

.naac-link-card:hover span{
    background:var(--accent-red);
}

/* ICON HOVER */

.naac-link-card:hover i{
    color:#fff;
    transform:translateY(-50%) scale(1.1);
}

/* SHINE */

.naac-link-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.15);
    transform:skewX(-20deg);
    transition:0.5s ease;
}

.naac-link-card:hover::before{
    left:120%;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:992px){

    .naac-links-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .naac-links-title{
        font-size:32px;
    }

}

@media(max-width:768px){

    .naac-links-section{
        padding:45px 0;
    }

    .naac-links-wrapper{
        padding:25px 18px;
        border-radius:22px;
    }

    .naac-links-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .naac-links-title{
        font-size:28px;
    }

    .naac-links-subtitle{
        font-size:14px;
    }

    .naac-link-card{
        padding:18px 50px 18px 16px;
        font-size:14px;
    }

    .naac-link-card span{
        min-width:38px;
        height:38px;
        font-size:13px;
    }

}



/* ===================================== */
/* WRAPPER */
/* ===================================== */

.ssr-wrapper{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 18px 45px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

/* SHAPES */

.ssr-wrapper::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:220px;
    height:220px;
    background:rgba(38,52,137,0.04);
    border-radius:50%;
}

.ssr-wrapper::after{
    content:"";
    position:absolute;
    bottom:-70px;
    left:-70px;
    width:180px;
    height:180px;
    background:rgba(236,29,37,0.05);
    border-radius:50%;
}

/* ===================================== */
/* HEADER */
/* ===================================== */

.ssr-header{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.ssr-title{
    color:var(--primary-blue);
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.ssr-title::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    width:90px;
    height:4px;
    border-radius:20px;
    background:var(--accent-red);
}

.ssr-subtitle{
    color:#666;
    font-size:16px;
}

/* ===================================== */
/* TABS */
/* ===================================== */

.ssr-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:35px;
    padding-left:0;
    list-style:none;
    justify-content:center;
}

.ssr-tabs li{
    margin:0;
}

.ssr-tabs li a{
    display:block;
    padding:14px 28px;
    border-radius:50px;
    background:#edf1fb;
    color:var(--primary-blue);
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:0.3s ease;
}

.ssr-tabs li.active a,
.ssr-tabs li a:hover{
    background:linear-gradient(135deg,var(--primary-blue),#3145b3);
    color:#fff;
    box-shadow:0 8px 22px rgba(38,52,137,0.2);
    transform:translateY(-2px);
}

/* ===================================== */
/* TAB CONTENT */
/* ===================================== */

.tab-content{
    position:relative;
    z-index:2;
}

.tab-pane{
    display:none;
}

.tab-pane.active{
    display:block;
    animation:fadeEffect .4s ease;
}

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

/* ===================================== */
/* TABLE */
/* ===================================== */

.ssr-table-wrapper{
    overflow-x:auto;
    border-radius:22px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.ssr-table{
    width:100%;
    border-collapse:collapse;
    min-width:900px;
}

/* HEAD */

.ssr-table thead{
    background:linear-gradient(135deg,var(--primary-blue),#3145b3);
}

.ssr-table thead th{
    color:#fff;
    padding:18px;
    font-size:15px;
    font-weight:700;
    text-align:left;
    border:none;
}

/* BODY */

.ssr-table tbody tr{
    transition:0.3s ease;
}

.ssr-table tbody tr:nth-child(even){
    background:#f8f9fc;
}

.ssr-table tbody tr:hover{
    background:#eef3ff;
}

.ssr-table td{
    padding:16px 18px;
    font-size:14px;
    color:#444;
    border-bottom:1px solid #edf1f7;
    vertical-align:middle;
}

/* METRIC */

.metric-badge{
    background:rgba(236,29,37,0.1);
    color:var(--accent-red);
    padding:8px 12px;
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    display:inline-block;
}

/* VIEW BUTTON */

.view-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,var(--primary-blue),#3145b3);
    color:#fff !important;
    padding:10px 18px;
    border-radius:40px;
    text-decoration:none !important;
    font-size:13px;
    font-weight:700;
    transition:0.3s ease;
}

.view-btn:hover{
    background:linear-gradient(135deg,var(--accent-red),#d3151d);
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(236,29,37,0.2);
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:992px){

    .ssr-title{
        font-size:34px;
    }

}

@media(max-width:768px){

    .ssr-section{
        padding:45px 0;
    }

    .ssr-wrapper{
        padding:25px 18px;
        border-radius:24px;
    }

    .ssr-title{
        font-size:28px;
    }

    .ssr-subtitle{
        font-size:14px;
    }

    .ssr-tabs{
        flex-direction:column;
    }

    .ssr-tabs li a{
        width:100%;
        text-align:center;
    }

}

:root{
    --primary-blue:#263489;
    --accent-red:#ec1d25;
    --text-black:#000000;
    --bg-light:#f4f6f9;
}

/* ========================================= */
/* SECTION */
/* ========================================= */

.dvv-section{

    font-family:Arial,sans-serif;
}

.dvv-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.dvv-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    overflow:hidden;
    position:relative;
}

.dvv-card::before{
    content:"";
    position:absolute;
    top:-90px;
    right:-90px;
    width:220px;
    height:220px;
    background:rgba(38,52,137,0.05);
    border-radius:50%;
}

.dvv-card::after{
    content:"";
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:180px;
    height:180px;
    background:rgba(236,29,37,0.06);
    border-radius:50%;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.dvv-header{
    text-align:center;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.dvv-title{
    font-size:42px;
    color:var(--primary-blue);
    font-weight:800;
    margin-bottom:10px;
}

.dvv-title span{
    color:var(--accent-red);
}

.dvv-subtitle{
    color:#666;
    font-size:16px;
}

/* ========================================= */
/* TABS */
/* ========================================= */

.dvv-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    list-style:none;
    padding:0;
    margin:0 0 35px;
    justify-content:center;
    position:relative;
    z-index:2;
}

.dvv-tabs li{
    margin:0;
}

.dvv-tabs a{
    display:block;
    padding:14px 24px;
    border-radius:50px;
    background:#eef2ff;
    color:var(--primary-blue);
    font-weight:700;
    text-decoration:none;
    transition:0.3s;
    border:2px solid transparent;
}

.dvv-tabs li.active a,
.dvv-tabs a:hover{
    background:linear-gradient(135deg,var(--primary-blue),#3144b4);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(38,52,137,0.25);
}

/* ========================================= */
/* TAB CONTENT */
/* ========================================= */

.dvv-tab-content{
    position:relative;
    z-index:2;
}

.dvv-pane{
    display:none;
    animation:fadeIn .4s ease;
}

.dvv-pane.active{
    display:block;
}

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

/* ========================================= */
/* TABLE */
/* ========================================= */

.dvv-table-wrapper{
    width:100%;
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.dvv-table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

/* ========================================= */
/* TABLE HEADER */
/* ========================================= */

.dvv-table thead{
    background:linear-gradient(135deg,var(--primary-blue),#3144b4);
}

.dvv-table thead th{
    color:#fff;
    padding:18px 14px;
    font-size:14px;
    text-align:left;
    border:none;
    word-break:break-word;
}

/* ========================================= */
/* TABLE BODY */
/* ========================================= */

.dvv-table tbody tr{
    transition:0.3s;
}

.dvv-table tbody tr:nth-child(even){
    background:#fafbfd;
}

.dvv-table tbody tr:hover{
    background:#eef3ff;
}

.dvv-table td{
    padding:16px 14px;
    border-bottom:1px solid #edf0f5;
    color:#444;
    vertical-align:top;
    font-size:14px;
    line-height:1.7;
    word-break:break-word;
}

/* ========================================= */
/* COLUMN WIDTHS */
/* ========================================= */

.dvv-table th:nth-child(1),
.dvv-table td:nth-child(1){
    width:5%;
}

.dvv-table th:nth-child(2),
.dvv-table td:nth-child(2){
    width:10%;
}

.dvv-table th:nth-child(3),
.dvv-table td:nth-child(3){
    width:33%;
}

.dvv-table th:nth-child(4),
.dvv-table td:nth-child(4){
    width:10%;
}

.dvv-table th:nth-child(5),
.dvv-table td:nth-child(5){
    width:27%;
}

.dvv-table th:nth-child(6),
.dvv-table td:nth-child(6){
    width:15%;
    text-align:center;
}

/* ========================================= */
/* BADGE */
/* ========================================= */

.metric-badge{
    background:rgba(236,29,37,0.1);
    color:var(--accent-red);
    padding:7px 14px;
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    display:inline-block;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.view-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:linear-gradient(135deg,var(--primary-blue),#3144b4);
    color:#fff !important;
    padding:10px 18px;
    border-radius:40px;
    text-decoration:none !important;
    font-size:13px;
    font-weight:700;
    transition:0.3s;
    white-space:nowrap;
}

.view-btn:hover{
    background:linear-gradient(135deg,var(--accent-red),#c8141b);
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(236,29,37,0.25);
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:992px){

    .dvv-table-wrapper{
        overflow-x:auto;
    }

    .dvv-table{
        min-width:900px;
    }

}

@media(max-width:768px){

    .dvv-section{
        padding:45px 0;
    }

    .dvv-card{
        padding:20px;
        border-radius:22px;
    }

    .dvv-title{
        font-size:30px;
    }

    .dvv-subtitle{
        font-size:14px;
    }

    .dvv-tabs{
        flex-direction:column;
        gap:10px;
    }

    .dvv-tabs a{
        text-align:center;
        padding:12px 20px;
    }

}

@media(max-width:576px){

    .dvv-card{
        padding:15px;
    }

    .dvv-title{
        font-size:26px;
    }

    .dvv-table{
        min-width:850px;
    }

}