/*=========================================
            HERO SECTION
==========================================*/

.college-hero-section{

    position:relative;

}

.college-hero-image{

    position:relative;

}

.college-hero-image img{

    width:100%;

    height:520px;

    object-fit:cover;

}


/*=========================================
            LOGO CARD
==========================================*/

.college-logo-card{

    position:absolute;

    left:40px;

    bottom:40px;

    width:110px;

    height:110px;

    background:#fff;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.college-logo-card img{

    width:75px;

    height:auto;

}


/*=========================================
        ADMISSION CARD
==========================================*/

.college-admission-card{

    position:absolute;

    right:40px;

    bottom:40px;

    width:280px;

    background:#fff;

    padding:22px;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.college-admission-card h6{

    font-size:18px;

    font-weight:700;

    margin-bottom:12px;

}

.college-admission-card p{

    font-size:14px;

    color:#666;

    line-height:24px;

    margin-bottom:20px;

}

.college-admission-card a{

    display:block;

    text-align:center;

    background:#ff5a1f;

    color:#fff;

    text-decoration:none;

    padding:12px;

    border-radius:6px;

    font-weight:600;

}

.college-admission-card a:hover{

    background:#e34c14;

    color:#fff;

}


/*=========================================
            INFO BAR
==========================================*/

.college-info-bar{

    background:#000;

    padding:50px 0;

}

.college-rating{

    color:#ffc107;

    font-size:22px;

    letter-spacing:3px;

    margin-bottom:12px;

}

.college-info-bar h1{

    color:#fff;

    font-size:56px;

    font-weight:800;

    margin-bottom:20px;

}

.college-info-bar ul{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    list-style:none;

    padding:0;

    margin:0;

}

.college-info-bar ul li{

    color:#d5d5d5;

    font-size:15px;

}

.college-info-bar ul li i{

    margin-right:8px;

    color:#fff;

}


/*=========================================
            BUTTONS
==========================================*/

.college-action-btns{

    display:flex;

    justify-content:end;

    gap:10px;

    margin-bottom:15px;

}

.shortlist-btn{

    background:#fff;

    color:#1b1464;

    padding:10px 20px;

    border-radius:30px;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

}

.shortlist-btn:hover{

    color:#1b1464;

}

.wishlist-btn{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#1b1464;

}

.apply-btn{

    display:inline-block;

    background:#ff5a1f;

    color:#fff;

    text-decoration:none;

    padding:12px 28px;

    border-radius:30px;

    font-weight:600;

}

.apply-btn:hover{

    color:#fff;

    background:#e34c14;

}


/*=========================================
            RESPONSIVE
==========================================*/

@media(max-width:991px){

    .college-hero-image img{

        height:350px;

    }

    .college-logo-card,

    .college-admission-card{

        position:relative;

        left:auto;

        right:auto;

        bottom:auto;

        margin:20px auto;

    }

    .college-info-bar h1{

        font-size:38px;

    }

    .college-info-bar ul{

        gap:15px;

    }

    .college-action-btns{

        justify-content:start;

        margin-top:25px;

    }

}
/*==================================
        COLLEGE DETAILS
==================================*/

.college-details-section{

    background:#f8f6f4;

}


/*==================================
        LAYOUT
==================================*/

.college-layout{

    display:flex;
    align-items:stretch; /* Essential for sticky child to work */

}


/*==================================
        LEFT SIDEBAR
==================================*/

.college-sidebar{

    width:260px;

    min-width:260px;

    flex-shrink:0;
    background: #000;

}


/*==================================
        STICKY MENU
==================================*/

.college-sidebar-inner{

    position:sticky;
    /* Adjust top to account for the main header's height (88px) */
    top:88px; 
    height: fit-content;
    max-height: calc(100vh - 100px); /* Leave small gap at bottom */
    overflow-y: auto;

    background:#000;

    padding:60px 35px;

}


/*==================================
        MENU
==================================*/

.college-menu{

    list-style:none;

    margin:0;

    padding:0;

}

.college-menu li{

    margin-bottom:22px;

}

.college-menu a{

    color:#8d8d8d;

    text-decoration:none;

    font-size:16px;

    font-weight:400;

    transition:.3s;

    display:flex;

    align-items:center;

}

.college-menu a:hover{

    color:#fff;

}

.college-menu a.active{

    color:#fff;

    font-weight:600;

}

.college-menu a.active::before{

    content:"";

    width:8px;

    height:8px;

    background:#fff;

    border-radius:50%;

    margin-right:12px;

}


/*==================================
        CONTENT
==================================*/

.college-main-content{

    flex:1;

    padding:40px;

}


/*==================================
        SECTION SPACING
==================================*/

.college-main-content section{

    margin-bottom:35px;

    scroll-margin-top:100px;

}


/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px){

    .college-layout{

        flex-direction:column;

    }

    .college-sidebar{

        width:100%;

        min-width:100%;

    }

    .college-sidebar-inner{

        position:relative;

        height:auto;

        padding:25px;

    }

    .college-menu{

        display:flex;

        flex-wrap:wrap;

        gap:15px;

    }

    .college-menu li{

        margin-bottom:0;

    }

    .college-main-content{

        padding:20px;

    }

}

