/*=========================================================
Project : Sealdah Group of Colleges
Version : WebLength V3
Developer : WebLength
=========================================================*/

/*==========================
Google Fonts
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

/*==========================
Root Variables
==========================*/
:root{

    --primary:#0B3C91;
    --secondary:#2563EB;
    --accent:hwb(27 18% 7%);

    --dark:#1F2937;
    --light:#F8FAFC;
    --white:#FFFFFF;

    --border:#E5E7EB;

    

    --radius:15px;

    --transition:.35s ease;
    
     --shadow-sm:
        0 4px 12px rgba(11,60,145,.08);

    --shadow:
        0 12px 30px #0b3c9159;

    --shadow-lg:
        0 22px 50px rgba(11,60,145,.22);
}

/*==========================
Reset
==========================*/

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    width:100%;
}

body{
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.8;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
    width:100%;
}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    margin:0;
    padding:0;
    list-style:none;

}

/*==========================
Typography
==========================*/

h1,h2,h3,h4,h5,h6{

    font-family:'Poppins',sans-serif;
    font-weight:700;
    color:var(--dark);

}

h1{

    font-size:52px;

}

h2{

    font-size:40px;

}

h3{

    font-size:28px;

}

p{

    color:#555;
    margin-bottom:15px;

}

/*==========================
Common
==========================*/

.section-padding{

    padding:50px 0;

}

.section-title{

    margin-bottom:40px;

}

.section-title span{

    color:var(--accent);
    font-weight:600;

}

.section-title h2{

    margin-top:10px;

}

.bg-light{

    background:var(--light);

}

/*==========================
Buttons
==========================*/

.btn-theme{

    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 34px;

    background:linear-gradient(
        135deg,
        #ff9800,
        #ff5722,
        #ff9800,
        #ffc107
    );

    background-size:300% 300%;

    color:#fff;

    font-size:16px;
    font-weight:700;

    border:2px solid #ffb400;
    border-radius:50px;

    text-decoration:none;

    cursor:pointer;

    overflow:hidden;

    transition:.35s ease;

    animation:gradientMove 4s ease infinite;

    box-shadow:
        0 8px 25px rgba(255,152,0,.35);

}

.btn-theme:hover{

    color:#fff;

    transform:translateY(-3px) scale(1.03);

    box-shadow:
        0 15px 35px rgba(255,152,0,.55);

}

.btn-theme::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transform:skewX(-25deg);

}

.btn-theme:hover::before{

    animation:shine .8s linear;

}

@keyframes gradientMove{

    0%{

        background-position:0% 50%;

    }

    50%{

        background-position:100% 50%;

    }

    100%{

        background-position:0% 50%;

    }

}

@keyframes shine{

    100%{

        left:140%;

    }

}

/* Premium Outline Button */

.btn-outline-theme{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:14px 30px;

    color:#fff;

    background:#2034ebb0;

    border:2px solid #ffb400;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    overflow:hidden;

    transition:.35s ease;

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);

    box-shadow:0 8px 25px rgba(255,180,0,.20);

}

/* Shine Effect */

.btn-outline-theme::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

}

/* Hover */

.btn-outline-theme:hover{

    background:linear-gradient(
        135deg,
        #ff9800,
        #ff5722
    );

    color:#fff;

    border-color:#ff9800;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(255,152,0,.45);

}

/* Shine Animation */

.btn-outline-theme:hover::before{

    animation:outlineShine .8s linear;

}

/* Icon */

.btn-outline-theme i{

    font-size:18px;

    transition:.3s;

}

.btn-outline-theme:hover i{

    transform:translateY(2px);

}

/* Keyframes */

@keyframes outlineShine{

    100%{

        left:140%;

    }

}

/*==========================
Cards
==========================*/

.theme-card{

    background:#fff;
    border-radius:15px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    padding:30px;

}

.theme-card:hover{

    transform:translateY(-8px);

}

