﻿/*=========================================================
 RS Banaras Law College
 StyleSheet.css
 Version : 1.0
==========================================================*/


/*=========================================================
Google Font
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================================================
Reset
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:#333;

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

a{

    text-decoration:none;

    transition:.3s;

}

img{

    max-width:100%;

    display:block;

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}


/*=========================================================
Theme
==========================================================*/

:root{

    --primary:#0B1F4D;

    --secondary:#D4AF37;

    --light:#F8FAFD;

    --dark:#111827;

    --text:#555;

    --white:#fff;

}


/*=========================================================
Common
==========================================================*/

section{

    padding:90px 0;

}

/*=========================================================
COMMON SECTION SUBTITLE
==========================================================*/



.section-subtitle::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:90px;
    height:4px;

    background:var(--secondary);
    border-radius:10px;
}


.section-title{
    color:var(--primary);
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    margin:0 0 25px;
}

.section-desc{

    color:#666;

    max-width:700px;

    margin:auto;

}


/*=========================================================
Top Bar
==========================================================*/

.top-bar{

    background:var(--primary);

    color:#fff;

    padding:8px 0;

    font-size:14px;

}

.top-bar a{

    color:#fff;

}

.top-bar i{

    color:var(--secondary);

    margin-right:6px;

}
/*=========================================================
TOP BAR LINK HOVER
==========================================================*/

.top-bar .top-link{
    position:relative;
    display:inline-block;
    color:#ffffff;
    font-size:14px;
    font-weight:500;
    padding:4px 0;
    text-decoration:none;
    transition:all .3s ease;
}

.top-bar .top-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:width .3s ease;
}

.top-bar .top-link:hover{
    color:var(--secondary);
    transform:translateY(-1px);
}

.top-bar .top-link:hover::after{
    width:100%;
}
.top-contact span{
    display:inline-flex;
    align-items:center;
    transition:all .3s ease;
}

.top-contact span:hover{
    color:var(--secondary);
    transform:translateY(-1px);
}

.top-contact span:hover i{
    transform:scale(1.15);
}

.top-contact i{
    transition:all .3s ease;
}


/*=========================================================
HEADER
==========================================================*/

.main-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    border-top:1px solid rgba(212,175,55,.35);
    box-shadow:0 5px 22px rgba(11,31,77,.08);
}

.main-header .navbar{
    width:100%;
    min-height:108px;
    padding:10px 0;
    display:flex;
    align-items:center;
}

/* Logo container */
.main-header .navbar-brand{
    flex:0 0 285px;
    width:285px;
    padding:0;
    margin:0 38px 0 0;
    display:flex;
    align-items:center;
}

/* Logo image */
.main-header .logo{
    display:block;
    width:100%;
    max-width:285px;
    height:auto;
    object-fit:contain;
}

/* Menu alignment */
.main-header .navbar-collapse{
    align-items:center;
}

.main-header .navbar-nav{
    align-items:center;
    gap:2px;
}

/* Menu text */
.main-header .navbar-nav .nav-link{
    position:relative;
    color:#252525;
    font-size:17px;
    font-weight:600;
    line-height:1.3;
    padding:15px 12px;
    white-space:nowrap;
}

/* Menu underline */
.main-header .navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:12px;
    right:12px;
    bottom:8px;
    height:2px;
    background:var(--secondary);
    transform:scaleX(0);
    transition:transform .3s ease;
}

.main-header .navbar-nav .nav-link:hover{
    color:var(--primary);
}

.main-header .navbar-nav .nav-link:hover::after{
    transform:scaleX(1);
}

/* Apply Online button */
.main-header .btn-warning{
    flex-shrink:0;
    margin-left:22px !important;
    padding:16px 30px;
    background:var(--secondary);
    border:1px solid var(--secondary);
    border-radius:11px;
    color:#111;
    font-size:17px;
    font-weight:700;
    line-height:1.3;
    white-space:nowrap;
    box-shadow:0 8px 20px rgba(212,175,55,.22);
}

.main-header .btn-warning:hover{
    background:#c69c1c;
    border-color:#c69c1c;
    color:#111;
    transform:translateY(-2px);
    box-shadow:0 12px 26px rgba(212,175,55,.32);
}

/* Mobile toggler */
.main-header .navbar-toggler{
    width:48px;
    height:44px;
    padding:0;
    border:1px solid #d9dee8;
    border-radius:8px;
    color:var(--primary);
    font-size:22px;
    box-shadow:none;
}


/*=========================================================
Hero - Final Bright Version
==========================================================*/

.hero-section{
    position:relative;
    min-height:calc(100vh - 110px);

    background-image:url("../images/hero.png");
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;

    display:flex;
    align-items:center;

    overflow:hidden;
}

/* Overlay हटाएँ */
.hero-overlay{
    display:none !important;
}

/* Container */
.hero-section .container{
    position:relative;
    z-index:2;
}





.btn-warning{

    background:var(--secondary);

    border:none;

    color:#000;

    font-weight:600;

    padding:15px 35px;

    border-radius:10px;

}

.btn-warning:hover{

    background:#c79d16;

    transform:translateY(-3px);

}


/*=========================================================
Footer Logo
==========================================================*/

.footer-logo{

    width:260px;

    height:auto;

}
/*=========================================================
QUICK LINKS
==========================================================*/

.quick-links{

    background:#F8FAFD;

    padding:80px 0;

    position:relative;

}

.quick-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    border-bottom:4px solid transparent;

}

.quick-card:hover{

    transform:translateY(-10px);

    border-bottom:4px solid var(--secondary);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.quick-card > i{
    width:82px;
    height:82px;
    margin:0 auto 22px;
    border-radius:50%;
    background:var(--primary);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    transition:all .35s ease;
}

.quick-card:hover > i{

    background:var(--secondary);

    color:var(--primary);

    /*transform:rotateY(360deg) scale(1.08);
*/
}

.quick-card h4{

    color:var(--primary);

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;

}

.quick-card p{

    color:#666;

    line-height:28px;

    margin-bottom:20px;

}

.quick-card a{

    color:var(--primary);

    font-weight:600;

}

.quick-card a:hover{

    color:var(--secondary);

}
/*=========================================================
QUICK CARD HOVER COLOR
==========================================================*/

.quick-card{
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
}

.quick-card:hover{
    background:var(--primary);
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(11,31,77,.20);
    border-bottom-color:var(--secondary);
}

/* Icon */
/* Quick Card Icon Final Fix */

.quick-card > i{
    width:82px !important;
    height:82px !important;
    margin:0 auto 22px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    border-radius:50% !important;

    background:#0B1F4D !important;
    color:#D4AF37 !important;

    font-size:36px !important;

    opacity:1 !important;
    visibility:visible !important;

    transition:
        background-color .35s ease,
        color .35s ease,
        transform .35s ease !important;
}

.quick-card > i::before{
    color:inherit !important;
    opacity:1 !important;
    visibility:visible !important;
}

.quick-card:hover > i{
    background:#D4AF37 !important;
    color:#0B1F4D !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:scale(1.08) !important;
}

.quick-card:hover > i::before{
    color:#0B1F4D !important;
    opacity:1 !important;
    visibility:visible !important;
}



/* Heading */
.quick-card h4{
    transition:color .35s ease;
}

.quick-card:hover h4{
    color:#ffffff;
}

/* Description */
.quick-card p{
    transition:color .35s ease;
}

.quick-card:hover p{
    color:#e9edf6;
}

/* Read More */
.quick-card a{
    transition:all .35s ease;
}

.quick-card:hover a{
    color:var(--secondary);
}


/*=========================================================
ABOUT
==========================================================*/

.about-section{

    background:#fff;

    padding:100px 0;

}

.about-section img{

    width:100%;

    border-radius:20px;

    display:block;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.about-text{

    color:#666;

    font-size:17px;

    line-height:32px;

    margin-bottom:20px;

}

.counter-box{

    background:#F8FAFD;

    border-radius:15px;

    text-align:center;

    padding:30px;

    margin-top:20px;

    transition:.3s;

}

.counter-box:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);

}