/*====================================
        REPORT CARD
====================================*/

.college-report-card{

    background:#ffffff;

    border:1px solid #dcdcdc;

    border-radius:4px;

    padding:28px;

}

.report-card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.report-card-header h2{

    font-size:24px;

    font-weight:500;

    margin:0;

    color:#222;

}

.report-card-header span{

    font-size:13px;

    color:#777;

}

.report-score-card{

    display:flex;

    align-items:center;

    gap:15px;

    border:1px solid #d8d8d8;

    padding:16px;

    border-radius:3px;

    height:100%;

}

.report-grade{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#081c2e;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:15px;

}

.report-info h6{

    margin:0;

    font-size:15px;

    font-weight:500;

}

.report-info p{

    margin:2px 0 0;

    font-size:12px;

    color:#777;

}

/*====================================
            OVERVIEW
====================================*/

.overview-heading{

    font-size:56px;

    font-weight:700;

    margin-bottom:30px;

    color:#111;

}

.college-overview-section p{

    font-size:15px;

    color:#444;

    line-height:30px;

}

.overview-stats-row{

    margin-top:35px;

}

.overview-stat-box{

    background:#071a2d;

    color:#fff;

    text-align:center;

    padding:18px;

}

.overview-stat-box h3{

    margin:0;

    font-size:28px;

    font-weight:700;

}

.overview-stat-box span{

    display:block;

    margin-top:8px;

    font-size:11px;

    letter-spacing:1px;

}

/*=========================================
        OVERVIEW RIGHT SIDEBAR
==========================================*/

.overview-sidebar{

    position:sticky;

    top:30px;

}

/* Card */

.overview-sidebar-card{

    background:#ffffff;

    border:1px solid #dddddd;

    padding:22px;

    border-radius:4px;

}

.overview-sidebar-card h5{

    font-size:13px;

    font-weight:700;

    color:#555;

    letter-spacing:1px;

    margin-bottom:20px;

}

/* Navigation */

.overview-nav-list{

    margin:0;

    padding:0;

    list-style:none;

}

.overview-nav-list li{

    margin-bottom:15px;

}

.overview-nav-list li:last-child{

    margin-bottom:0;

}

.overview-nav-list a{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#222;

    font-size:15px;

    transition:.3s;

}

.overview-nav-list a:hover{

    color:#ff5a1f;

}

.overview-nav-list i{

    width:18px;

    color:#0b2742;

}

/* Rank */

.rank-row{

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:1px solid #eeeeee;

}

.rank-row:last-child{

    border-bottom:none;

}

.rank-row span{

    font-size:14px;

    color:#666;

}

.rank-row strong{

    font-size:14px;

    color:#0b2742;

}

/* Image */

.overview-image-card{

    position:relative;

    overflow:hidden;

    border-radius:4px;

}

.overview-image-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.overview-image-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:18px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

}

.overview-image-overlay p{

    color:#fff;

    font-size:14px;

    margin:0;

    font-style:italic;

}

/* Responsive */