/*==========================
Topbar
==========================*/

.top-bar{

    background:var(--primary);
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-bar a{

    color:#fff;

}

/*==========================
Navbar
==========================*/

.navbar{

    padding:15px 0;

}

.navbar-brand img{

    height:70px;

}

.nav-link{

    color:#FFFFFF;
    font-weight:500;
    margin-left:18px;

}

.nav-link:hover{

    color:var(--primary);

}

/*==========================
Hero
==========================*/

/*==========================
Hero
==========================*/

.hero{

    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    overflow:hidden;

}

.hero-slider{

    position:absolute;
    inset:0;
    z-index:1;

}

.hero-slide{

    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;

    opacity:0;

    transition:1s;

}

.hero-slide.active{

    opacity:1;

}

.hero-overlay{
   position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,32,74,.65) 0%,
        rgba(8,32,74,.45) 45%,
        rgba(8,32,74,.20) 100%
    );
}

.hero .container{

    position:relative;
    z-index:2;

}

.hero-content{

    color:#fff;

}

.hero-content h1{

    font-size:62px;
    line-height:1.12;
    color:#fff;
    margin-bottom:25px;

}

.hero-content p{

    font-size:19px;
    color:#eef3ff;
    line-height:1.9;
    max-width:560px;

}

.hero-tag{

    display:inline-flex;
    align-items:center;
    gap:8px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.20);

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

}

.hero .enquiry-box{

    background:#fff;

    padding:35px;

    border-radius:12px;

    box-shadow:0 20px 50px rgba(0,0,0,.20);

}

/*==========================================
Quick Info
==========================================*/

.quick-info{

    margin-top:-60px;

    margin-bottom:15px;

}

.quick-card{

    padding:35px 25px;

    border:1px solid #eee;

    background:#fff;

    border-radius:18px;

    transition:all .35s ease;

    cursor:pointer;

}

.quick-card:hover{

    transform:translateY(-10px);

    background:var(--primary);

    box-shadow:0 20px 40px rgba(11,60,145,.18);

}

.quick-card:hover h4,

.quick-card:hover p,

.quick-card:hover i{

color:#fff;

}

.quick-card:hover .quick-icon{

    background:var(--accent);

}

.quick-icon i{

    font-size:36px;

    color:var(--primary);

    transition:.35s;

}

.quick-icon{

    height:80px;

    width:80px;

    margin:auto;

    margin-bottom:22px;

    background:#EEF4FF;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.quick-icon i{

font-size:34px;

color:var(--primary);

}

.quick-card h4{

margin-bottom:15px;

font-size:22px;

}

.quick-card p{

margin:0;

}

/*==========================================
Welcome Section
==========================================*/

.welcome-section{

background:#fff;

}

.welcome-image{

overflow:hidden;

border-radius:20px;

}

.welcome-image img{

transition:.5s;

}

.welcome-image:hover img{

transform:scale(1.05);

}

.counter-box{

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:var(--shadow);

text-align:center;

margin-bottom:20px;

}

.counter-box h3{

color:var(--primary);

font-size:36px;

margin-bottom:8px;

font-weight:700;

}

.counter-box span{

font-size:15px;

color:#666;

font-weight:500;

}

/*==========================================
Courses Section
==========================================*/

.course-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.course-card:hover{

    transform:translateY(-8px);

}

.course-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.course-body{

    padding:30px;

}

.course-duration{

    display:inline-block;

    background:#EEF4FF;

    color:var(--primary);

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.course-body h3{

    margin-bottom:15px;

}

.course-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:25px;

}

.course-footer .btn-theme,

.course-footer .btn-outline-theme{

    padding:10px 22px;

    font-size:15px;

}

/*==========================================
Why Choose
==========================================*/

.why-choose{

background:#ffffff;

}

.why-card{

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;

    height:100%;

    transition:all .35s ease;

    border:1px solid #f1f1f1;

    cursor:pointer;

}