.counter-box h3{

    color:var(--secondary);

    font-size:42px;

    font-weight:700;

}

.counter-box span{

    font-weight:600;

}


/*=========================================================
WHY CHOOSE US
==========================================================*/

.why-section{

    background:#F8FAFD;

    padding:100px 0;

}

.why-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border-top:4px solid transparent;

}

.why-card:hover{

    transform:translateY(-10px);

    border-top:4px solid var(--secondary);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    font-size:36px;

    transition:.4s;

}

.why-card:hover .why-icon{

    background:var(--secondary);

    color:var(--primary);

    transform:rotate(360deg);

}

.why-card h4{

    color:var(--primary);

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:28px;

}
/*=========================================================
LEADERSHIP
==========================================================*/

.leadership-section{

    background:#ffffff;

    padding:100px 0;

}

.leader-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.leader-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.leader-photo{

    width:100%;

    height:420px;

    object-fit:cover;

}

.leader-body{

    padding:35px;

}

.leader-body h3{

    color:var(--primary);

    font-size:30px;

    font-weight:700;

    margin-bottom:8px;

}

.leader-body span{

    color:var(--secondary);

    font-weight:600;

    display:block;

    margin-bottom:18px;

}

.leader-body p{

    color:#666;

    line-height:30px;

    margin-bottom:25px;

}



/*=========================================================
COURSES
==========================================================*/

.courses-section{

    background:#F8FAFD;

    padding:100px 0;

}

.course-card{

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:40px 30px;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    border-top:5px solid transparent;

}