@media(max-width:991px){

    .overview-sidebar{

        position:relative;

        top:0;

        margin-top:30px;

    }

}

/*====================================
        REVIEW SECTION
====================================*/

.college-review-card{

    background:#ffffff;

    border:1px solid #dddddd;

    padding:25px;

}

.review-title{

    font-size:22px;

    font-weight:500;

    margin-bottom:25px;

}

.review-content-box{

    background:#f5f5f5;

    padding:20px;

}

.review-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:20px;

}

.review-user{

    display:flex;

    gap:12px;

    align-items:center;

}

.review-avatar{

    width:42px;

    height:42px;

    background:#081c2e;

    color:#fff;

    border-radius:8px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:13px;

    font-weight:600;

}

.review-user h6{

    margin:0;

    font-size:15px;

    font-weight:500;

}

.review-user span{

    font-size:12px;

    color:#777;

}

.review-rating{

    text-align:right;

}

.review-quote{

    font-size:28px;

    color:#d8d8d8;

    display:block;

    margin-bottom:4px;

}

.review-stars{

    color:#e53935;

    font-size:14px;

}

.review-text{

    font-size:15px;

    line-height:30px;

    color:#444;

    font-style:italic;

    margin-bottom:15px;

}

.review-link{

    color:#111;

    text-decoration:none;

    font-size:15px;

}

.review-link:hover{

    color:#ff5a1f;

}


@media(max-width:767px){

.review-top{

    flex-direction:column;

    gap:15px;

}

}

.pgp-banner{

    position:relative;

    overflow:hidden;

    border-radius:6px;

    height:400px;

}

.pgp-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* Left dark gradient */
.pgp-overlay{

    position:absolute;

    inset:0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 35%, rgb(0 0 0 / 50%) 60%, rgb(0 0 0 / 65%) 100%);

}

.pgp-content{

    position:absolute;

    left:35px;

    top:35px;

    right:35px;

    z-index:100;

    max-width:615px;

}