.why-card:hover{

    background:var(--primary);

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(11,60,145,.18);

}

.why-card:hover h4,

.why-card:hover p,

.why-card:hover i{

color:#fff;

}

.why-icon{

    height:85px;

    width:85px;

    background:#EEF4FF;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    transition:.35s;

}

.why-card:hover .why-icon{

    background:var(--accent);

}

.why-icon i{

    font-size:38px;

    color:var(--primary);

    transition:.35s;

}


.why-card:hover .why-icon{

background:hwb(27 18% 7%);

}

.why-icon i{

font-size:38px;

color:var(--primary);

}

.why-card h4{

font-size:22px;

margin-bottom:15px;

}

.why-card p{

margin:0;

font-size:15px;

}

/*==========================================
Admission Process
==========================================*/

.admission-process{

background:#F8FAFC;

}

.step-box{

background:#fff;

padding:35px 25px;

text-align:center;

border-radius:20px;

box-shadow:var(--shadow);

position:relative;

transition:.35s;

height:100%;

}

.step-box:hover{

transform:translateY(-8px);

}

.step-number{

position:absolute;

top:15px;

right:15px;

height:38px;

width:38px;

background:var(--accent);

color:#fff;

border-radius:50%;

font-size:15px;

font-weight:700;

display:flex;

align-items:center;

justify-content:center;

}

.step-icon{

height:85px;

width:85px;

background:#EEF4FF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:0 auto 25px;

}

.step-icon i{

font-size:38px;

color:var(--primary);

}

.step-box h4{

margin-bottom:15px;

}

.step-box p{

margin:0;

}
/*==========================
Footer
==========================*/

.footer{

    background:#0A2540;
    color:#fff;
    padding:70px 0 20px;

}

.footer h5{

    color:#fff;
    margin-bottom:20px;

}

.footer a{

    color:#ddd;

}

.footer a:hover{

    color:#fff;

}

/*=====================================
Notice
======================================*/

.notice-item{

display:flex;

gap:20px;

padding:25px;

background:#fff;

margin-bottom:20px;

border-radius:15px;

box-shadow:var(--shadow);

}

.notice-date{

width:70px;

height:70px;

background:var(--primary);

color:#fff;

border-radius:15px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}

.notice-date span{

font-size:24px;

font-weight:700;

}

.notice-cta{

background:hsl(32, 62%, 90%);

padding:40px;

color:#fff;

border-radius:20px;

height:100%;

}

/*=====================================
Gallery
======================================*/

.gallery-item{

overflow:hidden;

border-radius:15px;

}

.gallery-item img{

transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.1);

}

/*=====================================
Enquiry
======================================*/

.enquiry-section{

background:#fff;

}

.enquiry-section input,

.enquiry-section textarea,

.enquiry-section select{

border-radius:10px;

padding:14px;

}

/*=====================================
Map
======================================*/

.map-section iframe{

width:100%;

height:450px;

border:0;

}

.page-banner{

position:relative;

padding:130px 0;

background:url('../images/banner/page-banner.jpg');

background-size:cover;

background-position:center;

background-attachment:fixed;

}

.page-banner .overlay{

position:absolute;

left:0;

top:0;

height:100%;

width:100%;

background:rgba(8,25,52,.65);

}

.banner-content{

position:relative;

color:#fff;

}

.banner-content h1{

font-size:52px;

color:#fff;

margin:20px 0;

}

.breadcrumb-nav{

margin-bottom:20px;

}

.breadcrumb-nav a{

color:#fff;

}

