@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* HEADER */

.main-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.navbar{
    padding:10px 0;
}

.logo img{
    height:75px;
}

.navbar-nav .nav-link{
    color:#0b2f4f !important;
    font-size:15px;
    font-weight:500;
    margin:0 8px;
    transition:0.3s;
    position:relative;
}

.navbar-nav .nav-link:hover{
    color:#b32025 !important;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:#b32025;
    transition:0.3s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

/* DROPDOWN */

.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    padding:10px;
}

.dropdown-item{
    padding:10px 15px;
    border-radius:8px;
    transition:0.3s;
}

.dropdown-item:hover{
    background:#b32025;
    color:#fff;
}

/* BUTTON */

.consult-btn{
    background:linear-gradient(45deg,#b32025,#0b2f4f);
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    animation:pulse 2s infinite;
    transition:0.3s;
}

.consult-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(179,32,37,0.5);
    }

    70%{
        box-shadow:0 0 0 15px rgba(179,32,37,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(179,32,37,0);
    }
}

/* SOCIAL STRIP */

.social-strip{
    position:fixed;
    top:50%;
    right:0;
    transform:translateY(-50%);
    z-index:9999;
}

.social-strip a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:0.3s;
}

.social-strip a:hover{
    width:60px;
}

.facebook{
    background:#1877f2;
}

.instagram{
    background:#e1306c;
}

.google{
    background:#db4437;
}

.call{
    background:#0b8457;
}

.whatsapp{
    background:#25d366;
}

/* MOBILE */

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:20px;
        margin-top:15px;
        border-radius:10px;
    }

    .logo img{
        height:65px;
    }

    .consult-btn{
        margin-top:10px;
        display:inline-block;
    }

}
/* =========================
FOOTER
========================= */

.main-footer{
    background:#0b2f4f;
    color:#ffffff;
    padding-top:70px;
    position:relative;
}

.footer-box h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:25px;
    position:relative;
}

.footer-box h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:60px;
    height:3px;
    background:#b32025;
}

.footer-box p{
    color:#d7d7d7;
    line-height:28px;
    font-size:15px;
}

/* QUICK LINKS */

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#d7d7d7;
    transition:0.3s;
    font-size:15px;
}

.footer-links li a i{
    color:#b32025;
    margin-right:8px;
}

.footer-links li a:hover{
    color:#ffffff;
    padding-left:5px;
}

/* CONTACT */

.footer-contact p{
    margin-bottom:15px;
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.footer-contact i{
    color:#b32025;
    font-size:18px;
    margin-top:4px;
}

/* SOCIAL */

.footer-social{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ffffff15;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
    font-size:18px;
}

.footer-social a:hover{
    background:#b32025;
    transform:translateY(-5px);
}

/* MAP */

.footer-map{
    overflow:hidden;
    border-radius:15px;
}

.footer-map iframe{
    border-radius:15px;
}

/* COPYRIGHT */

.footer-bottom{
    margin-top:50px;
    padding:18px 0;
    background:#07233b;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#d7d7d7;
    font-size:14px;
}

/* MOBILE */

@media(max-width:991px){

    .main-footer{
        padding-top:50px;
    }

    .footer-box{
        margin-bottom:20px;
    }

    .footer-box h4{
        font-size:20px;
    }

}

@media(max-width:576px){

    .footer-bottom p{
        font-size:13px;
        line-height:24px;
    }

    .footer-social{
        flex-wrap:wrap;
    }

}
/* =========================
HERO SLIDER
========================= */

/* =========================
SLIDER CSS
========================= */

.hero-slider{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .carousel-item{
    position: relative;
    height: 650px;
}

.hero-slider .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay optional */

.hero-slider::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.15);
    z-index:1;
}

.hero-slider .carousel-caption{
    z-index:2;
}