.pgp-content small{

    color:#ffffff;

    font-size:10px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.college-program-section .pgp-content h2{

    font-size: 37px !important;

    font-weight: 700;

    line-height:1.4;

    color:#fff;

    margin:10px 0 15px;

}

.pgp-content p{

    color:#f2f2f2;

    font-size:17px;

    line-height:30px;

    margin-bottom:25px;

}

.pgp-btn-group{

    display:flex;

    gap:12px;

}

.pgp-download-btn{

    background:#ff5a1f;

    color:#fff;

    padding:11px 22px;

    border-radius:4px;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

}

.pgp-view-btn{

    border:1px solid rgba(255,255,255,.6);

    color:#fff;

    padding:11px 22px;

    border-radius:4px;

    text-decoration:none;

    font-size:13px;

}

/*=========================================
        MBA PROGRAM SECTION
=========================================*/

.mba-title{

    font-size:42px;

    font-weight:700;

    color:#052f2d;

    margin:0;

}

.program-count{

    font-size:13px;

    color:#777;

}

/* Program Card */

.mba-program-card{

    background:#fff;

    border:1px solid #d9d9d9;

    border-radius:4px;

    padding:18px;

    margin-bottom:18px;

    transition:.3s;

}

.mba-program-card:hover{

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.program-image{

    width:100%;

    height:150px;

    object-fit:cover;

    border-radius:3px;

}
.mba-program-card .fee
{
    color: #005DB7;
}

.mba-program-card h4{

    font-size:19px;

    font-weight:600;

    color:#0b2f2e;

    margin-bottom:10px;
    max-width: 455px

}

.flagship-badge{

    background:#f6d458;

    padding:5px 12px;

    font-size:12px;

    font-weight:600;
    height: 27px;

}

.mba-program-card label{

    display:block;

    font-size:11px;

    color:#888;

    text-transform:uppercase;

    margin-bottom:2px;

}

.mba-program-card h6{

    font-size:15px;

    font-weight:600;

    color:#222;

}

.fee{

    color:#0066cc;

}

.mba-program-card hr{

    margin:15px 0 10px;

    color:#ddd;

}

.program-footer{

    font-size:13px;

    color:#555;

    display:flex;

    gap:20px;

    flex-wrap:wrap;
    border-top: 2px solid #BFC9C6;
    padding-top: 12px;
    margin-top: 10px;

}

.program-footer span{

    color:#666;

}


/* Responsive */

@media(max-width:991px){

    .program-image{

        margin-bottom:15px;

        height:180px;

    }

    .mba-title{

        font-size:30px;

    }

}

/*=========================================
        MBA RIGHT SIDEBAR
=========================================*/

.mba-right-sidebar{

    margin-top: 28%;

}

.sidebar-calendar-card{

    background:#fff;

    border:1px solid #dcdcdc;

    padding:20px;

    border-radius:4px;

}

.sidebar-calendar-card h6{

    color:#d71920;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.sidebar-calendar-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.sidebar-calendar-card li{

    margin-bottom:14px;

    font-size:13px;

    color:#333;
    border-left: 3px solid #BFC9C6;
    padding-left: 18px;

}

.sidebar-calendar-card li span{

    display:block;

    color:#999;

    font-size:11px;

}

.full-schedule-btn{

    display:block;

    text-align:center;

    margin-top:20px;

    background:#e31b23;

    color:#fff;

    padding:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

}

.full-schedule-btn:hover{

    color:#fff;

}

.placement-card{

    background:#e61d23;

    color:#fff;

    padding:22px;

    border-radius:4px;

}

.placement-card h6{

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;

}

.highest-package{

    font-size:36px;

    font-weight:700;

    line-height:1;

}

.placement-card small{

    display:block;

    margin-top:6px;

    color:#ffe6e6;

}

.placement-card h4{

    margin-top:15px;

    margin-bottom:4px;

    font-size:26px;

    font-weight:700;

}

.placement-card span{

    font-size:12px;

    color:#ffe6e6;

}

/*======================================
        FEE STRUCTURE SECTION
=======================================*/

.fee-heading{

    margin-bottom:35px;

}

.fee-heading h2{

    font-size:30px;

    font-weight:700;

    color:#222;

    margin-bottom:12px;

}

.fee-heading p{

    font-size: 15px;
    color: #666;
    max-width: 700px;
    line-height: 25px;

}


/* Card */

.fee-card{

    background:#fff;

    border:1px solid #dcdcdc;

    border-radius:8px;

    padding:30px;

    height:100%;

    transition:.3s;

}

.fee-card:hover{

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.fee-top{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:25px;

}

.fee-icon{

    width:48px;

    height:48px;

    background:#d9e8fb;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#0d2b58;

}

.hostel{

    background:#f9efd8;

    color:#ff6b00;

}

.fee-badge{

    background:#dce6ff;

    color:#0d2b58;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.hostel-badge{

    background:#fff1d5;

    color:#ff6b00;

}

.fee-card h4{

    font-size:32px;

    font-weight:600;

    margin-bottom:18px;

}

.fee-card p{

    font-size:17px;

    line-height:30px;

    color:#666;

    margin-bottom:35px;

}

.fee-price{

    font-size:50px;

    font-weight:700;

    color:#111;

}

.fee-price span{

    font-size:24px;

    font-weight:500;

}


/* Total */

.total-fee-card{

    background:#fff;

    border-left:5px solid #111;

    border-radius:8px;

    padding:35px;

    border:1px solid #ddd;

}

.total-fee-card h3{

    font-size:38px;

    font-weight:700;

    margin-bottom:15px;

}

.total-fee-card p{

    color:#666;

    font-size:17px;

    line-height:30px;

}

.total-bottom{

    margin-top:20px;

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    font-size:14px;

    color:#444;

}

.total-bottom i{

    color:#666;

    margin-right:6px;

}

.total-fee-card small{

    letter-spacing:2px;

    color:#666;

    font-size:14px;

    font-weight:700;

}

.total-price{

    font-size:63px;

    font-weight:700;

    color:#111;

}

.total-price span{

    font-size:28px;

    font-weight:500;

}


/* Responsive */

@media(max-width:991px){

    .fee-heading h2{

        font-size:34px;

    }

    .total-price{

        margin-top:20px;

        font-size:52px;

        text-align:left;

    }

}

@media(max-width:767px){

    .fee-card{

        padding:22px;

    }

    .fee-card h4{

        font-size:24px;

    }

    .fee-price{

        font-size:42px;

    }

    .total-fee-card{

        padding:25px;

    }

    .total-fee-card h3{

        font-size:28px;

    }

}
/*========================================
        FINANCE SECTION
========================================*/


/* Living Cost */

.living-cost-card{

    background:#fff;

    border:1px solid #ddd;

    border-radius:8px;

    padding:35px;

}

.finance-title{

    font-size:30px;

    font-weight:700;

    color:#222;

}

.living-item{

    display:flex;

    gap:18px;

}

.living-icon{

    width:48px;

    height:48px;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:4px;

    flex-shrink:0;

}

.living-item h5{

    font-size:22px;

    font-weight:600;

    margin-bottom:10px;

}

.living-item p{

    font-size:17px;

    line-height:30px;

    color:#555;

    margin-bottom:12px;

}

.living-item strong{

    font-size:28px;

    font-weight:700;

}


/* Scholarship */

.scholarship-card{

    background:#fff;

    border:1px solid #ddd;

    border-radius:8px;

    padding:30px;

    display:flex;

    gap:20px;

    margin-top:20px;

    align-items:flex-start;

    transition:.3s;

}

.scholarship-card:hover{

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.scholarship-icon{

    width:54px;

    height:54px;

    background:#f4f4f4;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:4px;

    font-size:22px;

}

.scholarship-card h4{

    font-size:34px;

    font-weight:600;

    margin-bottom:10px;

}

.scholarship-card p{

    color:#666;

    font-size:17px;

    line-height:30px;

}


/* Loan */

.loan-assistance-card{

    margin-top:25px;

    background:#000;

    color:#fff;

    padding:40px;

    border-radius:12px;

}

.loan-assistance-card h2{

    font-size:38px;

    font-weight:700;

    margin-bottom:18px;

}

.loan-assistance-card p{

    color:#d7d7d7;

    line-height:32px;

    font-size:17px;

    max-width:760px;

}

.loan-bank-list{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:30px;

}

.loan-bank-list span{

    background:#262626;

    padding:12px 22px;

    border-radius:4px;

    font-size:15px;

    font-weight:600;

}


/* Responsive */

@media(max-width:991px){

    .living-item{

        margin-bottom:30px;

    }

}

@media(max-width:767px){

    .living-cost-card,

    .loan-assistance-card{

        padding:20px;

    }

    .finance-title{

        font-size:28px;

    }

    .scholarship-card{

        flex-direction:column;

    }

    .scholarship-card h4{

        font-size:24px;

    }

    .loan-assistance-card h2{

        font-size:28px;

    }

}

/*====================================
        STUDENT REVIEW SECTION
====================================*/

.student-review-section{

    margin-top:35px;

}

.student-review-wrapper{

    background:#000;

    border-radius:10px;

    padding:45px;

}

.review-stars{

    color:#ffd700;

    font-size:24px;

    margin-bottom:10px;

}

.review-top-content h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:20px;

}

.review-subtitle{

    color:#fff;

    display:block;

    margin-bottom:15px;

    font-size:15px;

}

.review-top-content p{

    color:#cfcfcf;

    max-width:760px;

    line-height:30px;

    margin-bottom:35px;

}


/* White Box */

.review-main-box{

    background:#fff;

    border-radius:4px;

    padding:30px;

}

.review-main-box h3{

    font-size:34px;

    font-weight:600;

    margin-bottom:30px;

}


/* Rating */

.overall-rating{

    text-align:center;

}

.overall-rating h1{

    font-size:70px;

    color:#0d4b46;

    font-weight:700;

    margin-bottom:0;

}

.overall-rating span{

    color:#999;

    font-size:14px;

}

.rating-row{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:10px;

}

.rating-row span{

    font-size:14px;

}

.rating-row .progress{

    flex:1;

    height:8px;

    background:#eee;

}

.rating-row .progress-bar{

    background:#0d4b46;

}

.rating-row small{

    width:20px;

}


/* Review Card */

.student-review-card{

    border:1px solid #ddd;

    padding:20px;

    margin-top:20px;

}

.review-avatar{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#ddd;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    margin-right:15px;

}

.student-review-card h5{

    font-size:18px;

    margin-bottom:3px;

}

.student-review-card small{

    color:#777;

}

.student-review-card p{

    margin:18px 0;

    color:#555;

    line-height:28px;

}

.student-review-card a{

    color:#0d4b46;

    text-decoration:none;

    font-weight:600;

}

.student-review-card:hover{

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}


/* Responsive */

@media(max-width:767px){

.student-review-wrapper{

    padding:20px;

}

.review-top-content h2{

    font-size:32px;

}

.review-main-box{

    padding:20px;

}

.overall-rating{

    margin-bottom:20px;

}

}

/*=====================================
        ADMISSION SECTION
======================================*/

.college-admission-section{

    margin-top:35px;

}

/* Banner */

.admission-banner{

    position: relative;
    height: 319px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 35px;

}

.admission-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.admission-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(2deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.35),
    rgba(0,0,0,.05));

}

.admission-banner-content{

    position: absolute;
    left: 30px;
    bottom: 5px;
    max-width: 570px;

    color:#fff;

    z-index:5;

}

.admission-banner-content h2{

    font-size:40px;

    font-weight:700;

    margin-bottom:10px;

}

.admission-banner-content p{

    font-size:15px;

    line-height:26px;

}


/* Heading */

.admission-title{

    margin-bottom:30px;

}

.admission-title h2{

    font-size:30px;

    font-weight:700;

    color:#222;
    padding-left: 20px;
    border-left: 5px solid #000;

}


/* Stats */

.admission-stat-card{

    background:#fff;

    border:1px solid #ddd;

    padding:30px;

    text-align:center;

}

.admission-stat-card h3{

    font-size:48px;

    font-weight:700;

    margin-bottom:10px;

}

.admission-stat-card span{

    font-size:13px;

    letter-spacing:1px;

    color:#666;

}


/* Description */

.admission-content{

    margin:35px 0 45px;

}

.admission-content p{

    color:#555;

    font-size:16px;

    line-height:30px;

}


/* Selection */

.selection-process h3{

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;

}

.selection-stage-main{

    background:#111;

    color:#fff;

    padding:30px;

    position:relative;

    overflow:hidden;

    margin-bottom:20px;

}

.stage-no{

    position:absolute;

    right:20px;

    top:10px;

    font-size:80px;

    font-weight:700;

    color:rgba(255,255,255,.08);

}

.selection-stage-main h4{

    font-size:22px;

    margin-bottom:12px;

}

.selection-stage-main p{

    max-width:600px;

    color:#ddd;

    line-height:28px;

}


.selection-card{

    border:1px solid #ddd;

    background:#fff;

    padding:25px;

    height:100%;

}

.stage-badge{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#e11b22;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    margin-bottom:20px;

}

.selection-card h5{

    font-size:22px;

    font-weight:600;

    margin-bottom:12px;

}

.selection-card p{

    color:#666;

    line-height:28px;

}
/*=========================================
        ADMISSION RIGHT SIDEBAR
=========================================*/

.college-admission-sidebar{

    margin-top: 25%;

}

/*--------------------------
        Common Card
---------------------------*/

.admission-sidebar-card,
.diversity-sidebar-card{

    background:#fff;

    border:1px solid #d8d8d8;

    padding:22px;

    margin-bottom:20px;

}

.admission-sidebar-card h5,
.diversity-sidebar-card h5{

    font-size:14px;

    font-weight:600;

    color:#555;

    margin-bottom:5px;

    text-transform:uppercase;

}


/*--------------------------
        Quick Facts
---------------------------*/

.fact-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:7px 0;

    border-bottom:1px solid #ececec;

}