.course-card:hover{

    transform:translateY(-10px);

    border-top:5px solid var(--secondary);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.course-icon{

    width:95px;

    height:95px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:40px;

    margin-bottom:25px;

    transition:.35s;

}

.course-card:hover .course-icon{

    background:var(--secondary);

    color:var(--primary);

}

.course-card h3{

    color:var(--primary);

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

.course-card p{

    color:#666;

    line-height:28px;

    margin-bottom:25px;

}



/*=========================================================
FACILITIES
==========================================================*/

.facility-section{

    background:#fff;

    padding:100px 0;

}

.facility-card{

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:35px;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.facility-card:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-8px);

}

.facility-card i{

    font-size:48px;

    color:var(--secondary);

    margin-bottom:22px;

}

.facility-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.facility-card p{

    color:#666;

    line-height:28px;

}

.facility-card:hover p{

    color:#fff;

}



/*=========================================================
COUNTER
==========================================================*/

.counter-section{

    background:var(--primary);

    padding:90px 0;

}

.counter-item{

    text-align:center;

    color:#fff;

}

.counter-item i{

    color:var(--secondary);

    font-size:55px;

    margin-bottom:20px;

}

.counter-item h2{

    font-size:52px;

    font-weight:700;

    margin-bottom:8px;

}

.counter-item p{

    font-size:18px;

    margin:0;

}
/*=========================================================
LATEST NEWS
==========================================================*/

.news-section{

    background:#F8FAFD;

    padding:100px 0;

}

.news-box{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.news-header{

    background:var(--primary);

    color:#fff;

    padding:18px 25px;

}

.news-header h3{

    margin:0;

    font-size:24px;

}

.notice-list{

    padding:25px;

}

.notice-list li{

    border-bottom:1px solid #eee;

    padding:14px 0;

}

.notice-list li:last-child{

    border-bottom:none;

}

.notice-list a{

    color:#333;

    font-weight:500;

}

.notice-list a:hover{

    color:var(--secondary);

}

.event-item{

    display:flex;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}

.event-item:last-child{

    border-bottom:none;

}

.event-date{

    width:75px;

    height:75px;

    background:var(--secondary);

    color:#fff;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    font-weight:700;

    margin-right:20px;

}



/*=========================================================
GALLERY
==========================================================*/

.gallery-section{

    background:#fff;

    padding:100px 0;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

}

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(11,31,77,.75);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.gallery-overlay i{

    color:#fff;

    font-size:42px;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}



/*=========================================================
TESTIMONIAL
==========================================================*/

.testimonial-section{

    background:#F8FAFD;

    padding:100px 0;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.student-img{

    width:110px;

    height:110px;

    border-radius:50%;

    object-fit:cover;

    margin:0 auto 20px;

}

.testimonial-card h5{

    color:var(--primary);

    font-weight:700;

}

.testimonial-card span{

    color:var(--secondary);

}



/*=========================================================
CTA
==========================================================*/

.cta-section{

    background:linear-gradient(135deg,#0B1F4D,#163A78);

    color:#fff;

    padding:80px 0;

}

.cta-section h2{

    font-size:40px;

    font-weight:700;

}

.cta-section p{

    margin-top:15px;

}



/*=========================================================
FOOTER
==========================================================*/

.footer{

    background:#08172F;

    color:#ccc;

    padding:80px 0 20px;

}

.footer h4{

    color:#fff;

    margin-bottom:25px;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#ccc;

}

.footer ul li a:hover{

    color:var(--secondary);

}

.footer-bottom{

    margin-top:40px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:20px;

    text-align:center;

}



/*=========================================================
RESPONSIVE
==========================================================*/

@media(max-width:991px){

.main-header .navbar{
    min-height:82px;
    padding:8px 0;
}

.main-header .navbar-brand{
    flex:0 0 220px;
    width:220px;
    margin-right:15px;
}

.main-header .logo{
    width:100%;
    max-width:220px;
    height:auto;
}

.main-header .navbar-collapse{
    margin-top:12px;
    padding:15px;
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(11,31,77,.12);
}

.main-header .navbar-nav{
    align-items:stretch;
    margin-top:0;
}

.main-header .navbar-nav .nav-link{
    padding:12px 8px;
    font-size:16px;
}

.main-header .navbar-nav .nav-link::after{
    display:none;
}

.main-header .btn-warning{
    display:inline-block;
    margin:12px 0 0 !important;
}

.hero-title{

font-size:42px;

line-height:50px;

}

.hero-text{

font-size:17px;

line-height:30px;

}

.section-title{

font-size:34px;

}

.hero-section{

text-align:center;

}

.hero-text{

margin:auto;

}

.navbar-nav{

margin-top:20px;

}

.apply-btn{

display:inline-block;

margin-top:10px;

}

}
@media(max-width:767px){

    .section-subtitle{
        font-size:17px;
        letter-spacing:2.5px;
        margin-bottom:14px;
        padding-bottom:10px;
    }

    .section-subtitle::after{
        width:65px;
        height:3px;
    }

}



@media(max-width:767px){

section{

padding:70px 0;

}

.hero-title{

font-size:34px;

line-height:42px;

}

.section-title{

font-size:28px;

}

.leader-photo{

height:320px;

}

.gallery-item img{

height:220px;

}

}
.about-section .col-lg-6:first-child{

    display:flex;

    align-items:flex-start;

}
@media(max-width:575px){

    .main-header .navbar{
        min-height:74px;
    }

    .main-header .navbar-brand{
        flex:0 0 175px;
        width:175px;
    }

    .main-header .logo{
        max-width:175px;
    }

}
/*=========================================================
FINAL HEADER FIX
इसे StyleSheet.css के बिल्कुल अंत में रखें
==========================================================*/

.main-header{
    background:#ffffff !important;
    box-shadow:0 4px 18px rgba(11,31,77,.10) !important;
    position:sticky !important;
    top:0 !important;
    z-index:9999 !important;
}

.main-header .navbar{
    min-height:105px !important;
    padding:8px 0 !important;
    display:flex !important;
    align-items:center !important;
}

/* Logo की transparent खाली जगह crop होगी */
.main-header .navbar-brand{
    position:relative !important;
    flex:0 0 260px !important;
    width:260px !important;
    height:82px !important;
    margin:0 35px 0 0 !important;
    padding:0 !important;
    overflow:hidden !important;
    display:block !important;
}

.main-header .navbar-brand .logo{
    position:absolute !important;
    width:430px !important;
    max-width:none !important;
    height:auto !important;

    /* PNG के अंदर की खाली जगह हटाने के लिए */
    left:-82px !important;
    top:-91px !important;

    display:block !important;
}

/* Menu */
.main-header .navbar-collapse{
    align-items:center !important;
}

.main-header .navbar-nav{
    align-items:center !important;
    gap:2px !important;
}

.main-header .navbar-nav .nav-link{
    color:#252525 !important;
    font-size:18px !important;
    font-weight:600 !important;
    line-height:1.3 !important;
    padding:15px 12px !important;
    white-space:nowrap !important;
}

.main-header .navbar-nav .nav-link:hover{
    color:#D4AF37 !important;
}

/* Apply Online */
.main-header .btn-warning{
    margin-left:24px !important;
    padding:16px 32px !important;
    background:#D4AF37 !important;
    border:1px solid #D4AF37 !important;
    border-radius:11px !important;
    color:#111111 !important;
    font-size:18px !important;
    font-weight:700 !important;
    line-height:1.25 !important;
    white-space:nowrap !important;
}

.main-header .btn-warning:hover{
    background:#c59d22 !important;
    border-color:#c59d22 !important;
    transform:translateY(-2px) !important;
}

/* Tablet और Mobile */
@media(max-width:991px){

    .main-header .navbar{
        min-height:82px !important;
    }

   .main-header .navbar-brand{
    flex:0 0 230px;
    width:230px;
    margin-right:20px;
}
    .main-header .navbar-brand .logo{
        width:350px !important;
        left:-67px !important;
        top:-74px !important;
    }

    .main-header .navbar-collapse{
        margin-top:10px !important;
        padding:15px !important;
        background:#ffffff !important;
        border-radius:12px !important;
        box-shadow:0 12px 30px rgba(11,31,77,.12) !important;
    }

    .main-header .navbar-nav{
        align-items:stretch !important;
    }

    .main-header .navbar-nav .nav-link{
    font-size:17px;
    padding:15px 10px;
}

    .main-header .btn-warning{
    margin-left:10px;
}
}
/*section-subtitle{
    position:relative;
    display:inline-block;

    color:var(--secondary);

    font-size:17px;
    font-weight:800;
    line-height:1.2;

    letter-spacing:2.5px;
    text-transform:uppercase;

    margin-bottom:14px;
    padding-bottom:10px;
}*/
/*=========================================================
FINAL COMMON SECTION HEADER
==========================================================*/

.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.section-subtitle{

    display:block;

    text-align:center;

    color:#D4AF37;

    font-size:17px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-subtitle::before,

.section-subtitle::after{

    display:none;

}

.section-title{
    color:#0B1F4D;
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    margin:0 0 20px;
}

.section-desc{
    color:#666;
    font-size:19px;
    line-height:32px;
    max-width:760px;
    margin:0 auto;
}
/*=========================================================
FINAL SECTION HEADINGS
यह Code StyleSheet.css के बिल्कुल अंत में रखें
==========================================================*/


/*---------------------------------------------------------
1. ABOUT SECTION — Left Badge
---------------------------------------------------------*/

.about-section .section-subtitle{
    display:inline-flex !important;
    align-items:center !important;

    color:#0B1F4D !important;
    background:rgba(212,175,55,.14) !important;

    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.2 !important;

    letter-spacing:2.5px !important;
    text-transform:uppercase !important;

    padding:10px 18px !important;
    margin:0 0 18px !important;

    border-left:4px solid #D4AF37 !important;
    border-radius:4px 10px 10px 4px !important;
}

.about-section .section-subtitle::before,
.about-section .section-subtitle::after{
    content:none !important;
    display:none !important;
}

.about-section .section-title{
    color:#0B1F4D !important;
    font-size:50px !important;
    font-weight:800 !important;
    line-height:1.16 !important;
    margin:0 0 24px !important;
}


/*---------------------------------------------------------
2. WHY CHOOSE US — Center Badge
---------------------------------------------------------*/

.why-section .section-subtitle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    color:#0B1F4D !important;
    background:rgba(212,175,55,.14) !important;

    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.2 !important;

    letter-spacing:2.5px !important;
    text-transform:uppercase !important;

    padding:10px 22px !important;
    margin:0 0 18px !important;

    border-radius:50px !important;
}

.why-section .section-subtitle::before,
.why-section .section-subtitle::after{
    content:"" !important;
    display:block !important;

    width:8px !important;
    height:8px !important;

    background:#D4AF37 !important;
    border-radius:50% !important;

    position:static !important;
    transform:none !important;
}

.why-section .section-subtitle::before{
    margin-right:12px !important;
}

.why-section .section-subtitle::after{
    margin-left:12px !important;
}

.why-section .section-title{
    color:#0B1F4D !important;
    font-size:46px !important;
    font-weight:800 !important;
    line-height:1.18 !important;
    margin:0 0 18px !important;
}


/*---------------------------------------------------------
3. LEADERSHIP — Center Badge
---------------------------------------------------------*/

.leadership-section .section-subtitle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    color:#0B1F4D !important;
    background:#ffffff !important;

    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.2 !important;

    letter-spacing:2.5px !important;
    text-transform:uppercase !important;

    padding:9px 20px !important;
    margin:0 0 18px !important;

    border:1px solid rgba(212,175,55,.55) !important;
    border-radius:50px !important;

    box-shadow:0 7px 20px rgba(11,31,77,.07) !important;
}

.leadership-section .section-subtitle::before,
.leadership-section .section-subtitle::after{
    content:none !important;
    display:none !important;
}

.leadership-section .section-title{
    color:#0B1F4D !important;
    font-size:46px !important;
    font-weight:800 !important;
    line-height:1.18 !important;
    margin:0 0 18px !important;
}


/*---------------------------------------------------------
4. COURSES — Navy Badge
---------------------------------------------------------*/

.courses-section .section-subtitle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    color:#ffffff !important;
    background:#0B1F4D !important;

    font-size:15px !important;
    font-weight:800 !important;
    line-height:1.2 !important;

    letter-spacing:2.5px !important;
    text-transform:uppercase !important;

    padding:10px 22px !important;
    margin:0 0 18px !important;

    border-radius:50px !important;

    box-shadow:0 8px 20px rgba(11,31,77,.18) !important;
}

.courses-section .section-subtitle::before,
.courses-section .section-subtitle::after{
    content:none !important;
    display:none !important;
}

.courses-section .section-title{
    color:#0B1F4D !important;
    font-size:46px !important;
    font-weight:800 !important;
    line-height:1.18 !important;
    margin:0 0 18px !important;
}


/*---------------------------------------------------------
5. FACILITIES — Gold Border Badge
---------------------------------------------------------*/

.facility-section .section-subtitle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    color:#0B1F4D !important;
    background:#ffffff !important;

    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.2 !important;

    letter-spacing:2.5px !important;
    text-transform:uppercase !important;

    padding:10px 22px !important;
    margin:0 0 18px !important;

    border:2px solid #D4AF37 !important;
    border-radius:50px !important;
}

.facility-section .section-subtitle::before,
.facility-section .section-subtitle::after{
    content:none !important;
    display:none !important;
}

.facility-section .section-title{
    color:#0B1F4D !important;
    font-size:46px !important;
    font-weight:800 !important;
    line-height:1.18 !important;
    margin:0 0 18px !important;
}


/*---------------------------------------------------------
6. GALLERY — Gold Badge
---------------------------------------------------------*/

.gallery-section .section-subtitle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    color:#0B1F4D !important;
    background:#D4AF37 !important;

    font-size:15px !important;
    font-weight:800 !important;
    line-height:1.2 !important;

    letter-spacing:2.5px !important;
    text-transform:uppercase !important;

    padding:10px 22px !important;
    margin:0 0 18px !important;

    border-radius:50px !important;

    box-shadow:0 8px 22px rgba(212,175,55,.25) !important;
}