/* Arrow */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{
    width:60px;
    height:60px;
    background:rgba(0,0,0,0.45);
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

.hero-slider .carousel-control-prev{
    left:20px;
}

.hero-slider .carousel-control-next{
    right:20px;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .hero-slider .carousel-item{
        height:500px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:576px){

    .hero-slider .carousel-item{
        height:280px;
    }

    .hero-slider .carousel-item img{
        object-fit:cover;
        object-position:center;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next{
        width:40px;
        height:40px;
    }

}

/* =========================
SECTION TITLE
========================= */

.section-title span{
    color:#b32025;
    font-weight:600;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

/* =========================
ABOUT
========================= */

.about-section{
    padding:90px 0;
}

.about-image img{
    border-radius:20px;
}

.theme-btn{
    background:#b32025;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    display:inline-block;
    margin-top:15px;
    transition:0.3s;
}

.theme-btn:hover{
    background:#0b2f4f;
    color:#fff;
}

/* =========================
COURSES
========================= */

.courses-section{
    padding:90px 0;
    background:#f7f9fc;
}

.course-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.course-box:hover{
    transform:translateY(-10px);
}

.course-icon{
    width:80px;
    height:80px;
    background:#b32025;
    color:#fff;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

/* =========================
COUNTER
========================= */

.counter-section{
    background:#0b2f4f;
    padding:80px 0;
}

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box h2{
    font-size:50px;
    font-weight:700;
    color:#ffcc00;
}

.counter-box p{
    font-size:18px;
}

/* =========================
TESTIMONIAL
========================= */

.testimonial-section{
    padding:90px 0;
}

.testimonial-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    height:100%;
}

.stars{
    color:#ffb400;
    font-size:22px;
    margin-bottom:15px;
}

/* =========================
CONSULT STRIP
========================= */

.consult-strip{
    background:linear-gradient(45deg,#b32025,#0b2f4f);
    padding:50px 0;
    color:#fff;
}

.consult-strip h2{
    font-size:38px;
    font-weight:700;
}

.consult-strip-btn{
    background:#fff;
    color:#b32025;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.consult-strip-btn:hover{
    color:#0b2f4f;
}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .slider-img{
        height:70vh;
    }

    .carousel-caption h1{
        font-size:36px;
    }

    .section-title h2{
        font-size:32px;
    }

    .consult-strip{
        text-align:center;
    }

    .consult-strip-btn{
        margin-top:20px;
    }

}

@media(max-width:576px){

    .slider-img{
        height:60vh;
    }

    .carousel-caption{
        bottom:40%;
    }

    .carousel-caption h1{
        font-size:28px;
    }

    .carousel-caption p{
        font-size:14px;
    }

    .section-title h2{
        font-size:26px;
    }

    .counter-box h2{
        font-size:38px;
    }

    .consult-strip h2{
        font-size:28px;
    }

}

/* =========================
PAGE BANNER
========================= */

.page-banner{
    background:url('../images/about-banner.jpg') center center/cover no-repeat;
    padding:140px 0;
    position:relative;
    text-align:center;
    color:#fff;
}

.banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.banner-content p{
    font-size:18px;
}

/* =========================
ABOUT PAGE
========================= */

.about-page-section{
    padding:90px 0;
}

.about-page-image img{
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

/* =========================
WHY CHOOSE
========================= */

.why-choose-section{
    padding:90px 0;
    background:#f7f9fc;
}

.choose-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.choose-box:hover{
    transform:translateY(-10px);
}

.choose-icon{
    width:80px;
    height:80px;
    background:#b32025;
    color:#fff;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.choose-box h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:12px;
}

.choose-box p{
    color:#666;
}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .banner-content h1{
        font-size:42px;
    }

}

@media(max-width:576px){

    .page-banner{
        padding:100px 0;
    }

    .banner-content h1{
        font-size:32px;
    }

    .banner-content p{
        font-size:15px;
    }

}
/* =========================
COURSES PAGE
========================= */

.courses-banner{
    background:url('../images/course-banner.jpg') center center/cover no-repeat;
}

.all-courses-section{
    padding:90px 0;
    background:#ffffff;
}

.course-page-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:0.4s;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
    border:1px solid #f1f1f1;
}

.course-page-box:hover{
    transform:translateY(-10px);
}

.course-page-icon{
    width:90px;
    height:90px;
    background:#b32025;
    color:#fff;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin-bottom:25px;
}

.course-page-box h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#0b2f4f;
}

.course-page-box p{
    color:#666;
    line-height:28px;
    margin-bottom:25px;
}

.course-btn{
    background:#0b2f4f;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    display:inline-block;
    transition:0.3s;
    font-weight:600;
}

.course-btn:hover{
    background:#b32025;
    color:#fff;
}

/* =========================
BENEFITS
========================= */

.why-course-section{
    padding:90px 0;
    background:#f7f9fc;
}

.benefit-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.4s;
}

.benefit-box:hover{
    transform:translateY(-8px);
}

.benefit-box i{
    font-size:45px;
    color:#b32025;
    margin-bottom:20px;
}

.benefit-box h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:12px;
}