.fact-item span{

    font-size:12px;

    color:#555;

}

.fact-item strong{

    font-size:12px;

    font-weight:600;

    color:#222;

}

.eligibility-btn{

    display:block;

    margin-top:20px;

    background:#e21d23;

    color:#fff;

    text-align:center;

    padding:12px;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.eligibility-btn:hover{

    color:#fff;

    background:#c8171d;

}

.sidebar-help{

    margin-top:15px;

    text-align:center;

    font-size:12px;

    color:#666;

}

.sidebar-help a{

    color:#444;

    text-decoration:underline;

}


/*--------------------------
      Global Rankings
---------------------------*/

.ranking-sidebar-card{

    background:#111;

    color:#fff;

    padding:22px;

    margin-bottom:20px;

}

.ranking-sidebar-card h5{

    font-size:16px;

    margin-bottom:20px;

    font-weight:600;

}

.ranking-item{

    display:flex;

    justify-content:space-between;

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,.10);

}

.ranking-item span{

    color:#ddd;

    font-size:13px;

}

.ranking-item strong{

    color:#fff;

    font-size:13px;

}


/*--------------------------
     Student Diversity
---------------------------*/

.diversity-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.diversity-item:last-child{

    margin-bottom:0;

}

.diversity-icon{

    width:40px;

    height:40px;

    background:#f3f3f3;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#0b3f3b;

}

