/* ====================================
   GLOBAL
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    overflow-x: initial;
}

body {
    overflow-x: hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
}

/* ====================================
   HEADER
==================================== */

.main-header{
    /* Changed to fixed so it stays visible and sidebar sticks below it */
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
}
.ml-auto{
    margin-left:auto;
}

.navbar{
    min-height:88px;
}

.logo-area{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-area img{
    height:60px;
}

.logo-area span{
    font-size:20px;
    font-weight:700;
    color:#111;
}

.navbar-nav .nav-link{
    color:#111;
    font-size:15px;
    font-weight:400;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#ff5a14;
}

.header-icons{
    display:flex;
    gap:10px;
    margin-left: 10px;
}

.header-icons a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#ff5a14;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.header-icons a:hover{
    transform:translateY(-2px);
}

/* ====================================
   HERO SECTION
==================================== */

.hero-section{
    position:relative;
    min-height:100vh;
    background:url('../images/home_banner.png');
    background-repeat:no-repeat;
    background-size:cover;
    overflow:hidden;
}

/* Left dark overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.20) 65%,
        rgba(0,0,0,.30) 100%
    );
}

/* Bottom shadow */

.hero-section::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:220px;
    z-index:1;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.60),
        transparent
    );
}

.hero-content{
    position:relative;
    z-index:5;
}

.hero-content h1{
    color:#fff;
    font-size:64px;
    font-weight:800;
    line-height:.95;
    letter-spacing:-2px;
    max-width:720px;
}

.hero-content h1 span{
    display:block;
    color:#ff5a14;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary-custom{
    background:#fff;
    color:#ff5a14;
    padding:15px 32px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#f5f5f5;
}

.btn-secondary-custom{
    background:#ff5a14;
    color:#fff;
    padding:15px 32px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.btn-secondary-custom:hover{
    background:#e94d10;
}

/* ====================================
   MENTOR CARD
==================================== */

.mentor-box{
    position:relative;
    z-index:5;

    width:100%;
    max-width:400px;

    margin-left:auto;
    margin-top:250px;

    padding:40px;

    border-radius:30px;

    background:rgba(15,15,15,.35);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.08);

    overflow:hidden;
}

.mentor-box::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,90,20,.15),
        transparent 45%
    );

    pointer-events:none;
}

.mentor-box h2{
    color:#fff;
    font-size:40px;
    font-weight:800;
    line-height:.92;
    margin-bottom:25px;
}

.mentor-box p{
    color:#d8d8d8;
    font-size:16px;
    line-height:1.2;
    margin-bottom:35px;
}

/* ====================================
   PHONE FORM
==================================== */

.mentor-form{
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    height: 45px;
    width: 85%;
    padding-left: 16px;
}
.form-style{
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-style button{
    height: 45px;
    width: 45px;
    border: none;
    border-radius: 50%;
    color: #d4131a;
}   

.dropdown-toggle::after{
    margin-left: 0px !important;
}

.mentor-form select{
    width:110px;
    border:none !important;
    box-shadow:none !important;
    font-size:16px;
}

.mentor-form input{
    border:none !important;
    box-shadow:none !important;
    font-size:14px;
    padding-left: 25px;
}

.mentor-form button{
    color: #000;
    font-size:16px;
    background: #fff;
}

.mentor-form button:hover{
    background:#fff;
    color:#d4131a;
}

/* ====================================
   TRUST BAR
==================================== */
.trust-strip{
    position:relative;
    z-index:10;
    background:#ff5a14;
    color:#fff;
    padding:15px 0;
    font-size:14px;
    font-weight:500;
}

.trust-strip .row{
    align-items:center;
}

.trust-strip .col-lg-2{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    padding:0 20px;
}

/* Move separator slightly outside column */
.trust-strip .col-lg-2:not(:last-child)::after{
    content:'';
    position:absolute;
    right:-10px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:24px;
    background:rgba(255,255,255,.4);
}

.trust-left{
    text-align: left;
}
.start-here-section{
    background:#f5f5f5;
    padding:100px 0;
}

.start-content h4{
    font-size:42px;
    font-weight:500;
    color:#111;
    line-height:1.1;
}

.start-content h2{
    font-size:72px;
    font-weight:800;
    color:#ff5a14;
    margin-bottom:120px;
    line-height:1;
}

.start-content p{
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    max-width: 479px;
    margin-bottom: 25px;
    font-weight: 600;   
}

.start-btn{
    display:inline-block;
    background:#ff5a14;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}

.start-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:24px;
    height:260px;
    text-decoration:none;
}

.start-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.start-card:hover img{
    transform:scale(1.08);
}

.card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.2)
    );
}

.card-content{
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    z-index:2;
}

.card-content small{
    display:block;
    font-size:13px;
    margin-bottom:4px;
}

.card-content h3{
    font-size:29px;
    font-weight:700;
    line-height:1;
    margin-bottom:18px;
}

.card-btn{
    display:inline-block;
    background:#fff;
    color:#111;
    padding:8px 16px;
    border-radius:30px;
    font-size:11px;
    font-weight:600;
}
/*=========================================
    TOP B-SCHOOLS SECTION
=========================================*/

.bschools-section{
    background:#0F202B;
    padding:100px 0;
    overflow:hidden;
}

.bschools-section .container{
    max-width:1320px;
    width:95%;
    margin:0 auto;
}

/*=========================================
    HEADER
=========================================*/

.bschools-section .section-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.bschools-section .left-content h5{
    margin:0;
    color:#fff;
    font-size:22px;
    font-weight:300;
    letter-spacing:3px;
    text-transform:uppercase;
}

.bschools-section .left-content h2{
    margin:5px 0;
    color:#fff;
    font-size:58px;
    font-weight:700;
    line-height:1;
    text-transform:uppercase;
}

.bschools-section .left-content h3{
    margin:0;
    color:#fff;
    font-size:42px;
    font-weight:300;
    line-height:1;
    text-transform:uppercase;
}

/*=========================================
    FILTER
=========================================*/

.bschools-section .filter-menu{
    display:flex;
    gap:25px;
}