.benefit-box p{
    color:#666;
}

/* =========================
MOBILE
========================= */

@media(max-width:576px){

    .course-page-box{
        padding:30px 20px;
    }

    .course-page-box h3{
        font-size:24px;
    }

    .benefit-box h4{
        font-size:20px;
    }

}
/* =========================
SINGLE COURSE PAGE
========================= */

.single-course-banner{
    background:url('../images/bca-banner.jpg') center center/cover no-repeat;
}

.single-course-section{
    padding:90px 0;
}

.single-course-image img{
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.course-info-list{
    padding:0;
    margin:25px 0;
    list-style:none;
}

.course-info-list li{
    margin-bottom:15px;
    font-size:16px;
    color:#444;
}

.course-info-list li i{
    color:#b32025;
    margin-right:10px;
}

/* =========================
FEATURES
========================= */

.course-features-section{
    padding:90px 0;
    background:#f7f9fc;
}

.feature-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:20px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box i{
    font-size:45px;
    color:#b32025;
    margin-bottom:20px;
}

.feature-box h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
}

/* =========================
CAREER
========================= */

.career-section{
    padding:90px 0;
}

.career-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:0.4s;
}

.career-box:hover{
    transform:translateY(-8px);
}

.career-box i{
    font-size:42px;
    color:#0b2f4f;
    margin-bottom:20px;
}

.career-box h4{
    font-size:24px;
    font-weight:600;
}

/* =========================
MOBILE
========================= */

@media(max-width:576px){

    .feature-box,
    .career-box{
        padding:30px 20px;
    }

    .feature-box h4,
    .career-box h4{
        font-size:20px;
    }

}
/* =========================
BBA BANNER
========================= */

.bba-banner{
    background:url('../images/bba-banner.jpg') center center/cover no-repeat;
}
/* =========================
BCOM BANNER
========================= */

.bcom-banner{
    background:url('../images/bcom-banner.jpg') center center/cover no-repeat;
}
/* =========================
MCA BANNER
========================= */

.mca-banner{
    background:url('../images/mca-banner.jpg') center center/cover no-repeat;
}
/* =========================
MCOM BANNER
========================= */

.mcom-banner{
    background:url('../images/mcom-banner.jpg') center center/cover no-repeat;
}
/* =========================
MSC BANNER
========================= */

.msc-banner{
    background:url('../images/msc-banner.jpg') center center/cover no-repeat;
}
/* =========================
MA BANNER
========================= */

.ma-banner{
    background:url('../images/ma-banner.jpg') center center/cover no-repeat;
}
/* =========================
BLIS BANNER
========================= */

.blis-banner{
    background:url('../images/blis-banner.jpg') center center/cover no-repeat;
}
/* =========================
MLIS BANNER
========================= */

.mlis-banner{
    background:url('../images/mlis-banner.jpg') center center/cover no-repeat;
}
/* =========================
CONTACT PAGE
========================= */

.contact-banner{
    background:url('../images/contact-banner.jpg') center center/cover no-repeat;
}

.contact-page-section{
    padding:90px 0;
}

.contact-info-box,
.contact-form-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
    height:100%;
}