.diversity-item strong{

    display:block;

    font-size:15px;

    color:#222;

    font-weight:600;

}

.diversity-item small{

    color:#777;

    font-size:12px;

}


/*--------------------------
      Responsive
---------------------------*/

@media(max-width:991px){

    .college-admission-sidebar{

        position:static;

        margin-top:30px;

    }

}

/*=====================================
      ELIGIBILITY SECTION
======================================*/

.eligibility-section{

    margin-top:70px;

}

.section-title{

    font-size:36px;

    font-weight:700;

    color:#222;

    margin-bottom:25px;

    position:relative;

    padding-left:15px;

}

.section-title::before{

    content:"";

    position:absolute;

    left:0;

    top:5px;

    width:4px;

    height:32px;

    background:#222;

}

/*============================*/

.eligibility-card{

    background:#fff;

    border:1px solid #d9d9d9;

}

.eligibility-header{

    background:#15191d;

    color:#fff;

    padding:18px 25px;

    font-size:18px;

    font-weight:600;

    letter-spacing:1px;

}

.eligibility-item{

    display:flex;

    gap:20px;

    padding:25px;

    border-bottom:1px solid #e5e5e5;

}

.eligibility-icon{

    width:45px;

    min-width:45px;

    display:flex;

    justify-content:center;

    color:#111;

    font-size:18px;

}