.gallery-section .section-subtitle::before,
.gallery-section .section-subtitle::after{
    content:none !important;
    display:none !important;
}

.gallery-section .section-title{
    color:#0B1F4D !important;
    font-size:46px !important;
    font-weight:800 !important;
    line-height:1.18 !important;
    margin:0 0 18px !important;
}


/*---------------------------------------------------------
7. TESTIMONIAL — Soft Badge
---------------------------------------------------------*/

.testimonial-section .section-subtitle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    color:#0B1F4D !important;
    background:rgba(11,31,77,.07) !important;

    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.2 !important;

    letter-spacing:2.5px !important;
    text-transform:uppercase !important;

    padding:10px 22px !important;
    margin:0 0 18px !important;

    border-radius:50px !important;
}

.testimonial-section .section-subtitle::before,
.testimonial-section .section-subtitle::after{
    content:"\f10d" !important;
    display:inline-block !important;

    position:static !important;
    width:auto !important;
    height:auto !important;
    background:none !important;

    color:#D4AF37 !important;
    font-family:"Font Awesome 6 Free" !important;
    font-size:13px !important;
    font-weight:900 !important;

    transform:none !important;
}

.testimonial-section .section-subtitle::before{
    margin-right:10px !important;
}

.testimonial-section .section-subtitle::after{
    margin-left:10px !important;
}

.testimonial-section .section-title{
    color:#0B1F4D !important;
    font-size:46px !important;
    font-weight:800 !important;
    line-height:1.18 !important;
    margin:0 0 18px !important;
}


/*---------------------------------------------------------
8. COMMON DESCRIPTION
---------------------------------------------------------*/

.why-section .section-desc,
.courses-section .section-desc,
.facility-section .section-desc,
.gallery-section .section-desc,
.testimonial-section .section-desc{
    max-width:760px !important;
    margin:0 auto !important;

    color:#666666 !important;
    font-size:18px !important;
    line-height:31px !important;
}


/*---------------------------------------------------------
9. MOBILE
---------------------------------------------------------*/

@media(max-width:767px){

    .about-section .section-title,
    .why-section .section-title,
    .leadership-section .section-title,
    .courses-section .section-title,
    .facility-section .section-title,
    .gallery-section .section-title,
    .testimonial-section .section-title{
        font-size:30px !important;
        line-height:1.22 !important;
    }

    .about-section .section-subtitle,
    .why-section .section-subtitle,
    .leadership-section .section-subtitle,
    .courses-section .section-subtitle,
    .facility-section .section-subtitle,
    .gallery-section .section-subtitle,
    .testimonial-section .section-subtitle{
        font-size:13px !important;
        letter-spacing:1.7px !important;
        padding:8px 14px !important;
        margin-bottom:14px !important;
    }

    .why-section .section-desc,
    .courses-section .section-desc,
    .facility-section .section-desc,
    .gallery-section .section-desc,
    .testimonial-section .section-desc{
        font-size:16px !important;
        line-height:27px !important;
    }
}

/*=========================================================
ABOUT PAGE
=========================================================*/

.about-page-section{
    background:#ffffff;
    color:#555;
}