.banner-form{

position:relative;

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.banner-form h3{

margin-bottom:25px;

}

.banner-form input,

.banner-form select{

margin-bottom:15px;

}
.cta-section{

background:linear-gradient(135deg,#0B3C91,#2563EB);

padding:70px 0;

color:#fff;

}

.cta-section h2{

color:#fff;

font-size:42px;

margin-bottom:15px;

}

.cta-section p{

color:#fff;

opacity:.9;

}

/*==========================
Utilities
==========================*/

.shadow-custom{

    box-shadow:var(--shadow);

}

.rounded-custom{

    border-radius:var(--radius);

}

.breadcrumb-nav{

margin-bottom:25px;

}

.breadcrumb{

background:transparent;

padding:0;

}

.breadcrumb a{

color:#fff;

}

.breadcrumb-item.active{

color:#ddd;

}

.breadcrumb-item+.breadcrumb-item::before{

color:#fff;

}

.scroll-top{

position:fixed;

left:25px;

bottom:25px;

height:48px;

width:48px;

background:#0B3C91;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

z-index:999;

display:none;

transition:.3s;

}

.scroll-top i{

    font-size:20px;

    line-height:5;

    display:flex;

    align-items:center;

    justify-content:center;

}

.scroll-top:hover{

background:#2563EB;

color:#fff;

}

.whatsapp-btn{

position:fixed;

right:20px;

bottom:25px;

height:60px;

width:60px;

background:#25D366;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

border-radius:50%;

z-index:999;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.whatsapp-btn:hover{

color:#fff;

transform:scale(1.08);

}

.call-btn{

position:fixed;

right:20px;

bottom:95px;

height:60px;

width:60px;

background:hwb(27 18% 7%);

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

border-radius:50%;

z-index:999;

box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.call-btn:hover{

color:#fff;

background:#2563EB;

transform:scale(1.08);

}

.hero .btn-theme,
.hero .btn-outline-theme{
    margin-right: 15px;
    margin-bottom: 15px;
}

@media (max-width: 576px){
    .hero .btn-theme,
    .hero .btn-outline-theme{
        display:block;
        width:100%;
        margin-right:0;
    }
}

@media (max-width:991px){

    .custom-navbar .nav-link::after{
        display:none;
    }

    .custom-navbar .nav-link{

        border-left:3px solid transparent;

        padding:14px 15px;

        transition:.3s;

    }

    .custom-navbar .nav-link:hover,
    .custom-navbar .nav-link.active{

        border-left-color:#ff9800;

        background:rgba(255,255,255,.08);

        color:#fff;

    }

}

/*==========================
Header Branding
==========================*/




.college-brand h1{
    margin:8px 0 2px;
}

.college-brand p{
    margin:0;
}



.college-brand h1{

font-size:38px;

font-weight:700;

margin:15px 0 5px;

color:var(--primary);

}

.college-brand p{

margin:0;

font-size:16px;

font-weight:500;

letter-spacing:1px;

color:#666;

}

/*==========================
Navbar
==========================*/
.custom-navbar{

    background:#0B3C91;

    box-shadow:
        0 10px 30px rgba(241, 237, 237, 0.08);

    border-top:1px solid rgba(255,255,255,.08);

}


.nav-link{

    position:relative;

}

.nav-link::after{

    content:'';

    position:absolute;

    left:50%;

    bottom:8px;

    width:0;

    height:2px;

    background:hwb(27 18% 7%);

    transition:.3s;

    transform:translateX(-50%);

}

.nav-link:hover::after,

.nav-link.active::after{

    width:70%;

}
.nav-link:hover{
color:hwb(27 18% 7%);

}

.hero .btn-theme{

    padding:15px 34px;

    border-radius:8px;

    box-shadow:

    0 12px 30px rgba(11,60,145,.35);

}

.btn-theme:hover{

background:#fff;

color:#0B3C91;

}

.btn-theme{

    border-radius:8px;

    padding:12px 26px;

    font-weight:600;

    box-shadow:

        0 8px 25px #0b3c9175;

}
.college-brand h1{

    font-size:34px;

    font-weight:700;

    letter-spacing:-.5px;

}

.college-brand p{

    font-size:13px;

    letter-spacing:2px;

    color:#777;

    text-transform:uppercase;

}


.hero{

    padding-top:50px;

}


.hero::before{

    content:'';

    position:absolute;

    right:-120px;

    top:-120px;

    width:350px;

    height:350px;

    background:rgba(11,60,145,.05);

    border-radius:50%;

}

/*==============================
College Branding
==============================*/

.logo img{

    height:120px;
    width:auto;
    transition:.3s;

}

.logo img:hover{

    transform:scale(1.05);

}

.college-title{

    margin:8px 0 2px;
    font-size:34px;
    font-weight:700;
    color:#0B3C91;
    font-family:'Poppins',sans-serif;

}

.college-subtitle{

    margin:0;
    font-size:14px;
    color:#666;
    letter-spacing:1px;
    font-weight:500;

}

/*==============================
Navbar
==============================*/

.custom-navbar{

    background:#0B3C91;
    padding:0;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.custom-navbar .nav-link{

    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:18px 16px;
    text-transform:uppercase;

}

 .nav-link:hover{

    color:hwb(27 18% 7%);

}

/*=========================
College Branding
=========================*/
.site-header{

    background:linear-gradient(135deg,#020a1b,hsl(218, 78%, 16%),hsl(217, 90%, 33%));

    padding:18px 0;

    border-bottom:4px solid #f5a623;

    box-shadow:0 8px 25px rgba(0,0,0,.20);

}

.college-brand{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;

}


.brand-text h1{

    margin:0;

    font-size:48px;

    font-weight:800;

    color:#ffffff;

    line-height:1.1;

    letter-spacing:.5px;

    text-shadow:

        0 0 12px rgba(255,255,255,.15),

        0 0 25px rgba(255,170,0,.20);

}

.brand-text h1 span{

    color:#ffb400;

    text-shadow:

        0 0 10px rgba(255,180,0,.65),

        0 0 22px rgba(255,180,0,.45);

}

.brand-text p{

    margin-top:8px;

    margin-bottom:0;

    color:#ffd166;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.brand-text p small{

    display:block;

    margin-top:4px;

    color:#ffffff;

    opacity:.9;

    font-size:16px;

    letter-spacing:1px;

}
.orange_text {
color:hwb(27 18% 7%);
}


.quick-card{

    padding:35px 25px;

    border:1px solid #eee;

    background:#fff;

    border-radius:18px;

    transition:all .35s ease;

    cursor:pointer;

}

.quick-card:hover{

    transform:translateY(-10px);

    background:var(--primary);

    box-shadow:0 20px 40px rgba(11,60,145,.18);

}

.why-link{

    display:block;

    color:inherit;

}

.why-link:hover{

    color:inherit;

}

.page-banner{

    animation:bannerZoom 15s linear infinite alternate;

}

@keyframes bannerZoom{

    from{

        background-size:100%;

    }

    to{

        background-size:110%;

    }

}

/*=========================================
Principal Message
=========================================*/

.principal-message{

    background:#f8fafc;

}

.principal-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.principal-image img{

    width:100%;

    display:block;

    transition:.4s;

}

.principal-image:hover img{

    transform:scale(1.05);

}

.principal-quote{

    position:relative;

    margin:25px 0;

    padding:25px 30px;

    background:#fff;

    border-left:5px solid var(--primary);

    border-radius:12px;

    font-size:18px;

    font-style:italic;

    color:#444;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.principal-quote::before{

    content:"“";

    position:absolute;

    left:18px;

    top:-18px;

    font-size:70px;

    color:rgba(11,60,145,.12);

    font-family:serif;

}

.principal-sign{

    margin-top:30px;

}

.principal-sign h5{

    margin-bottom:5px;

    color:var(--primary);

    font-weight:700;

}

.principal-sign span{

    color:#666;

}

/*=========================================
Vision & Mission
=========================================*/

.vision-mission{

    background:#fff;

}

.vm-card{

    background:#fff;

    padding:40px 35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    border-top:5px solid var(--primary);

    height:100%;

    text-align:center;

    transition:.35s;

}

.vm-card:hover{

    transform:translateY(-8px);

    background:var(--primary);

}

.vm-card:hover h3,

.vm-card:hover p{

    color:#fff;

}

.vm-card:hover .vm-icon{

    background:var(--accent);

}

.vm-card:hover .vm-icon i{

    color:#fff;

}

.vm-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.vm-icon i{

    font-size:36px;

    color:var(--primary);

    transition:.35s;

}

.vm-card h3{

    margin-bottom:18px;

    font-size:28px;

    font-weight:700;

}

.vm-card p{

    margin:0;

    color:#666;

    line-height:1.9;

}
/*=========================================
Achievements
=========================================*/

.achievements{

    background:#F8FAFC;

}

.achievement-card{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    height:100%;

    box-shadow:var(--shadow);

    transition:all .35s ease;

}

.achievement-card:hover{

    background:var(--primary);

    transform:translateY(-8px);

}

.achievement-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.achievement-icon i{

    font-size:38px;

    color:var(--primary);

    transition:.35s;

}

.achievement-card h3{

    font-size:42px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:10px;

    transition:.35s;

}

.achievement-card p{

    margin:0;

    color:#666;

    transition:.35s;

}

.achievement-card:hover h3,

.achievement-card:hover p,

.achievement-card:hover .achievement-icon i{

    color:#fff;

}

.achievement-card:hover .achievement-icon{

    background:var(--accent);

}

/*=========================================
Facilities
=========================================*/

.facilities{

    background:#fff;

}

.facility-card{

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;

    height:100%;

    border:1px solid #eee;

    transition:all .35s ease;

    cursor:pointer;

}

.facility-card:hover{

    background:var(--primary);

    transform:translateY(-10px);

}

.facility-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.facility-icon i{

    font-size:38px;

    color:var(--primary);

    transition:.35s;

}

.facility-card h4{

    margin-bottom:15px;

    font-size:24px;

    font-weight:600;

    transition:.35s;

}

.facility-card p{

    margin:0;

    color:#666;

    line-height:1.8;

    transition:.35s;

}

.facility-card:hover .facility-icon{

    background:var(--accent);

}

.facility-card:hover .facility-icon i,

.facility-card:hover h4,

.facility-card:hover p{

    color:#fff;

}

/*=========================================
Course Overview
=========================================*/

.course-overview{

    background:#fff;

}

.course-overview-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.course-overview-image img{

    width:100%;

    transition:.4s;

}

.course-overview-image:hover img{

    transform:scale(1.05);

}

.course-highlights{

    margin-top:30px;

}

.highlight-item{

    margin-bottom:18px;

    font-size:16px;

    color:#555;

}

.highlight-item i{

    color:var(--primary);

    margin-right:10px;

}

/*=========================================
Course List
=========================================*/

.course-page-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.course-page-card:hover{

    transform:translateY(-8px);

}

.course-image{

    overflow:hidden;

}

.course-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}

.course-page-card:hover img{

    transform:scale(1.05);

}

.course-body{

    padding:30px;

}

.course-body h3{

    margin-bottom:25px;

    color:var(--primary);

}

.course-info{

    list-style:none;

    padding:0;

    margin-bottom:30px;

}

.course-info li{

    padding:12px 0;

    border-bottom:1px solid #eee;

    color:#555;

}

.course-info strong{

    color:#222;

}

.method-subjects{

    margin-top:70px;

    text-align:center;

}

.method-subjects h3{

    margin-bottom:35px;

}

.subject-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.subject-grid span{

    background:#fff;

    border:1px solid #ddd;

    padding:12px 22px;

    border-radius:50px;

    transition:.35s;

    cursor:pointer;

}

.subject-grid span:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

}

/*=========================================
Admission Course Select
=========================================*/

.admission-course{

    background:#fff;

}

.admission-card{

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    box-shadow:var(--shadow);

    transition:.35s;

}

.admission-card:hover{

    background:var(--primary);

    transform:translateY(-10px);

}

.admission-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.admission-icon i{

    font-size:40px;

    color:var(--primary);

    transition:.35s;

}

.admission-card h3{

    margin-bottom:15px;

    font-size:28px;

    font-weight:700;

    transition:.35s;

}

.admission-card p{

    margin-bottom:30px;

    color:#666;

    line-height:1.8;

    transition:.35s;

}

.admission-card:hover .admission-icon{

    background:var(--accent);

}

.admission-card:hover .admission-icon i,

.admission-card:hover h3,

.admission-card:hover p{

    color:#fff;

}

/*=========================================
Faculty
=========================================*/

.faculty-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.faculty-card:hover{

    transform:translateY(-8px);

}

.faculty-card img{

    width:100%;

    height:340px;

    object-fit:cover;

}

.faculty-body{

    padding:25px;

    text-align:center;

}

.faculty-body h4{

    color:var(--primary);

    margin-bottom:10px;

}

.faculty-body small{

    display:block;

    color:#777;

    margin-bottom:12px;

}

.faculty-body p{

    margin:0;

    color:#555;

    line-height:1.8;

}

/*=========================================
Study Centre
=========================================*/

.study-gallery img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:.35s;

}

.study-gallery img:hover{

    transform:scale(1.05);

}

.gallery-card{

    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--shadow);

}

/*=========================================
Gallery Page
=========================================*/

.gallery-page{

    background:#f8fafc;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    box-shadow:var(--shadow);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*=========================================
Notice Page
=========================================*/

.notice-page{

    background:#F8FAFC;

}

.notice-table{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.notice-table table{

    margin:0;

}

.notice-table thead{

    background:var(--primary);

}

.notice-table thead th{

    color:#fff;

    padding:18px;

    border:none;

}

.notice-table tbody td{

    padding:18px;

    vertical-align:middle;

}

.notice-table tbody tr{

    transition:.3s;

}

.notice-table tbody tr:hover{

    background:#EEF4FF;

}

/*=========================================
Contact Page
=========================================*/

.contact-info{

    background:#fff;

}

.contact-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    box-shadow:var(--shadow);

    transition:.35s;

}

.contact-card:hover{

    background:var(--primary);

    transform:translateY(-8px);

}

.contact-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.contact-icon i{

    font-size:36px;

    color:var(--primary);

    transition:.35s;

}

.contact-card h4{

    margin-bottom:15px;

    font-weight:700;

    transition:.35s;

}

.contact-card p{

    margin:0;

    color:#666;

    line-height:1.8;

    transition:.35s;

}

.contact-card:hover h4,

.contact-card:hover p,

.contact-card:hover .contact-icon i{

    color:#fff;

}

.contact-card:hover .contact-icon{

    background:var(--accent);

}

.map-box{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.map-box iframe{

    display:block;

}

/*=========================================
Mobile Navbar
=========================================*/

.custom-navbar .navbar-toggler{

    border:1px solid rgba(255,255,255,.20);

    border-radius:8px;

    padding:8px 10px;

    box-shadow:none;

}

.custom-navbar .navbar-toggler:focus{

    box-shadow:none;

}

/* White Hamburger Icon */

.custom-navbar .navbar-toggler-icon{

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");

}

.testimonial-card{

    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;

}

.testimonial-card img{

    width:90px;
    height:90px;
    border-radius:50%;

    border:4px solid #0B3C91;

    padding:3px;

    background:#fff;

    box-shadow:0 8px 20px rgba(11,60,145,.25);

}

.stars{

    color:#FFA726;
    margin-bottom:15px;
    font-size:18px;

}

/*=========================================
Mobile Contact
=========================================*/

.mobile-contact{

    display:none;

}

@media (max-width:991px){

    .custom-navbar .container{

        display:flex;
        align-items:center;
        justify-content:space-between;

    }

    .mobile-contact{

        display:flex;
        align-items:center;
        gap:8px;

        font-size:12px;
        font-weight:600;

    }

    .mobile-contact a{

        color:#fff;
        text-decoration:none;

    }

    .mobile-contact i{

        color:#FFC107;
        margin-right:2px;

    }

    .mobile-contact span{

        color:rgba(255,255,255,.5);

    }

}
/*=========================================
Hero Trust Cards
=========================================*/

.hero-trust{

    margin-top:-70px;
    position:relative;
    z-index:20;
    margin-bottom:40px;

}

.trust-card{

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    transition:.35s;

    height:100%;

}

.trust-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.trust-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#0B3C91;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

}

.trust-card h3{

    font-size:36px;

    font-weight:700;

    color:#0B3C91;

    margin-bottom:8px;

}

.trust-card p{

    margin:0;

    font-size:16px;

    color:#666;

    font-weight:500;

}

.programme-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.programme-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.programme-icon{

    width:80px;

    height:80px;

    margin:auto auto 20px;

    border-radius:50%;

    background:#EEF4FF;

    color:#0B3C91;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

}

.programme-card h3{

    margin-bottom:25px;

    font-size:28px;

}

.subject-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:var(--shadow);

    height:100%;

}

.subject-card h3{

    margin-bottom:30px;

    color:#0B3C91;

}

.subject-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

}

.subject-item{

    background:#fff;

    border:1px solid #e5e5e5;

    border-left:4px solid #0B3C91;

    border-radius:10px;

    padding:14px 16px;

    font-weight:500;

    transition:.3s;

}

.subject-item i{

    color:#ff9800;

    margin-right:8px;

}

.subject-item:hover{

    background:#0B3C91;

    color:#fff;

    transform:translateY(-3px);

}

.subject-item:hover i{

    color:#fff;

}



.programme-btns{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;              /* 12px → 18px */
    flex-wrap:wrap;
    margin-top:25px;       /* 20px → 25px */
}

.programme-btns .btn-theme,
.programme-btns .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;     /* ektu boro button */
    margin:0;
}