.eligibility-item h5{

    font-size:22px;

    font-weight:600;

    margin-bottom:8px;

}

.eligibility-item p{

    color:#555;

    line-height:28px;

    margin:0;

}

/*============================
      Responsive
=============================*/

@media(max-width:768px){

.section-title{

    font-size:28px;

}

.eligibility-item{

    flex-direction:column;

}

}
/*==================================
        IMPORTANT DATES
==================================*/

.adm-date-list{

    position:relative;

    margin-top:40px;

    padding-left:50px;

}

.adm-date-list::before{

    content:"";

    position:absolute;

    left:38px;

    top:0;

    bottom:0;

    width:3px;

    background:#d9d9d9;

}

.adm-date-item{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:28px;

    margin-bottom:55px;

}

.adm-date-item:last-child{

    margin-bottom:0;

}

.adm-date-icon{

    width:46px;

    height:46px;

    min-width:46px;

    border-radius:12px;

    background:#eef4ff;

    border:2px solid #d8e7ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    color:#9cb5e8;

    position:relative;

    margin-left:-34px;

    z-index:5;

}

.adm-date-icon.active{

    background:#111;

    border-color:#111;

    color:#fff;

}

.adm-date-content{

    padding-top:2px;

}

.adm-date-content span{

    display:block;

    font-size:18px;

    color:#707070;

    font-weight:500;

    margin-bottom:6px;

}

.adm-date-content h5{

    font-size:26px;

    font-weight:700;

    color:#222;

    margin-bottom:10px;

    line-height:1.2;

}

.adm-date-content p{

    font-size:18px;

    color:#5f5f5f;

    line-height:1.8;

    margin:0;

    max-width:600px;

}