.contact-info-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.contact-icon{
    width:60px;
    height:60px;
    background:#b32025;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-info-item h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:5px;
}

.contact-social{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.contact-social a{
    width:45px;
    height:45px;
    background:#0b2f4f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.contact-social a:hover{
    background:#b32025;
}

.contact-form-box .form-control,
.contact-form-box .form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
}

.contact-form-box textarea.form-control{
    height:auto;
}

.contact-btn{
    background:#b32025;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    background:#0b2f4f;
}

/* MOBILE */

@media(max-width:576px){

    .contact-info-box,
    .contact-form-box{
        padding:30px 20px;
    }

    .contact-info-item{
        gap:15px;
    }

    .contact-icon{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .contact-info-item h4{
        font-size:18px;
    }

}

/* =========================
CERTIFICATE PAGE
========================= */

.certificate-banner{
    background:url('../images/certificate-banner.jpg') center center/cover no-repeat;
}

.certificate-section{
    padding:90px 0;
}

.certificate-list{
    padding:0;
    margin-top:25px;
    list-style:none;
}

.certificate-list li{
    margin-bottom:15px;
    font-size:16px;
    color:#444;
}

.certificate-list li i{
    color:#b32025;
    margin-right:10px;
}

.certificate-form-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
}

.certificate-form-box .form-control,
.certificate-form-box .form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
}

.certificate-btn{
    background:#b32025;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.certificate-btn:hover{
    background:#0b2f4f;
}

/* FEATURES */

.certificate-feature-section{
    padding:90px 0;
    background:#f7f9fc;
}

.certificate-feature-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.certificate-feature-box:hover{
    transform:translateY(-10px);
}

.certificate-feature-box i{
    font-size:50px;
    color:#b32025;
    margin-bottom:20px;
}

.certificate-feature-box h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
}

/* MOBILE */

@media(max-width:576px){

    .certificate-form-box{
        padding:30px 20px;
    }

    .certificate-feature-box{
        padding:30px 20px;
    }

    .certificate-feature-box h4{
        font-size:20px;
    }

}
/* =========================
CERTIFICATE GALLERY
========================= */

.certificate-gallery-section{
    padding:90px 0;
}

.certificate-gallery-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.certificate-gallery-box:hover{
    transform:translateY(-10px);
}

.certificate-gallery-box img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.certificate-gallery-content{
    padding:20px;
    text-align:center;
}

.certificate-gallery-content h4{
    font-size:22px;
    font-weight:600;
    color:#0b2f4f;
    margin:0;
}

/* MOBILE */

@media(max-width:576px){

    .certificate-gallery-box img{
        height:250px;
    }

    .certificate-gallery-content h4{
        font-size:18px;
    }

}
/* =========================
PDF CERTIFICATE BOX
========================= */

.certificate-gallery-box{
    background:#fff;
    border-radius:20px;
    padding:50px 30px;
    text-align:center;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.certificate-gallery-box:hover{
    transform:translateY(-10px);
}

.pdf-icon-box{
    width:110px;
    height:110px;
    background:#ffe5e5;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.pdf-icon-box i{
    font-size:60px;
    color:#d60000;
}

.certificate-gallery-content h4{
    font-size:24px;
    font-weight:600;
    color:#0b2f4f;
    margin-bottom:20px;
}

.certificate-btn{
    display:inline-block;
    background:#b32025;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s;
    font-weight:600;
}

.certificate-btn:hover{
    background:#0b2f4f;
    color:#fff;
}

/* MOBILE */

@media(max-width:576px){

    .certificate-gallery-box{
        padding:35px 20px;
    }

    .pdf-icon-box{
        width:90px;
        height:90px;
    }

    .pdf-icon-box i{
        font-size:45px;
    }

    .certificate-gallery-content h4{
        font-size:20px;
    }

}

/* =========================
ABOUT PAGE CONTENT
========================= */

.about-content-section{
    padding:90px 0;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.about-content-section p{
    font-size:17px;
    line-height:32px;
    color:#555;
    margin-bottom:18px;
}

/* =========================
VISION & MISSION
========================= */

.vision-mission-section{
    padding-bottom:90px;
}

.vision-box{
    background:#fff;
    padding:45px 35px;
    border-radius:20px;
    height:100%;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
    transition:0.4s;
}

.vision-box:hover{
    transform:translateY(-10px);
}

.vision-icon{
    width:90px;
    height:90px;
    background:#f5f7ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.vision-icon i{
    font-size:38px;
    color:#b32025;
}

.vision-box h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    color:#0b2f4f;
}

.vision-box p{
    font-size:17px;
    line-height:30px;
    color:#555;
}

.mission-list{
    padding:0;
    margin:0;
    list-style:none;
}

.mission-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:17px;
    line-height:28px;
    color:#555;
}