.about-content-block{
    max-width:1050px;
    margin:0 auto;
}

.about-content-block .section-title{
    color:#0b1f4d;
    font-size:48px;
    font-weight:800;
    line-height:1.18;
    margin:18px 0 25px;
}

.about-content-block p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:16px;
    text-align:justify;
}


/* Mission and Vision */

.mission-vision-card{
    position:relative;
    background:#ffffff;
    border:1px solid #e5e8ef;
    border-top:4px solid #d4af37;
    border-radius:14px;
    padding:38px 32px;
    box-shadow:0 12px 35px rgba(11,31,77,.08);
    transition:all .3s ease;
}

.mission-vision-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 45px rgba(11,31,77,.14);
}

.mv-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0b1f4d;
    color:#d4af37;
    border-radius:50%;
    font-size:25px;
    margin-bottom:22px;
}

.mission-vision-card h2{
    color:#0b1f4d;
    font-size:30px;
    font-weight:800;
    margin-bottom:18px;
}

.mission-vision-card p{
    color:#5f6470;
    font-size:16px;
    line-height:1.8;
    margin-bottom:12px;
}


/* Objectives */

.objective-section{
    background:#f7f8fb;
    border-radius:18px;
    padding:55px 50px;
}

.objective-list{
    max-width:1050px;
    margin:0 auto;
}

.objective-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    background:#ffffff;
    border-left:4px solid #d4af37;
    border-radius:8px;
    padding:20px 22px;
    margin-bottom:15px;
    box-shadow:0 7px 20px rgba(11,31,77,.06);
    transition:all .3s ease;
}

.objective-item:hover{
    transform:translateX(6px);
    box-shadow:0 10px 28px rgba(11,31,77,.11);
}

.objective-item i{
    width:29px;
    height:29px;
    flex:0 0 29px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    background:#0b1f4d;
    border-radius:50%;
    font-size:12px;
    margin-top:2px;
}

.objective-item p{
    color:#555d6b;
    font-size:16px;
    line-height:1.75;
    margin:0;
}


/* Responsive */

@media(max-width:767px){

    .about-content-block .section-title{
        font-size:32px;
    }

    .about-content-block p{
        font-size:16px;
        line-height:1.75;
        text-align:left;
    }

    .mission-vision-card{
        padding:30px 24px;
    }

    .mission-vision-card h2{
        font-size:26px;
    }

    .objective-section{
        padding:38px 18px;
    }

    .objective-item{
        padding:18px 16px;
    }

    .objective-item p{
        font-size:15px;
    }
}

/*==========================================================
HOME ABOUT SECTION
==========================================================*/

/* यहाँ वही About + Counter CSS Paste करें
जो मैंने "Part-3 : Premium About + Counter CSS"
में दिया था। */

/* इसका पहला Class होगा */

.home-about-section{
   ...
}

/* और इसका आखिरी Media Query होगा */

@media(max-width:576px){

.home-about-section{
padding:60px 0;
}

.about-experience-badge{
position:relative;
left:auto;
bottom:auto;
margin-top:20px;
display:inline-flex;
}

.home-counter-content h2{
font-size:34px;
}

}
/*=========================================================
HOME ABOUT SECTION
=========================================================*/

.home-about-section{
    background:#ffffff;
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

/*=========================================
IMAGE AREA
=========================================*/

.home-about-image-wrap{
    position:relative;
    padding-right:35px;
}

.home-about-image{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.home-about-image img{
    width:100%;
    display:block;
    transition:all .5s ease;
}

.home-about-image:hover img{
    transform:scale(1.05);
}

/*=========================================
EXPERIENCE BADGE
=========================================*/

.about-experience-badge{

    position:absolute;

    left:-20px;

    bottom:35px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#0B1F4D;

    color:#ffffff;

    padding:18px 22px;

    border-radius:16px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:5;

}

.experience-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#D4AF37;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.experience-content strong{

    display:block;

    font-size:32px;

    line-height:30px;

    font-weight:700;

}

.experience-content span{

    display:block;

    font-size:14px;

    line-height:20px;

}

/* Decorative Circle */

.about-image-shape{

    position:absolute;

    right:0;

    top:-25px;

    width:120px;

    height:120px;

    background:#D4AF37;

    border-radius:50%;

    opacity:.15;

}
/*=========================================================
ABOUT CONTENT
=========================================================*/

.home-about-content{
    padding-left:20px;
}

.home-about-subtitle{
    color:#D4AF37;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.home-about-title{
    font-size:48px;
    font-weight:700;
    color:#0B1F4D;
    line-height:1.3;
    margin-bottom:20px;
}

.home-about-text{
    font-size:16px;
    color:#666;
    line-height:30px;
    margin-bottom:30px;
}

/*=========================================
HIGHLIGHT LIST
=========================================*/

.about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.about-highlight-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8f9fc;
    padding:16px;
    border-radius:14px;
    transition:.35s;
}

.about-highlight-item:hover{
    background:#0B1F4D;
    transform:translateY(-4px);
}

.about-highlight-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.about-highlight-item span{
    font-weight:600;
    color:#0B1F4D;
}

.about-highlight-item:hover span{
    color:#fff;
}

/*=========================================
BUTTON
=========================================*/

.btn-about{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#0B1F4D;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.btn-about:hover{

    background:#D4AF37;

    color:#fff;

    transform:translateY(-3px);

}
/*=========================================================
HOME COUNTER SECTION
=========================================================*/

.home-counter-section{
    position:relative;
    padding:80px 0;
    background:
        linear-gradient(
            rgba(11,31,77,.94),
            rgba(11,31,77,.94)
        ),
        url('../images/classroom.PNG') center center/cover no-repeat;
    overflow:hidden;
}

.home-counter-section::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border:45px solid rgba(212,175,55,.10);
    border-radius:50%;
    top:-120px;
    left:-100px;
}

.home-counter-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border:40px solid rgba(255,255,255,.06);
    border-radius:50%;
    right:-80px;
    bottom:-110px;
}

.home-counter-section .container{
    position:relative;
    z-index:2;
}

.home-counter-box{
    text-align:center;
    padding:25px 15px;
    position:relative;
}

.home-counter-icon{
    width:78px;
    height:78px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#D4AF37;
    color:#ffffff;
    font-size:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
    transition:all .4s ease;
}

.home-counter-box:hover .home-counter-icon{
    transform:translateY(-7px) rotate(8deg);
    background:#ffffff;
    color:#0B1F4D;
}

.home-counter-number{
    display:block;
    color:#ffffff;
    font-size:44px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:8px;
}

.home-counter-title{
    color:#f3f3f3;
    font-size:17px;
    font-weight:600;
    margin:0;
    letter-spacing:.3px;
}

/*==========================
HOME COUNTER FIX
==========================*/