.programme-btns .btn-theme{
    width:auto !important;
}
/* Form Wrapper */

.enquiry-form{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:18px;

    padding:28px;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}


/* Input */

.enquiry-form .form-control,
.enquiry-form .form-select{

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.22);

    color:#fff;

    height:54px;

    border-radius:10px;

    transition:.3s;

    box-shadow:none;

}


/* Textarea */

.enquiry-form textarea.form-control{

    height:120px;

    resize:none;

}


/* Placeholder */

.enquiry-form .form-control::placeholder,
.enquiry-form textarea::placeholder{

    color:rgba(255,255,255,.85);

}


/* Select */

.enquiry-form .form-select{

    color:#fff;

}

.enquiry-form .form-select option{

    color:#222;

    background:#fff;

}


/* Focus */

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus{

    background:rgba(255,255,255,.18);

    border-color:#ffb400;

    color:#fff;

    box-shadow:0 0 15px rgba(255,180,0,.35);

}


/* Submit Button */

.enquiry-form .btn-theme{

    width:100%;

    height:55px;

    border-radius:10px;

    font-size:17px;

    font-weight:700;

}
.mobile-contact a{

    font-size:18px;      /* 18px / 20px / 22px try korte paro */

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:6px;

    color:#fff;

    text-decoration:none;

}
.mobile-contact a i{

    font-size:18px;

}

.admission-title{

    display:inline-block;

    font-size:44px;

    font-weight:900;

    text-transform:uppercase;

    letter-spacing:1px;

    background:linear-gradient(
        90deg,
        #ff9800,
        #ffd54f,
        #ffffff,
        #ff9800,
        #ff5722,
        #ff9800
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    animation:admissionGradient 4s linear infinite;

}

@media(max-width:768px){

.hero::before{

display:none;

}

}


@keyframes admissionGradient{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }

}