@media(max-width:767px){

    .adm-date-list{

        padding-left:0;

    }

    .adm-date-list::before{

        display:none;

    }

    .adm-date-item{

        gap:15px;

        margin-bottom:30px;

    }

    .adm-date-icon{

        margin-left:0;

        width:40px;

        height:40px;

        min-width:40px;

    }

    .adm-date-content h5{

        font-size:20px;

    }

    .adm-date-content p{

        font-size:15px;

    }

}
/*=========================================
        PLACEMENT OVERVIEW SECTION
=========================================*/

.placement-overview-section{

    margin-top:70px;

}


/*=========================================
            CTA BOX
=========================================*/

.placement-cta{

    background:linear-gradient(90deg,#101315,#1a1d20);

    border-radius:8px;

    padding:60px 30px;

    text-align:center;

    margin-bottom:40px;

}

.placement-cta h2{

    font-size:42px;

    font-weight:700;

    color:#fff;

    margin-bottom:15px;

}

.placement-cta p{

    max-width:650px;

    margin:auto;

    color:#d5d5d5;

    font-size:18px;

    line-height:32px;

}

.placement-apply-btn{

    display:inline-block;

    margin-top:35px;

    background:#fff;

    color:#17333b;

    text-decoration:none;

    padding:14px 42px;

    font-size:17px;

    font-weight:600;

    border-radius:3px;

    transition:.3s;

}

.placement-apply-btn:hover{

    background:#ff5722;

    color:#fff;

}


/*=========================================
          PLACEMENT BANNER
=========================================*/

.placement-banner{

    position:relative;

    height:420px;

    border-radius:8px;

    overflow:hidden;

    margin-bottom:60px;

}

.placement-banner img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.placement-banner:hover img{

    transform:scale(1.05);

}

.placement-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,
    rgba(18,18,18,.85) 0%,
    rgba(25,17,65,.45) 60%,
    rgba(0,0,0,.25) 100%);

}

.placement-banner-content{

    position:absolute;

    left:45px;

    bottom:45px;

    z-index:5;

    max-width:600px;

}

.placement-banner-content span{

    display:inline-block;

    background:#ff5a2a;

    color:#fff;

    padding:8px 14px;

    font-size:12px;

    letter-spacing:1px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.placement-banner-content h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:12px;

}

.placement-banner-content p{

    color:#ddd;

    font-size:17px;

    line-height:30px;

}


/*=========================================
          EXECUTIVE SUMMARY
=========================================*/

.placement-summary{

    margin-top:50px;

}

.placement-summary h2{

    font-size:34px;

    font-weight:700;

    color:#12312d;

}

.placement-summary small{

    color:#777;

    font-size:14px;

}

.summary-card{

    background:#fff;

    border:1px solid #dcdcdc;

    padding:25px;

    min-height:195px;

    transition:.3s;

}

.summary-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.summary-card i{

    font-size:22px;

    color:#0f3f3d;

    margin-bottom:20px;

}

.summary-card h6{

    font-size:15px;

    color:#666;

    margin-bottom:8px;

    font-weight:500;

}

.summary-card h4{

    font-size:15px;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

}

.summary-card span{

    color:#0a63c9;

    font-size:14px;

    display:block;

    line-height:24px;

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

    .placement-banner{

        height:340px;

    }

    .placement-banner-content{

        left:30px;

        bottom:30px;

    }

    .placement-banner-content h2{

        font-size:36px;

    }

}

@media(max-width:767px){

    .placement-cta{

        padding:40px 20px;

    }

    .placement-cta h2{

        font-size:30px;

    }

    .placement-cta p{

        font-size:15px;

        line-height:28px;

    }

    .placement-banner{

        height:260px;

    }

    .placement-banner-content{

        left:20px;

        bottom:20px;

    }

    .placement-banner-content h2{

        font-size:28px;

    }

    .placement-banner-content p{

        font-size:14px;

        line-height:24px;

    }

    .placement-summary h2{

        font-size:28px;

    }

    .summary-card{

        min-height:auto;

    }

}