.mission-list li i{
    position:absolute;
    left:0;
    top:5px;
    color:#b32025;
}

/* MOBILE */

@media(max-width:576px){

    .about-content-section{
        padding:70px 0;
    }

    .vision-box{
        padding:35px 25px;
    }

    .vision-box h3{
        font-size:26px;
    }

    .about-content-section p,
    .mission-list li{
        font-size:15px;
        line-height:28px;
    }

}
/* =========================
GALLERY PAGE
========================= */

.gallery-section{
    padding:90px 0;
}

.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.gallery-box img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-box:hover img{
    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:576px){

    .gallery-section{
        padding:70px 0;
    }

    .gallery-box img{
        height:250px;
    }

}

/* =========================
MBA PAGE CSS
========================= */

.course-details-section{
    padding:90px 0;
}

.course-details-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.course-details-content p{
    font-size:17px;
    line-height:32px;
    color:#555;
    margin-bottom:18px;
}

/* HIGHLIGHTS */

.course-highlights{
    margin-top:30px;
}

.highlight-box{
    background:#f5f7ff;
    padding:18px 20px;
    border-radius:12px;
    text-align:center;
    font-weight:600;
    color:#0b2f4f;
    transition:0.4s;
    border:1px solid #e9eefc;
}

.highlight-box:hover{
    background:#b32025;
    color:#fff;
    transform:translateY(-5px);
}

/* =========================
COURSE INFO
========================= */

.course-info-section{
    padding-bottom:90px;
}

.course-info-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
    transition:0.4s;
}

.course-info-box:hover{
    transform:translateY(-10px);
}

.course-info-icon{
    width:90px;
    height:90px;
    background:#f5f7ff;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.course-info-icon i{
    font-size:38px;
    color:#b32025;
}

.course-info-box h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#0b2f4f;
}

.course-info-box p{
    font-size:16px;
    color:#555;
    line-height:28px;
}

/* =========================
CAREER SECTION
========================= */

.career-section{
    padding-bottom:90px;
}

.career-box{
    background:#0b2f4f;
    color:#fff;
    padding:25px 20px;
    text-align:center;
    border-radius:15px;
    font-size:18px;
    font-weight:600;
    transition:0.4s;
}

.career-box:hover{
    background:#b32025;
    transform:translateY(-8px);
}

/* =========================
PAGE BANNER
========================= */

.page-banner{
    position:relative;
    overflow:hidden;
}

.page-banner img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.page-banner-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    display:flex;
    align-items:center;
    justify-content:center;
}

.page-banner-content{
    text-align:center;
    color:#fff;
}

.page-banner-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.page-banner-content p{
    font-size:20px;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:576px){

    .course-details-section{
        padding:70px 0;
    }

    .course-info-section,
    .career-section{
        padding-bottom:70px;
    }

    .course-details-content p{
        font-size:15px;
        line-height:28px;
    }

    .page-banner img{
        height:250px;
    }

    .page-banner-content h1{
        font-size:34px;
    }

    .page-banner-content p{
        font-size:16px;
    }

    .course-info-box{
        padding:30px 20px;
    }

    .course-info-box h3{
        font-size:24px;
    }

    .career-box{
        font-size:16px;
    }

}