.home-counter-section .home-counter-number{
    color:#ffffff !important;
    font-size:48px !important;
    font-weight:800 !important;
    text-shadow:0 2px 8px rgba(0,0,0,.45);
}

.home-counter-section .home-counter-title{
    color:#ffffff !important;
    font-size:18px !important;
    font-weight:500 !important;
}

.home-counter-section .home-counter-box{
    text-align:center;
}

.home-counter-section .home-counter-box *{
    color:#ffffff;
}

.home-counter-section .home-counter-icon{
    color:#ffffff !important;
}

/*=========================================================
HOME ABOUT RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .home-about-section{
        padding:75px 0;
    }

    .home-about-image-wrap{
        padding-right:0;
        margin-bottom:55px;
    }

    .home-about-content{
        padding-left:0;
    }

    .home-about-title{
        font-size:36px;
    }

    .about-experience-badge{
        left:22px;
        bottom:-28px;
    }

    .home-counter-section{
        padding:65px 0;
    }

    .home-counter-box{
        margin-bottom:25px;
    }
}

@media(max-width:767px){

    .home-about-section{
        padding:65px 0;
    }

    .home-about-title{
        font-size:31px;
    }

    .home-about-text{
        line-height:27px;
    }

    .about-highlights{
        grid-template-columns:1fr;
    }

    .home-counter-number{
        font-size:38px;
    }

    .home-counter-icon{
        width:68px;
        height:68px;
        font-size:26px;
    }
}

@media(max-width:576px){

    .home-about-section{
        padding:55px 0;
    }

    .home-about-image{
        border-radius:16px;
    }

    .about-experience-badge{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:18px;
        width:100%;
        justify-content:center;
    }

    .experience-content strong{
        font-size:36px;
    }

    .home-about-title{
        font-size:27px;
    }

    .home-about-subtitle{
        font-size:14px;
    }

    .btn-about{
        width:100%;
        justify-content:center;
    }

    .home-counter-section{
        padding:55px 0 30px;
    }

    .home-counter-box{
        padding:20px 10px;
    }

    .home-counter-number{
         display:block;
    color:#ffffff;
    font-size:44px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:8px;
    }
    .home-counter-number{
    color:#ffffff !important;
    text-shadow:0 2px 8px rgba(0,0,0,.45);
}

.home-counter-title{
    color:#ffffff !important;
    opacity:.95;
}
}

/*=========================================================
HOME COUNTER TEXT FINAL FIX
=========================================================*/

.home-counter-section .home-counter-box,
.home-counter-section .home-counter-box:hover{
    background:transparent !important;
    color:#ffffff !important;
    padding:25px 15px !important;
    margin-top:0 !important;
    transform:none;
}

.home-counter-section .home-counter-box .home-counter-number{
    display:block;
    color:#ffffff !important;
    font-size:48px !important;
    line-height:1.2;
    font-weight:800 !important;
    margin-bottom:8px;
    text-shadow:0 3px 10px rgba(0,0,0,.45);
}

.home-counter-section .home-counter-box .home-counter-title{
    display:block;
    color:#ffffff !important;
    font-size:18px !important;
    line-height:1.5;
    font-weight:600 !important;
    opacity:1 !important;
}

.home-counter-section .home-counter-box h2,
.home-counter-section .home-counter-box h3,
.home-counter-section .home-counter-box h4,
.home-counter-section .home-counter-box span,
.home-counter-section .home-counter-box p{
    color:#ffffff !important;
}

.home-counter-section .home-counter-icon,
.home-counter-section .home-counter-icon i{
    color:#ffffff !important;
}
/*=========================================================
HOME COUNTER – FORCE WHITE TEXT FIX
=========================================================*/

section.home-counter-section .home-counter-box h2,
section.home-counter-section .home-counter-box h3,
section.home-counter-section .home-counter-box h4,
section.home-counter-section .home-counter-box .counter-number,
section.home-counter-section .home-counter-box .home-counter-number {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .45) !important;
}

section.home-counter-section .home-counter-box p,
section.home-counter-section .home-counter-box span,
section.home-counter-section .home-counter-box .counter-title,
section.home-counter-section .home-counter-box .home-counter-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

section.home-counter-section .home-counter-icon,
section.home-counter-section .home-counter-icon i {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
/*=========================================================
HOME COUNTER CARD FINAL
=========================================================*/

.home-counter-card{
    text-align:center;
    padding:20px;
}

.home-counter-content h2{
    color:#ffffff !important;
    font-size:48px;
    font-weight:800;
    margin-top:20px;
    margin-bottom:8px;
    line-height:1;
}

.home-counter-content h2 .counter{
    color:#ffffff !important;
}

.home-counter-content h2 sup{
    color:#D4AF37 !important;
    font-size:24px;
    top:-12px;
}

.home-counter-content p{
    color:#ffffff !important;
    font-size:18px;
    font-weight:500;
    margin:0;
}

.home-counter-icon{
    width:80px;
    height:80px;
    margin:0 auto;
    background:#D4AF37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.home-counter-icon i{
    color:#ffffff;
    font-size:34px;
}

/*=========================================================
HEADER WIDTH FINAL FIX
=========================================================*/

.main-header .container-fluid{
    padding-left:24px !important;
    padding-right:24px !important;
}

.main-header .navbar-brand{
    flex:0 0 275px !important;
    width:275px !important;
    margin-right:18px !important;
}

.main-header .navbar-nav{
    gap:0 !important;
}

.main-header .navbar-nav .nav-link{
    font-size:16px !important;
    padding:15px 9px !important;
}

.main-header .apply-online-btn{
    flex-shrink:0 !important;
    margin-left:14px !important;
    padding:15px 22px !important;
    font-size:16px !important;
    white-space:nowrap !important;
}

/*=========================================================
LEADERSHIP TWO COLUMN FINAL DESIGN
=========================================================*/

.leadership-section{
    padding:95px 0;
    background:#f8f9fc;
}

.leadership-profile-card{
    display:flex;
    flex-direction:column;
    background:#ffffff;
    border:1px solid #e8ebf1;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 16px 42px rgba(11,31,77,.09);
    transition:all .4s ease;
}

.leadership-profile-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(11,31,77,.16);
}