.bschools-section .filter-menu a{
    color:rgba(255,255,255,.6);
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.bschools-section .filter-menu a:hover,
.bschools-section .filter-menu a.active{
    color:#fff;
    border-bottom:2px solid #fff;
    padding-bottom:5px;
}

/*=========================================
    GRID
=========================================*/

.bschools-section .college-grid{
    overflow: visible;
}

.bschools-section .college-grid:not(.swiper-initialized) .swiper-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=========================================
    CARD
=========================================*/

.bschools-section .college-card-home{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    min-height: 480px; /* Ensures a minimum height for all cards */
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.bschools-section .college-card-home:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

/*=========================================
    IMAGE
=========================================*/

.bschools-section .college-image{
    position:relative;
    padding:10px 10px 0;
}

.bschools-section .college-image img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

.bschools-section .download{
    position:absolute;
    top:25px;
    right:25px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#222;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/*=========================================
    BODY
=========================================*/

.bschools-section .college-body{
    padding:0 22px 22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.bschools-section .card-content{
    flex:1;
}

/*=========================================
    LOGO
=========================================*/

.bschools-section .logo-row{
        margin-top: -30px;
    margin-bottom: 20px;
    z-index: 1;
}

.bschools-section .logo{
    width:70px;
    height:70px;
    object-fit:contain;
    background:#fff;
    border-radius:15px;
    padding:6px;
    box-shadow:0 5px 18px rgba(0,0,0,.15);
}

/*=========================================
    REVIEW
=========================================*/

.bschools-section .review-section{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.bschools-section .rating-badge{
    background:#16A34A;
    color:#fff;
    padding:6px 12px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:5px;
}

.bschools-section .rating-badge i{
    font-size:13px;
}

.bschools-section .review-count{
    color:#999;
    font-size:16px;
}

/*=========================================
    TITLE
=========================================*/

.bschools-section .college-body h4{
    font-size:20px;
    font-weight:500;
    line-height:1.5;
    color:#222;
    margin:0 0 25px;
    min-height:60px;
}

/*=========================================
    LOCATION
=========================================*/

.bschools-section .location{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
    font-size:16px;
    color:#333;
    margin-bottom:5px;
    gap:15px;
    font-weight: 400;
}

.bschools-section .college-type{
    font-size:14px;
    color:#666;
}

/*=========================================
    BUTTONS
=========================================*/

.bschools-section .btns{
    display:flex;
    gap:12px;
    margin-top:auto;
    padding-top:20px;
}

.bschools-section .know-btn,
.bschools-section .apply-btn{
    flex:1;
    text-align:center;
    padding:14px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.bschools-section .know-btn{
    background:#000;
    color:#fff;
}

.bschools-section .know-btn:hover{
    background:#222;
}

.bschools-section .apply-btn{
    background:#ED1C24;
    color:#fff;
}

.bschools-section .apply-btn:hover{
    background:#d4131a;
}

/*=========================================
    VIEW ALL
=========================================*/

.bschools-section .view-all{
    text-align:center;
    margin-top:60px;
}

.bschools-section .view-all a{
    display:inline-block;
    background:#fff;
    color:#111;
    padding:14px 40px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.bschools-section .view-all a:hover{
    transform:translateY(-3px);
}

/*=========================================
    CAREER PATH SECTION
=========================================*/

.career-path-section{
    padding:100px 0;
    background:#f7f7f7;
    font-family:'Poppins',sans-serif;
}

.career-path-section .container{
    max-width:1320px;
    width:95%;
    margin:auto;
}

/*=========================================
    HEADING
=========================================*/

.career-heading{
    margin-bottom:50px;
}

.career-heading h4{
    margin:0;
    color:#111;
    font-size:55px;
    font-weight:500;
    text-transform:uppercase;
}

.career-heading h2{
    margin:5px 0;
    color:#F04B22;
    font-size:68px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
}

.career-heading p{
    color:#000;
    font-size:18px;
    margin-top:10px;
}

/*=========================================
    PROCESS GRID
=========================================*/

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:35px;
}

.process-card{
    background:#dfe7fb;
    border-radius:10px;
    padding:25px;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.step-no{
    display:block;
    font-size:11px;
    color:#666;
    margin-bottom:10px;
}

.process-card h3{
    margin:0 0 15px;
    font-size:30px;
    color:#0F202B;
}

.process-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
    min-height:90px;
}

.process-card a{
    display:inline-block;
    padding:10px 22px;
    background:#172554;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

/*=========================================
    GUIDANCE BOX
=========================================*/

.guidance-box{
    background:#0F202B;
    border-radius:12px;
    padding: 65px 80px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:80px;
}

.guidance-left h2{
    font-size:48px;
    line-height:1.1;
    margin:0;
}

.guidance-right{
    display:flex;
    gap:30px;
}

.feature{
    max-width:220px;
}

.feature i{
    font-size:28px;
    margin-bottom:15px;
}

.feature h4{
    margin:0 0 10px;
    font-size:18px;
}

.feature p{
    margin:0;
    font-size:14px;
    color:#d2d2d2;
}

.guidance-btn{
    width:100%;
    text-align:center;
    margin-top:20px;
    margin-left: 40%;
}

.guidance-btn a{
    display:inline-block;
    padding:11px 56px;
    background:#F04B22;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
}

/*=========================================
    SPECIALIZATION
=========================================*/

.specialization-wrapper{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    align-items:center;
}

.specialization-content h2{
    font-size:50px;
    line-height:1;
    margin-bottom:40px;
    color:#111;
}

.accordion-item{
    border-bottom:1px solid #ddd;
    padding:18px 0;
}

.accordion-title{
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
}

.accordion-title::after{
    content:"+";
    color:#999;
}

.accordion-item.active .accordion-title::after{
    content:"−";
}

.accordion-content{
    margin-top:20px;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.accordion-content a{
    display:inline-block;
    margin-top:20px;
    background:#F04B22;
    color:#fff;
    text-decoration:none;
    padding:12px 26px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.specialization-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

/*=========================================
    RECRUITERS
=========================================*/

.recruiters{
    margin-top:80px;
    text-align:center;
}

.recruiters h3{
    margin-bottom:40px;
    font-size:26px;
    color:#111;
}

.logo-slider{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
}

.logo-slider img{
    max-height:40px;
    width:auto;
    opacity:.8;
    transition:.3s;
}

.logo-slider img:hover{
    opacity:1;
    transform:scale(1.08);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

.accordion-item.active .accordion-title::after{
    content:"−";
}

.accordion-title::after{
    content:"+";
    float:right;
    font-size:20px;
    font-weight:bold;
}

.accordion-title{
    cursor:pointer;
}

/* ====================================
   SCROLL REVEAL ANIMATIONS
==================================== */

/* Base state for all reveal elements */
[class*="reveal-"] {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Different animation directions */
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.85); }

/* Active state when element enters viewport */
[class*="reveal-"].active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0) scale(1) !important;
}

.ranking-section{
    background:#02042d;
    padding:80px 0;
}

.ranking-title{
    font-size:60px;
    font-weight:700;
    line-height:1;
    color:#fff;
}

.ranking-title span{
    color:#ff5a1f;
}

.ranking-tabs .nav-link{
    color:#8f8f9f;
    font-size:14px;
    text-transform:uppercase;
    margin:0 12px;
    padding-bottom:10px;
}

.ranking-tabs .nav-link.active{
    color:#fff;
    border-bottom:2px solid #fff;
}

.table-head{
    color:#7c7c9d;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.ranking-card{
    background:#fff;
    border-radius:8px;
    padding:18px 30px;
    display:grid;
    grid-template-columns:60% 15% 15% 10%;
    align-items:center;
    margin-bottom:12px;
    transition:.3s;
}

.ranking-card:hover{
    transform:translateY(-2px);
}

.college-name{
    font-size:15px;
    color:#222;
    font-weight:500;
}

.college-rank,
.college-course{
    text-align:center;
    color:#333;
    font-size:15px;
}

.know-btn{
    background:#ff5a1f;
    color:#fff;
    font-size:11px;
    padding:8px 18px;
    border-radius:20px;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.know-btn:hover{
    background:#e84d14;
    color:#fff;
}

.exam-section{
    background:#f5f5f5;
    padding:80px 0;
}

.exam-title{
    font-size:48px;
    font-weight:800;
    line-height:1;
}

.view-all{
    color:#ff5a1f;
    text-decoration:none;
    font-size:13px;
}

.exam-card{

    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    min-height:360px;

}

.exam-card h4{
    color:#204b93;
    font-size:18px;
    font-weight:700;
}

.exam-card p{
    font-size:14px;
    color:#666;
}

.exam-card strong{
    display:block;
    margin-top:15px;
    font-size:14px;
}

.exam-btn{

    margin-top:20px;
    display:inline-block;
    background:#ff5a1f;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:12px;
    text-decoration:none;

}

.exam-next,
.exam-prev{

    width:45px;
    height:45px;
    background:#000;
    border-radius:50%;
    color:#fff;

}

.exam-next:after,
.exam-prev:after{

    font-size:18px;
    font-weight:bold;

}

.swiper{
    padding:15px 5px;
}

.exam-slider-wrapper{
    position: relative;
    padding: 0 60px;
}

.examSwiper{
    overflow: hidden !important;
}

.exam-prev,
.exam-next{
    width: 50px !important;
    height: 50px !important;
    background: #000;
    border-radius: 50%;
    color: #fff !important;
}

.exam-prev{
    left: -70px !important;
}

.exam-next{
    right: -70px !important;
}

.exam-prev::after,
.exam-next::after{
    font-size: 18px;
    color: #fff;
}
/*==================================================
            EXPLORE B-SCHOOLS SECTION
==================================================*/

.bs-explore-section{
    padding:80px 0;
    background:#f5f5f5;
}

.bs-explore-banner{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:108px 50px;
    min-height:620px;
    background:url("../images/explore_banner.png") center center no-repeat;
    background-size: cover;
}

.bs-explore-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,15,40,.65),
        rgba(5,15,40,.45)
    );
    z-index:1;
}

.bs-explore-banner .row{
    position:relative;
    z-index:2;
    min-height:500px;
    align-items:center;
}


/*==================================================
                LEFT CONTENT
==================================================*/

.bs-left-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
}

.bs-title{
    color:#fff;
    font-size:44px;
    font-weight:800;
    line-height:1.05;
    margin-bottom:45px;
}


/*==================================================
                MENTOR CARD
==================================================*/

.bs-mentor-card{

    width:100%;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);

    border-radius:20px;

    padding:28px;
    color:#fff;
    min-width: 360px;
    margin-top: 140px;

}

.bs-mentor-card h4{

    color:#fff;
    font-size:34px;
    font-weight:700;
    line-height:1.1;

    margin-bottom:20px;

}

.bs-mentor-card p{

    color:rgba(255,255,255,.85);
    font-size:14px;
    line-height:24px;

    margin-bottom:25px;

}


/*==================================================
                PHONE FORM
==================================================*/

.bs-phone-form{

    display:flex;
    align-items:center;
    gap:10px;

}

.bs-phone-form input{

    flex:1;
    height:50px;

    border:none;
    border-radius:30px;

    padding:0 20px;

    font-size:15px;

}

.bs-phone-form input:focus{

    box-shadow:none;
    outline:none;

}

.bs-phone-form button{

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#ff5a1f;

    transition:.3s;

}

.bs-phone-form button:hover{

    background:#ff5a1f;
    color:#fff;

}


/*==================================================
                STUDENT IMAGE
==================================================*/

.bs-student-wrapper{

    display:flex;
    justify-content:center;
    align-items:flex-end;
    height:100%;

}

.bs-student-wrapper img{

    max-width:430px;
    width:100%;
    position:relative;
    z-index:5;

}

.bs-features-wrapper {
    padding: 49px 15px 49px 80px;
}


/*==================================================
                FEATURE BOX
==================================================*/

.bs-feature-box{

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);

    border-radius:12px;

    padding:23px;

    height:100%;
    min-height:180px;

    transition:.3s;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;

}

.bs-feature-box:hover{

    background:rgba(255,255,255,.18);

    transform:translateY(-5px);

}

.bs-feature-box i{

    color:#fff;
    font-size:18px;

    margin-bottom:12px;

}

.bs-feature-box h6{

    color:#fff;

    font-size:15px;

    line-height:22px;

    font-weight:500;

    margin:0;

}


/*==================================================
                BUTTON
==================================================*/

.bs-explore-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    padding:14px 30px;

    background:#ff5a1f;

    color:#fff;

    text-decoration:none;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.bs-explore-btn:hover{

    background:#e44d13;

    color:#fff;

}


/*=========================
        FAQ SECTION
==========================*/

.faq-section{

    padding:80px 0;
    background:#f5f5f5;

}

.faq-title{

    font-size:58px;
    font-weight:800;
    line-height:.95;
    color:#000;
    margin-bottom:15px;

}

.custom-faq .accordion-item{

    border:none;
    background:transparent;

}

.custom-faq .accordion-button{

    background:#010128;
    color:#fff;

    border-radius:15px !important;

    padding:18px 25px;

    font-size:16px;
    font-weight:500;

    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#010128;
    color:#fff;

}

.custom-faq .accordion-button:focus{

    box-shadow:none;

}

.custom-faq .accordion-button::after{

    filter:brightness(0) invert(1);

}

.custom-faq .accordion-body{

    background:#fff;

    padding:20px;

    border-radius:0 0 15px 15px;

    font-size:15px;

    color:#555;

}

/*==================================
            FOOTER
==================================*/

.bs-footer{

    background:#eef1f7;

    padding-top:70px;

}

.bs-footer-logo{

    width:110px;

    margin-bottom:25px;

}

.bs-footer-about p{

    color:#303030;

    font-size:15px;

    line-height:25px;

    max-width:380px;
        font-weight: 600;

}

.bs-newsletter{

    margin-top:45px;

}

.bs-newsletter h4{

    color:#11458f;

    font-size:32px;

    font-weight:700;

    margin-bottom:10px;

}

.bs-newsletter p{

    color:#11458f;

    font-size:14px;

    font-weight:500;

    margin-bottom:20px;

    font-weight: 600;

}


/*==================================================
            COLLEGE DETAILS PAGE
==================================================*/

.college-details-section{
    padding: 0;
    background: #fff;
}

/* College Header */
.college-header{
    background: #0F202B;
    padding: 40px 0;
}

.college-title-section h1{
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.college-rating{
    display: flex;
    align-items: center;
    gap: 10px;
}

.college-rating .rating-stars{
    color: #FFD700;
    font-size: 20px;
}

.college-rating .rating-score{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.college-rating .review-count{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.college-actions{
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-brochure{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #fff;
    color: #0F202B;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-brochure:hover{
    background: #f5f5f5;
}

.btn-apply{
    display: inline-block;
    padding: 12px 25px;
    background: #ff5a14;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn-apply:hover{
    background: #e44d13;
}

/* College Image Banner */
.college-image-banner{
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.college-image-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Content */
.college-main-content{
    padding: 60px 0;
}

.detail-section{
    margin-bottom: 50px;
}

.detail-section h2{
    font-size: 32px;
    font-weight: 700;
    color: #0F202B;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.detail-section h2::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #ff5a14;
}

/* About Section */
.about-section p{
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.college-info-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
}

.info-item i{
    color: #ff5a14;
    font-size: 20px;
}

.info-item span{
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Courses Section */
.course-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-item{
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    transition: .3s;
}

.course-item:hover{
    border-color: #ff5a14;
    box-shadow: 0 5px 20px rgba(255,90,20,0.1);
}

.course-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.course-header h3{
    font-size: 20px;
    font-weight: 600;
    color: #0F202B;
    margin: 0;
}

.course-duration{
    background: #ff5a14;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.course-details{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.course-fee span,
.course-eligibility span{
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.course-fee strong,
.course-eligibility strong{
    font-size: 16px;
    color: #0F202B;
}

/* Admission Section */
.admission-timeline{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.timeline-item{
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f5f5f5;
    border-radius: 10px;
    border-left: 4px solid #ff5a14;
}

.timeline-date{
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-date .date{
    font-size: 16px;
    font-weight: 600;
    color: #0F202B;
}

.timeline-date .label{
    font-size: 14px;
    color: #666;
}

.required-documents h3{
    font-size: 20px;
    font-weight: 600;
    color: #0F202B;
    margin-bottom: 15px;
}

.required-documents ul{
    list-style: none;
    padding: 0;
}

.required-documents li{
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.required-documents li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff5a14;
    font-weight: 700;
}

/* Facilities Section */
.facilities-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.facility-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: #f5f5f5;
    border-radius: 12px;
    text-align: center;
    transition: .3s;
}

.facility-item:hover{
    background: #ff5a14;
    transform: translateY(-5px);
}

.facility-item:hover i,
.facility-item:hover span{
    color: #fff;
}

.facility-item i{
    font-size: 28px;
    color: #ff5a14;
    margin-bottom: 10px;
}

.facility-item span{
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Reviews Section */
.reviews-list{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item{
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
}

.review-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info{
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4{
    font-size: 16px;
    font-weight: 600;
    color: #0F202B;
    margin: 0;
}

.review-date{
    font-size: 13px;
    color: #666;
}

.review-rating{
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-rating .stars{
    color: #FFD700;
    font-size: 16px;
}

.review-rating .score{
    font-size: 16px;
    font-weight: 600;
    color: #0F202B;
}

.review-item p{
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Faculty Section */
.faculty-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.faculty-item{
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: .3s;
}

.faculty-item:hover{
    border-color: #ff5a14;
    box-shadow: 0 5px 20px rgba(255,90,20,0.15);
}

.faculty-image{
    height: 200px;
    overflow: hidden;
}

.faculty-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-info{
    padding: 20px;
}

.faculty-info h4{
    font-size: 18px;
    font-weight: 600;
    color: #0F202B;
    margin: 0 0 8px;
}

.faculty-designation{
    display: block;
    font-size: 13px;
    color: #ff5a14;
    font-weight: 500;
    margin-bottom: 10px;
}

.faculty-info p{
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* News Section */
.news-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item{
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.news-date{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #ff5a14;
    border-radius: 10px;
    color: #fff;
    flex-shrink: 0;
}

.news-date .day{
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.news-date .month{
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content h4{
    font-size: 18px;
    font-weight: 600;
    color: #0F202B;
    margin: 0 0 10px;
}

.news-content p{
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Sidebar Cards */
.sidebar-card{
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-card h3{
    font-size: 22px;
    font-weight: 700;
    color: #0F202B;
    margin: 0 0 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Brochure Card */
.brochure-card p{
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.brochure-card form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brochure-card input{
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: .3s;
}

.brochure-card input:focus{
    outline: none;
    border-color: #ff5a14;
}

.brochure-card button{
    padding: 12px 20px;
    background: #ff5a14;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.brochure-card button:hover{
    background: #e44d13;
}

/* Contact Card */
.contact-info{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i{
    color: #ff5a14;
    font-size: 18px;
    width: 25px;
}

.contact-item span{
    font-size: 14px;
    color: #555;
}

.social-links{
    display: flex;
    gap: 10px;
}

.social-links a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F202B;
    text-decoration: none;
    transition: .3s;
}

.social-links a:hover{
    background: #ff5a14;
    color: #fff;
}

/* Similar Colleges */
.similar-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-item{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s;
}

.similar-item:hover{
    background: #fff;
    border: 1px solid #ff5a14;
}

.similar-logo{
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.similar-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-info h4{
    font-size: 15px;
    font-weight: 600;
    color: #0F202B;
    margin: 0 0 5px;
}

.similar-info .rating{
    font-size: 14px;
    color: #FFD700;
}

.bs-newsletter-form input{

    flex:1;

    background:none;

    border:none;

    color:#fff;

    padding:0 20px;

    font-size:14px;

}

.bs-newsletter-form input::placeholder{

    color:#d9e4ff;

}

.bs-newsletter-form input:focus{

    outline:none;

}

.bs-newsletter-form button{

    width:60px;

    height:55px;

    border:none;

    background:none;

    color:#fff;

    font-size:18px;

}

.bs-footer h5{

    color:#11458f;

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;

}

.bs-footer ul{

    margin:0;

    padding:0;

    list-style:none;

}

.bs-footer ul li{

    margin-bottom:12px;

}

.bs-footer ul li a{

    color:#2d2d2d;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

.bs-footer ul li a:hover{

    color:#ff5a1f;

    padding-left:5px;

}

.bs-footer-bottom{

    background:#010128;

    padding-top:60px; /* Using padding instead of margin prevents background bleed-through */

    padding:18px 0;
    color:#fff;

}

.bs-footer-bottom p{

    margin:0;

    color:#fff;

    font-size:14px;

}


.bs-footer .container-fluid{
    padding-left:0;
    padding-right:0;
}

.bs-footer .col-xl-7{
    padding-left:80px;
}

.bs-footer .col-xl-5{
    padding-left:100px;
}

.top-bschools-section {
    background: #f4f4f4;
}

/* HERO */
.bschool-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.bschool-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    left: 0;
    bottom: 60px;
    width: 100%;
}

.hero-content h5 {
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-content h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
}

.hero-content h1 span {
    font-weight: 300;
}

/* CONTENT */
.bschool-content {
    padding: 25px 0 50px 0;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ranking-tabs {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.ranking-tabs a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding-bottom: 10px;
}

.ranking-tabs a.active {
    color: #0718b7;
    border-bottom: 2px solid #0718b7;
}

.search-box {
    position: relative;
    width: 260px;
}

.search-box input {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 30px;
    background: #dfe4ed;
    padding: 0 50px 0 20px;
    outline: none;
}

.search-box i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0718b7;
}

.divider {
    height: 1px;
    background: #d4d4d4;
    margin: 30px 0;
}

/* FILTER */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.left-filter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-btn {
    background: #ff5b2d;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.selected-filter {
    color: #0718b7;
}

.reset-btn {
    color: #777;
    font-size: 12px;
    text-decoration: none;
}

.college-image img {
    width: 290px;
    border-radius: 18px;
    height: 300px;
}

.college-info h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.rating {
    background: #3ecf68;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
}

.reviews {
    color: #777;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.detail {
    font-size: 14px;
    color: #222;
}

.detail strong {
    display: block;
    margin-bottom: 5px;
}

.detail span {
    display: block;
    color: #555;
}

.detail i {
    color: #0718b7;
    margin-right: 8px;
}

/* BUTTONS */
.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-blue,
.btn-orange {
    min-width: 170px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 13px 25px;
    border-radius: 40px;
    font-weight: 600;
}

.btn-blue {
    background: #0718b7;
}

.btn-orange {
    background: #ff5b2d;
}
/* CARD */
.college-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 90px;
    box-shadow: 0 5px 30px rgba(0,0,0,.05);
}

.college-image{
    position:relative;
    flex-shrink:0;
}

.main-image{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:18px;
}

.college-logo{
    position:absolute;
    top:12px;
    left:12px;
    width:55px;
    height:55px;
    background:#fff;
    border-radius:10px;
    padding:5px;
}

.college-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.college-content{
    flex:1;
    display:flex;
    justify-content:space-between;
    gap:40px;
    padding-bottom: 45px;
}

.college-left{
    width:260px;
    padding-top: 15px;  
}

.college-left h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.rating-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom: 30px;
    margin-top: 25px;
}

.rating{
    background:#2dbd63;
    color:#fff;
    font-size:12px;
    padding:3px 10px;
    border-radius:4px;
}

.reviews{
    color:#777;
    font-size:13px;
}

.college-meta{
    list-style:none;
    padding:0;
    margin:0;
}

.college-meta li{
    margin-bottom:14px;
    font-size:14px;
}

.college-meta i{
    color:#0816b5;
    width:18px;
    margin-right:8px;
}

.college-right{
    flex:1;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px 35px;
    padding-top: 70px;
}

.stat-item h6{
    font-size:14px;
    font-weight:700;
    margin-bottom:6px;
}

.stat-item h6 i{
color:#0816b5;
margin-right:6px;
}

.stat-item p{
    margin:0;
    font-size:14px;
    color:#333;
}

.action-buttons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.btn-blue,
.btn-orange{
    min-width:150px;
    text-align:center;
    padding:12px 25px;
    border-radius:30px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.btn-blue{
    background:#0816b5;
}

.btn-orange{
    background:#ff5b2d;
}

@media(max-width:576px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .action-buttons{
        flex-direction:column;
    }

}
.filter-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.4);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:9998;
}

.filter-overlay.show{
opacity:1;
visibility:visible;
}

.filter-sidebar{
position:fixed;
top:0;
left:-340px;
width:320px;
height:100vh;
background:#fff;
overflow-y:auto;
transition:.35s;
z-index:9999;
box-shadow:0 0 20px rgba(0,0,0,.15);
}

.filter-sidebar.show{
left:0;
}

.drawer-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
border-bottom:1px solid #eee;
}

.drawer-header span{
font-size:20px;
font-weight:600;
}

.drawer-header button{
border:none;
background:none;
font-size:22px;
}

.filter-body{
padding:20px;
}

.filter-group{
margin-bottom:25px;
padding-bottom:20px;
border-bottom:1px solid #eee;
}

.filter-group h6{
font-size:13px;
font-weight:700;
margin-bottom:12px;
}

.search-filter{
position:relative;
margin-bottom:10px;
}

.search-filter input{
width:100%;
height:38px;
border:none;
background:#e7ebf2;
border-radius:20px;
padding-left:35px;
}

.search-filter i{
position:absolute;
left:12px;
top:50%;
transform:translateY(-50%);
color:#0718b7;
}

.filter-chip{
display:inline-block;
border:1px solid #0718b7;
color:#0718b7;
padding:5px 12px;
border-radius:20px;
font-size:12px;
margin:4px;
}

.filter-chip.active{
background:#0718b7;
color:#fff;
}

.range-slider{
width:100%;
}

.fee-boxes{
display:flex;
gap:10px;
margin-top:15px;
}

.fee-box{
flex:1;
border:1px solid #ddd;
text-align:center;
padding:10px;
border-radius:6px;
}

.rating-stars{
color:#ff5b2d;
font-size:20px;
}

.chip-group{
display:flex;
flex-wrap:wrap;
}

.mba-register-page{
    background:#000;
}

.register-left{
    position:relative;
    overflow:hidden;
}

.register-left img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.left-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to top,
        rgba(0,0,0,.95) 10%,
        rgba(0,0,0,.2) 50%,
        rgba(0,0,0,.4) 100%);
}

.left-content-signup{
    position:absolute;
    bottom:60px;
    left:60px;
    max-width:500px;
    z-index:2;
    color:#fff;
}

.left-content-signup h2{
    font-size:36px;
    line-height:1.2;
    font-weight:600;
    margin-bottom:15px;
}

.left-content-signup p{
    color:#d5d5d5;
    font-size:15px;
    line-height:1.7;
}

.register-right{
    background:#000;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:60px;
    margin-top: 70px;
}

.register-right form{
    width:100%;
    max-width:700px;
    margin:auto;
}

.register-right label{
    color:#fff;
    font-size:14px;
    font-weight:500;
    margin-bottom:5px;
}

.register-right small{
    display:block;
    color:#8c8c8c;
    margin-top:6px;
    font-size:11px;
}

.register-right .form-control,
.register-right .form-select{
    height:38px;
    border:none;
    border-radius:6px;
    background:#f5f5f5;
    font-size:14px;
}

.register-right .form-control:focus,
.register-right .form-select:focus{
    box-shadow:none;
    border-color:#ff5a1f;
}

.form-check-label{
    color:#9e9e9e;
    font-size:13px;
}

.form-check-input{
    background-color:#111;
    border:1px solid #555;
}

.register-btn{
    width:100%;
    border:none;
    border-radius:6px;
    height:58px;
    background:#ff5a1f;
    color:#fff;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.register-btn:hover{
    background:#e94d14;
}

.login-link{
    text-align:center;
    margin-top:20px;
    color:#999;
    font-size:14px;
}

.login-link a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:991px){

    .register-left{
        height:450px;
    }

    .register-right{
        padding:30px 20px;
    }

    .left-content{
        left:30px;
        right:30px;
        bottom:30px;
    }

    .left-content h2{
        font-size:30px;
    }
}

.bs-newsletter-form{
    background: #11458f;
    width: 280px;
    border-radius: 30px;
}
/* Banner */

.college-banner img{
    width:100%;
    height:340px;
    object-fit:cover;
}

/* Header */

.college-header{
    background:#000;
    color:#fff;
    padding:25px 40px;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.college-info h1{
    font-size:42px;
    margin:10px 0;
}

.college-info ul{
    display:flex;
    gap:20px;
    list-style:none;
    padding:0;
    margin:0;
    color:#c9c9c9;
    font-size:13px;
}

.rating{
    color:#ffbf00;
}

.shortlist-btn,
.apply-btn{
    display:block;
    text-decoration:none;
    padding:8px 18px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.shortlist-btn{
    background:#fff;
    color:#000;
}

.apply-btn{
    background:#ff5a1f;
    color:#fff;
}

/* Layout */

.college-layout{
    display:grid;
    grid-template-columns:220px 1fr 260px;
    gap:20px;
}

/* Fixed Sidebar */

.left-sidebar{
    background:#000;
    position:sticky;
    top:108px; /* 88px Header + 20px Spacing */
    height:fit-content;
    border-radius: 10px;
}

.left-sidebar ul{
    list-style:none;
    margin:0;
    padding:10px 0;
}

.left-sidebar li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.left-sidebar li{
    color:#fff;
    padding:14px 25px;
    cursor:pointer;
    font-size:14px;
}

.left-sidebar li.active{
    background:#ff5a1f; /* Highlight with theme orange */
    font-weight: 600;
}

.left-sidebar li:hover:not(.active) {
    background: #222;
}

/* Main */

.white-card{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
}

.card-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.report-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.report-box{
    border:1px solid #e8e8e8;
    padding:15px;
}

.report-box i{
    margin-bottom:10px;
}

.overview-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-top:20px;
}

.stat-box{
    background:#122231;
    color:#fff;
    text-align:center;
    padding:12px;
}

.review-box{
    background:#f7f7f7;
    padding:15px;
}

/* Right */

.right-card,
.salary-card,
.college-thumb{
    background:#fff;
    margin-bottom:15px;
    padding:15px;
}

.salary-card{
    text-align:center;
}

.salary-card h2{
    color:#ff5a1f;
}

.college-thumb img{
    width:100%;
}

/* Responsive */

@media(max-width:991px){

    .college-layout{
        grid-template-columns:1fr;
    }

    .left-sidebar{
        position:relative;
        top:0;
    }

}
/*===========================
      OTP BOX
===========================*/

.otp-verification-box{

    width:420px;

    margin:auto;

    background:#fff;

    border-radius:8px;

    overflow:hidden;

    box-shadow:0 15px 50px rgba(0,0,0,.12);

}

.otp-header{

    background:#edf2fd;

    padding:22px;

    display:flex;

    align-items:center;

    gap:15px;

}

.otp-header i{

    width:42px;

    height:42px;

    background:#151b2c;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

}

.otp-header h4{

    margin:0;

    font-size:26px;

    font-weight:600;

}

.otp-body{

    padding:35px;

}

.otp-body p{

    color:#666;

    line-height:28px;

    margin-bottom:35px;

}

.otp-input-group{

    display:flex;

    justify-content:space-between;

    gap:10px;

    margin-bottom:35px;

}

.otp-input-group input{

    width:52px;

    height:58px;

    text-align:center;

    font-size:28px;

    border:1px solid #ddd;

    border-radius:6px;

}

.otp-input-group input:focus{

    outline:none;

    border-color:#ff5a1f;

    box-shadow:none;

}

.verify-btn{

    width:100%;

    background:#ff5a1f;

    color:#fff;

    border:none;

    height:58px;

    border-radius:5px;

    font-size:20px;

    font-weight:600;

}

.verify-btn:hover{

    background:#ef4b10;

}

.otp-footer{

    text-align:center;

    margin-top:35px;

    font-size:15px;

    color:#666;

}

.otp-footer a{

    color:#d18c00;

    font-weight:600;

    text-decoration:none;

}

.otp-change{

    margin-top:18px;

    text-align:center;

    font-size:13px;

    color:#777;

}

.otp-change a{

    color:#555;

}

.otp-bottom{

    background:#edf2fd;

    padding:16px;

    text-align:center;

    color:#666;

    font-size:14px;

}

.otp-bottom i{

    margin-right:8px;

}


/* hidden */

.d-none{

    display:none;

}

/*===================================
        SUCCESS SCREEN
===================================*/

.account-success-box{

    max-width:650px;

    margin:auto;

    padding:80px 20px;

    color:#fff;

}

.success-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#eaf2ff;

    color:#3568d4;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:30px;

}

.success-badge i{

    font-size:13px;

}

.account-success-box h1{

    font-size:82px;

    line-height:0.95;

    font-weight:300;

    margin-bottom:35px;

}

.account-success-box p{

    max-width:520px;

    color:#d0d0d0;

    font-size:20px;

    line-height:38px;

}

.success-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

    margin-bottom:70px;

}

.complete-profile-btn{

    background:#ff5a1f;

    color:#fff;

    text-decoration:none;

    padding:18px 35px;

    font-weight:600;

    min-width:220px;

    text-align:center;

    transition:.3s;

}

.complete-profile-btn:hover{

    background:#e74c12;

    color:#fff;

}

.explore-school-btn{

    border:1px solid #777;

    color:#fff;

    text-decoration:none;

    padding:18px 35px;

    min-width:220px;

    text-align:center;

}

.explore-school-btn:hover{

    background:#fff;

    color:#000;

}

.success-features{

    display:flex;

    gap:40px;

    color:#999;

    font-size:15px;

}

.success-features span{

    display:flex;

    align-items:center;

    gap:8px;

}

.success-features i{

    color:#bbb;

}

@media(max-width:767px){

.account-success-box{

    padding:40px 20px;

}

.account-success-box h1{

    font-size:52px;

}

.account-success-box p{

    font-size:16px;

    line-height:30px;

}

.success-buttons{

    flex-direction:column;

}

.success-features{

    flex-direction:column;

    gap:15px;

}

}

.contact-page{
    background:#fff;
    position:relative;
    padding-bottom:80px;
    padding-top: 88px;
}

/* Map */
.contact-map{
    height:420px;
    overflow:hidden;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(100%);
}

/* Content Wrapper */
.contact-wrapper{
    margin-top:-120px;
    position:relative;
    z-index:2;
}

/* Left Content */
.contact-info{
    padding:40px 20px;
}

.contact-info h2{
    font-size:58px;
    font-weight:700;
    color:#333;
    margin-bottom:0px;
    letter-spacing:1px;
}

.contact-info p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:0px;
}

.contact-details h6{
    font-size:16px;
    font-weight:700;
    color:#333;
    margin-bottom:8px;
}
.contact-details{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Form Box */
.contact-form-box{
    background:#fff;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    position:relative;
}

.form-top-border{
    height:12px;
    margin:-35px -35px 30px;
    background:repeating-linear-gradient(
        45deg,
        #ef4444 0,
        #ef4444 12px,
        #ffffff 12px,
        #ffffff 24px,
        #60a5fa 24px,
        #60a5fa 36px,
        #ffffff 36px,
        #ffffff 48px
    );
}

.contact-form-box h4{
    font-size:28px;
    font-weight:600;
    margin-bottom:25px;
    color:#333;
}

.contact-form-box .form-control{
    height:55px;
    border:1px solid #eee;
    border-radius:0;
    box-shadow:none;
    background:#fafafa;
}

.contact-form-box textarea.form-control{
    height:auto;
    resize:none;
}

.contact-form-box .form-control:focus{
    border-color:#ff3d3d;
    box-shadow:none;
}

.btn-submit{
    width:100%;
    height:55px;
    border:none;
    background:#ff3d3d;
    color:#fff;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

.btn-submit:hover{
    background:#e42c2c;
}

/* Responsive */
@media(max-width:991px){

    .contact-wrapper{
        margin-top:40px;
    }

    .contact-form-box{
        margin-top:30px;
    }

    .contact-info h2{
        font-size:42px;
    }

    .contact-map{
        height:300px;
    }
}

.apply-now-section{
    padding:100px 0;
    background:#f8f9fb;
}

.section-heading{
    max-width:700px;
    margin:0 auto 60px;
}

.section-heading span{
    color:#ff3d3d;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.section-heading h2{
    font-size:55px;
    font-weight:800;
    color:#222;
    margin:10px 0 20px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.apply-form-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.apply-form-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:#ff3d3d;
}

.apply-form-card label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#333;
}

.apply-form-card .form-control{
    height:58px;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:0 18px;
    box-shadow:none;
    background:#fafafa;
}

.apply-form-card textarea.form-control{
    height:auto;
    padding:15px 18px;
}

.apply-form-card .form-control:focus{
    border-color:#ff3d3d;
    box-shadow:none;
    background:#fff;
}

.apply-btn{
    background:#ff3d3d;
    color:#fff;
    border:none;
    padding:16px 45px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.apply-btn:hover{
    background:#e62d2d;
    transform:translateY(-2px);
}

@media(max-width:991px){

    .apply-now-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:40px;
    }

    .apply-form-card{
        padding:30px;
    }

}
.course-type-section{
    padding:100px 0;
    background:#f8f9fb;
}

.section-title{
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    color:#ff3d3d;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:52px;
    font-weight:800;
    color:#222;
    margin:10px 0 20px;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

.course-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.course-card:hover{
    transform:translateY(-8px);
}

.course-image{
    height:260px;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.course-card:hover img{
    transform:scale(1.08);
}

.course-content{
    padding:30px;
}

.course-tag{
    display:inline-block;
    background:#ff3d3d;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.course-content h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.course-content ul{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.course-content ul li{
    margin-bottom:12px;
    color:#555;
}

.course-content ul li i{
    color:#ff3d3d;
    width:25px;
}

.course-content p{
    color:#666;
    line-height:1.8;
}

.course-btns{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.btn-red{
    background:#ff3d3d;
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
}

.btn-outline-red{
    border:2px solid #ff3d3d;
    color:#ff3d3d;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
}

.btn-red:hover,
.btn-outline-red:hover{
    opacity:.9;
}
.course-heading-wrap{
    max-width:700px;
    margin:0 auto 60px;
}

.course-heading-wrap span{
    color:#ff3d3d;
    font-weight:600;
    letter-spacing:2px;
}

.course-heading-wrap h2{
    font-size:52px;
    font-weight:800;
    color:#ff3d3d;
    margin:10px 0 20px;
}

.course-heading-wrap p{
    color:#666;
    line-height:1.8;
}

.mentor-section{
    padding:100px 0;
    background:#f8f9fb;
}

.mentor-page-heading{
    max-width:750px;
    margin:0 auto 60px;
}

.mentor-page-heading span{
    color:#ff3d3d;
    font-weight:600;
    letter-spacing:2px;
}

.mentor-page-heading h2{
    font-size:52px;
    font-weight:800;
    color:#222;
    margin:15px 0;
}

.mentor-page-heading p{
    color:#666;
    line-height:1.8;
}

.mentor-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.mentor-card:hover{
    transform:translateY(-8px);
}

.mentor-image{
    height:320px;
}

.mentor-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mentor-content{
    padding:30px;
}

.mentor-content h4{
    font-weight:700;
    margin-bottom:8px;
}

.mentor-content span{
    color:#ff3d3d;
    font-weight:600;
}

.mentor-content p{
    margin:20px 0;
    color:#666;
}

.mentor-btn{
    display:inline-block;
    padding:12px 24px;
    background:#ff3d3d;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

.mentor-benefits{
    padding:80px 0;
    background:#fff;
}

.benefit-box{
    background:#f8f9fb;
    padding:40px 20px;
    border-radius:15px;
    text-align:center;
}

.benefit-box i{
    font-size:40px;
    color:#ff3d3d;
    margin-bottom:20px;
}

.mentor-process{
    padding:100px 0;
    background:#f8f9fb;
}

.step-box{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
}

.step-box span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ff3d3d;
    color:#fff;
    border-radius:50%;
    margin:0 auto 20px;
    font-size:22px;
    font-weight:700;
}

.mentor-cta{
    padding:100px 0;
    background:#ff3d3d;
    color:#fff;
}

.mentor-cta h2{
    font-size:48px;
    font-weight:800;
}

.mentor-cta p{
    max-width:700px;
    margin:20px auto 30px;
}

.apply-now-btn{
    display:inline-block;
    background:#fff;
    color:#ff3d3d;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.exam-section{
    padding:100px 0;
    background:#f8f9fb;
}

.exam-heading{
    max-width:750px;
    margin:0 auto 60px;
}

.exam-heading span{
    color:#ff3d3d;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.exam-heading h2{
    font-size:52px;
    font-weight:800;
    margin:15px 0;
    color:#222;
}

.exam-heading p{
    color:#666;
    line-height:1.8;
}

.exam-card-page{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
}

.exam-card-page::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#ff3d3d;
    transform:scaleX(0);
    transition:.4s;
}

.exam-card-page:hover::before{
    transform:scaleX(1);
}

.exam-card-page:hover{
    transform:translateY(-8px);
}

.exam-icon{
    width:80px;
    height:80px;
    background:#fff2f2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.exam-icon i{
    color:#ff3d3d;
    font-size:30px;
}

.exam-card-page h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.exam-card-page p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.exam-card-page a{
    color:#ff3d3d;
    font-weight:600;
    text-decoration:none;
}

.exam-card-page a:hover{
    color:#222;
}