
:root{
    --primary:#0b1f4d;
    --secondary:#f4b400;
    --light:#f8f9fa;
}

body{
    font-family:Arial,sans-serif;
    overflow-x:hidden;
}

/* Top Bar */
.topbar{
    background:var(--primary);
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

/* Navbar */
.navbar{
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:var(--primary);
}

/* Hero */
.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(11,31,77,.75),rgba(11,31,77,.75)),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero h1{
    font-size:65px;
    font-weight:800;
}

.hero p{
    font-size:20px;
}

.btn-gold{
    background:var(--secondary);
    color:#000;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

/* Sections */
.section{
    padding:90px 0;
}

.title{
    text-align:center;
    margin-bottom:60px;
}

.title h2{
    font-size:42px;
    font-weight:700;
}

/* Cards */
.custom-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.custom-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.custom-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* Services */
.service-box{
    text-align:center;
    padding:40px 25px;
    border-radius:20px;
    background:#fff;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box i{
    font-size:50px;
    color:var(--secondary);
    margin-bottom:20px;
}

/* Stats */
.stats{
    background:var(--primary);
    color:#fff;
}

.stats h2{
    font-size:55px;
    color:var(--secondary);
}

/* Testimonials */
.testimonial{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* CTA */
.cta{
    background:
    linear-gradient(rgba(11,31,77,.9),rgba(11,31,77,.9)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
    background-size:cover;
    color:#fff;
}

/* Footer */
footer{
    background:#111;
    color:#fff;
    padding:70px 0 20px;
}

footer ul{
    list-style:none;
    padding:0;
}

footer li{
    margin-bottom:10px;
}

footer a{
    color:#ccc;
    text-decoration:none;
}

footer h4,h5{
    color:#8b889c !important;
}


/* event */
.event-card{
    background:#fff;
    border-radius:20px;
    display:flex;
    padding:20px;
    gap:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.event-card:hover{
    transform:translateY(-8px);
}

.event-date{
    background:#0b1f4d;
    color:#fff;
    padding:10px 15px;
    border-radius:15px;
    text-align:center;
    font-weight:700;
}

.event-date span{
    display:block;
    font-size:22px;
    color:#f4b400;
}

.event-body h5{
    margin:0;
    font-weight:600;
}

.event-body p{
    font-size:14px;
    color:#666;
}

.event-meta{
    font-size:12px;
    color:gray;
    display:flex;
    justify-content:space-between;
}

/* Blog */

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.blog-body{
    padding:20px;
}

.blog-meta{
    font-size:13px;
    color:gray;
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.blog-body h5{
    font-weight:600;
    margin-bottom:10px;
}

.blog-body p{
    font-size:14px;
    color:#666;
}

.blog-body a{
    color:#0b1f4d;
    font-weight:600;
    text-decoration:none;
}

/* Testimonials */

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.quote-icon{
    font-size:30px;
    color:#f4b400;
    margin-bottom:15px;
}

.review{
    font-size:15px;
    color:#555;
    line-height:1.7;
}

.student-info{
    display:flex;
    align-items:center;
    margin-top:20px;
    gap:12px;
}

.student-info img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.student-info h6{
    margin:0;
    font-weight:600;
}

.student-info span{
    font-size:13px;
    color:gray;
}
 /* Hero Section */
 
 .hero-slider{
    position:relative;
}

.hero-slide{
    height:100vh;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

/* .overlay{
    position:absolute;
    inset:0;
    background:rgba(11,31,77,.75);
} */

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.hero-content p{
    font-size:18px;
    margin:15px 0;
    color:#f1f1f1;
}

/* Buttons */
.btn-gold{
    background:#f4b400;
    color:#000;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    border:none;
}

.btn-gold:hover{
    background:#be29ec;
    color:#000;
}

/* Responsive */
@media(max-width:768px){
    .hero-content h1{
        font-size:36px;
    }

    .hero-slide{
        height:80vh;
    }
}


/* Dropdown styling*/

/* Dropdown Styling */
.custom-dropdown{
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    padding:10px;
}

.custom-dropdown .dropdown-item{
    padding:10px 15px;
    border-radius:10px;
    transition:.3s;
    font-size:14px;
}

.custom-dropdown .dropdown-item:hover{
    background:#0b1f4d;
    color:#fff;
}

/* Dropdown animation */
.dropdown-menu{
    animation:fadeIn .25s ease-in-out;
}

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

/* Gold button */
.btn-gold{
    background:#f4b400;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
}

.btn-gold:hover{
    background:#be29ec;
}


/*slider */

.partner-section{
    background:#fff;
}

.partner-section .sub-title{
    color:#f4b400;
    font-weight:700;
    letter-spacing:2px;
}

.partner-section h2{
    font-size:42px;
    font-weight:700;
    color:#0b1f4d;
}

.universitySlider{
    padding:20px 0;
}

.universitySlider .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
    height:120px;
    text-align: center;
}

.universitySlider img{
    max-width:180px;
    max-height:80px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.7;
    transition:.4s;
}

.universitySlider img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}