.leadership-profile-head{
    display:flex;
    align-items:center;
    gap:24px;
    padding:28px 30px;
    background:linear-gradient(135deg,#0B1F4D,#17376f);
}

.leadership-image-box{
    flex:0 0 145px;
    width:145px;
    height:165px;
    padding:5px;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

.leadership-profile-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    border-radius:12px;
}

.leadership-person-info{
    min-width:0;
}

.leadership-role{
    display:inline-block;
    padding:7px 16px;
    margin-bottom:13px;
    background:#D4AF37;
    color:#0B1F4D;
    border-radius:30px;
    font-size:14px;
    font-weight:800;
    letter-spacing:.5px;
}

.leadership-person-info h3{
    color:#ffffff;
    font-size:27px;
    font-weight:800;
    line-height:1.25;
    margin:0 0 7px;
}

.leadership-person-info p{
    color:rgba(255,255,255,.78);
    font-size:15px;
    margin:0;
}

.leadership-message{
    position:relative;
    flex:1;
    padding:34px 32px 22px;
}

.leadership-quote-icon{
    position:absolute;
    right:30px;
    top:23px;
    color:rgba(212,175,55,.20);
    font-size:58px;
}

.leadership-message p{
    position:relative;
    z-index:2;
    color:#5c6472;
    font-size:15.5px;
    line-height:1.85;
    margin-bottom:15px;
    text-align:justify;
}

.leadership-card-footer{
    padding:0 32px 32px;
}

.leadership-read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:13px 24px;
    background:#0B1F4D;
    color:#ffffff;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    transition:all .35s ease;
}

.leadership-read-more:hover{
    background:#D4AF37;
    color:#0B1F4D;
    transform:translateY(-2px);
}

.leadership-read-more i{
    transition:transform .35s ease;
}

.leadership-read-more:hover i{
    transform:translateX(5px);
}

/* Tablet */

@media(max-width:991px){

    .leadership-profile-head{
        align-items:flex-start;
        gap:18px;
        padding:24px;
    }

    .leadership-image-box{
        flex-basis:120px;
        width:120px;
        height:145px;
    }

    .leadership-person-info h3{
        font-size:23px;
    }

    .leadership-message{
        padding:28px 24px 18px;
    }

    .leadership-card-footer{
        padding:0 24px 26px;
    }
}

/* Mobile */

@media(max-width:575px){

    .leadership-section{
        padding:70px 0;
    }

    .leadership-profile-head{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .leadership-image-box{
        width:170px;
        height:195px;
        flex-basis:auto;
    }

    .leadership-person-info h3{
        font-size:24px;
    }

    .leadership-message p{
        text-align:left;
    }

    .leadership-read-more{
        width:100%;
        justify-content:center;
    }
}
/*=========================================================
VISION, MISSION & OBJECTIVES
=========================================================*/

.vision-section{
    position:relative;
    padding:95px 0;
    background:#f8f9fc;
    overflow:hidden;
}

.vision-section::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    top:-130px;
    left:-120px;
    border:45px solid rgba(212,175,55,.08);
    border-radius:50%;
}

.vision-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-90px;
    bottom:-110px;
    border:40px solid rgba(11,31,77,.06);
    border-radius:50%;
}

.vision-section .container{
    position:relative;
    z-index:2;
}

/* Mission and Vision Cards */

.vision-card{
    position:relative;
    height:100%;
    padding:42px 38px;
    background:#ffffff;
    border:1px solid #e7eaf1;
    border-top:4px solid #D4AF37;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(11,31,77,.08);
    transition:all .4s ease;
    overflow:hidden;
}

.vision-card::after{
    content:"";
    position:absolute;
    width:110px;
    height:110px;
    right:-45px;
    top:-45px;
    background:rgba(212,175,55,.10);
    border-radius:50%;
}

.vision-card:hover{
    transform:translateY(-9px);
    box-shadow:0 25px 55px rgba(11,31,77,.15);
    border-top-color:#0B1F4D;
}

.vision-icon{
    width:78px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:50%;
    background:#0B1F4D;
    color:#D4AF37;
    font-size:31px;
    box-shadow:0 12px 28px rgba(11,31,77,.18);
    transition:all .4s ease;
}

.vision-card:hover .vision-icon{
    background:#D4AF37;
    color:#0B1F4D;
    transform:scale(1.08) rotate(6deg);
}

.vision-card h3{
    color:#0B1F4D;
    font-size:29px;
    font-weight:800;
    margin:0 0 16px;
}

.vision-card p{
    color:#5f6673;
    font-size:16px;
    line-height:1.85;
    margin:0;
}

/* Objectives Box */

.objective-box{
    margin-top:38px;
    padding:42px 40px;
    background:linear-gradient(135deg,#0B1F4D,#173970);
    color:#ffffff;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(11,31,77,.18);
}

.objective-box h3{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#ffffff;
    font-size:30px;
    font-weight:800;
    margin:0 0 30px;
}

.objective-box h3 i{
    color:#D4AF37;
}

.objective-box ul{
    margin:0;
    padding:0;
}

.objective-box li{
    position:relative;
    padding:13px 12px 13px 42px;
    color:#f5f7fb;
    font-size:16px;
    font-weight:500;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.objective-box li:last-child{
    border-bottom:none;
}

.objective-box li::before{
    content:"\f00c";
    position:absolute;
    left:8px;
    top:13px;
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#D4AF37;
    color:#0B1F4D;
    border-radius:50%;
    font-family:"Font Awesome 6 Free";
    font-size:11px;
    font-weight:900;
}

.objective-box .btn-about-more{
    background:#D4AF37;
    color:#0B1F4D;
}

.objective-box .btn-about-more:hover{
    background:#ffffff;
    color:#0B1F4D;
}

/* Responsive */

@media(max-width:991px){

    .vision-section{
        padding:78px 0;
    }

    .vision-card{
        padding:35px 30px;
    }

    .objective-box{
        padding:36px 28px;
    }
}

@media(max-width:767px){

    .vision-section{
        padding:65px 0;
    }

    .vision-card{
        padding:30px 24px;
    }

    .vision-card h3{
        font-size:25px;
    }

    .vision-card p{
        font-size:15px;
        line-height:1.75;
    }

    .objective-box{
        padding:30px 20px;
    }

    .objective-box h3{
        font-size:25px;
    }

    .objective-box li{
        font-size:15px;
    }

    .objective-box .btn-about-more{
        width:100%;
        justify-content:center;
    }
}
/*=========================================================
ADMISSION NOTICE MODAL
=========================================================*/

.admission-notice-modal{
    position:relative;
    border:0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 28px 80px rgba(11,31,77,.28);
}

.admission-modal-close{
    position:absolute;
    top:17px;
    right:17px;
    z-index:5;
    width:36px;
    height:36px;
    padding:10px;
    background-color:#ffffff;
    border-radius:50%;
    opacity:1;
    box-shadow:0 7px 18px rgba(0,0,0,.14);
}

.admission-modal-header{
    padding:42px 35px 32px;
    text-align:center;
    background:linear-gradient(135deg,#0B1F4D,#173970);
}

.admission-modal-icon{
    width:78px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    background:#D4AF37;
    color:#0B1F4D;
    border-radius:50%;
    font-size:32px;
    box-shadow:0 13px 30px rgba(0,0,0,.22);
}

.admission-modal-header > span{
    display:block;
    margin-bottom:7px;
    color:#D4AF37;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.admission-modal-header h2{
    color:#ffffff;
    font-size:31px;
    font-weight:800;
    margin:0 0 12px;
}

.admission-modal-header p{
    max-width:430px;
    margin:0 auto;
    color:rgba(255,255,255,.82);
    font-size:15px;
    line-height:1.7;
}

.admission-modal-body{
    padding:30px 32px;
    background:#ffffff;
}

.admission-modal-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.admission-primary-btn,
.admission-secondary-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:52px;
    padding:13px 18px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    text-align:center;
}

.admission-primary-btn{
    background:#D4AF37;
    color:#0B1F4D;
}

.admission-primary-btn:hover{
    background:#c49c24;
    color:#0B1F4D;
    transform:translateY(-2px);
}

.admission-secondary-btn{
    background:#0B1F4D;
    color:#ffffff;
}

.admission-secondary-btn:hover{
    background:#173970;
    color:#ffffff;
    transform:translateY(-2px);
}

.admission-quick-links{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:22px;
}

.admission-quick-links a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:85px;
    padding:13px 8px;
    background:#f7f8fb;
    color:#0B1F4D;
    border:1px solid #e7eaf1;
    border-radius:12px;
    font-size:12.5px;
    font-weight:600;
    text-align:center;
}

.admission-quick-links a i{
    color:#D4AF37;
    font-size:21px;
}

.admission-quick-links a:hover{
    background:#0B1F4D;
    color:#ffffff;
    transform:translateY(-3px);
}

.admission-modal-footer{
    padding:14px 32px 18px;
    background:#f7f8fb;
    border-top:1px solid #e7eaf1;
}

.admission-hide-option{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    color:#626a78;
    font-size:13px;
    cursor:pointer;
}

.admission-hide-option input{
    width:16px;
    height:16px;
    accent-color:#0B1F4D;
}

/* Floating Button */

.floating-admission-btn{
    position:fixed;
    right:20px;
    bottom:95px;
    z-index:1040;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 17px;
    background:#D4AF37;
    color:#0B1F4D;
    border:0;
    border-radius:50px;
    font-size:13px;
    font-weight:800;
    line-height:1.2;
    box-shadow:0 15px 35px rgba(11,31,77,.24);
    transition:all .35s ease;
}

.floating-admission-btn i{
    font-size:23px;
}

.floating-admission-btn:hover{
    background:#0B1F4D;
    color:#ffffff;
    transform:translateY(-4px);
}

@media(max-width:575px){

    .admission-modal-header{
        padding:38px 22px 28px;
    }

    .admission-modal-header h2{
        font-size:25px;
    }

    .admission-modal-body{
        padding:24px 20px;
    }

    .admission-modal-actions{
        grid-template-columns:1fr;
    }

    .admission-quick-links{
        grid-template-columns:1fr;
    }

    .admission-quick-links a{
        min-height:58px;
        flex-direction:row;
    }

    .admission-modal-footer{
        padding-left:20px;
        padding-right:20px;
    }

    .floating-admission-btn{
        right:14px;
        bottom:78px;
        padding:12px;
        border-radius:50%;
    }

    .floating-admission-btn span{
        display:none;
    }
}
/*=========================================================
COMPACT ADMISSION MODAL
=========================================================*/

/*=========================================
MODAL POSITION FIX
=========================================*/

#admissionNoticeModal .modal-dialog{

    max-width:540px;

    margin-top:110px !important;

    margin-bottom:40px;

}

.admission-notice-modal{
    border-radius:18px;
    overflow:hidden;
}

.admission-modal-header{
    padding:28px 26px 24px;
}

.admission-modal-icon{
    width:58px;
    height:58px;
    margin-bottom:12px;
    font-size:24px;
}

.admission-modal-header > span{
    font-size:12px;
    letter-spacing:1.8px;
    margin-bottom:5px;
}

.admission-modal-header h2{
    font-size:27px;
    margin-bottom:8px;
}

.admission-modal-header p{
    font-size:14px;
    line-height:1.55;
}

.admission-modal-body{
    padding:24px 26px;
}

.admission-modal-actions{
    gap:12px;
}

.admission-primary-btn,
.admission-secondary-btn{
    min-height:48px;
    padding:11px 14px;
    font-size:14px;
}

.admission-quick-links{
    gap:9px;
    margin-top:18px;
}

.admission-quick-links a{
    min-height:72px;
    padding:10px 6px;
    font-size:12px;
}

.admission-quick-links a i{
    font-size:18px;
}

.admission-modal-footer{
    padding:11px 24px 14px;
}

.admission-hide-option{
    font-size:12px;
}

.admission-modal-close{
    top:12px;
    right:12px;
    width:32px;
    height:32px;
}

@media(max-width:575px){

    #admissionNoticeModal .modal-dialog{
        max-width:calc(100% - 24px);
        margin:12px auto;
    }



    .admission-modal-header{
        padding:26px 18px 20px;
    }

    .admission-modal-header h2{
        font-size:23px;
    }

    .admission-modal-body{
        padding:20px 18px;
    }

    .admission-quick-links{
        grid-template-columns:repeat(3,1fr);
    }

    .admission-quick-links a{
        min-height:68px;
        flex-direction:column;
        font-size:11px;
    }
}
.modal{

    overflow-y:auto;

    padding-top:20px;

}
@media(max-width:768px){

#admissionNoticeModal .modal-dialog{

    margin-top:100px !important;

}

}
/*=========================================
HEADER LOGO
=========================================*/

.navbar-brand{

    display:flex;
    align-items:center;

    padding:0;

    margin:0;

}

.navbar-brand .logo{

    width:auto;

    height:78px;

    max-height:78px;

    object-fit:contain;

    display:block;

}

@media(max-width:991px){

    .navbar-brand .logo{

        height:60px;

        max-height:60px;

    }

}
/*=========================================================
HEADER LOGO FINAL FIX
=========================================================*/

.main-header .navbar-brand{
    position:static !important;
    flex:0 0 105px !important;
    width:105px !important;
    height:90px !important;

    margin:0 28px 0 0 !important;
    padding:0 !important;

    overflow:visible !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.main-header .navbar-brand .logo{
    position:static !important;

    width:82px !important;
    height:82px !important;
    max-width:82px !important;
    max-height:82px !important;

    object-fit:contain !important;

    left:auto !important;
    top:auto !important;

    margin:0 !important;
    padding:0 !important;

    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
}

@media(max-width:991px){

    .main-header .navbar-brand{
        flex:0 0 80px !important;
        width:80px !important;
        height:72px !important;
        margin-right:15px !important;
    }

    .main-header .navbar-brand .logo{
        width:65px !important;
        height:65px !important;
        max-width:65px !important;
        max-height:65px !important;
    }
}