*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}


/*==========================
NAVBAR
===========================*/

.navbar-brand{

    font-size:30px;
    font-weight:700;

}

.nav-link{

    font-weight:500;
    margin-left:20px;
    color:#222 !important;

}
.site-navbar{
    position:sticky;
    top:0;
    z-index:9999;
     background:rgba(255,255,255,.78) !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.35);
    box-shadow:0 10px 35px rgba(3,35,84,.12) !important;
}

.site-navbar.navbar-scrolled{
    background:rgba(255,255,255,.94) !important;
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    box-shadow:0 12px 35px rgba(3,35,84,.18) !important;
}
/* Desktop only */
@media (min-width: 992px){

    .nav-link:hover{
        color:#0099ff !important;
    }

}
/*==========================
HERO
===========================*/

.hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    background:#f8fbff;

}

.hero h1{

    line-height:1.2;

}

.hero img{

    max-width:100%;

}
/*=========================================
HERO SECTION
=========================================*/

.hero{

    background:linear-gradient(135deg,#0D6EFD,#052A75);

    padding:100px 0;

    color:white;

    overflow:hidden;

}

.hero-tag{

    background:white;

    color:#0D6EFD;

    padding:8px 18px;

    border-radius:30px;

    display:inline-block;

    font-weight:600;

    margin-bottom:25px;

}

.hero-title{

    font-size:60px;

    font-weight:700;

    line-height:1.2;

}

.hero-subtitle{

    color:#FFD54F;

    font-size:40px;

    font-weight:700;

    margin-bottom:20px;

}

.hero-text{

    font-size:18px;

    color:#f1f1f1;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


/*=========================================
HERO IMAGE CAROUSEL
=========================================*/

.hero-image-box{
    position:relative;
    width:100%;
    max-width:760px;
    margin:0 auto;
}

.hero-carousel{
    width:100%;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 65px rgba(0,0,0,.28);
    background:#061b46;
}

.hero-carousel .carousel-inner{
    width:100%;
}

.hero-carousel .carousel-item{
    width:100%;
}

.hero-carousel .hero-image{
    display:block;
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    object-position:center;
}

/* Mobile */

@media(max-width:991px){

    .hero-image-box{
        max-width:700px;
        margin-top:45px;
    }

}

@media(max-width:576px){

    .hero-carousel{
        border-radius:18px;
    }

}

/* Glowing Circles */

.circle{

    position:absolute;

    border-radius:50%;

    filter:blur(40px);

    animation:float 8s ease-in-out infinite;

}

.circle1{

    width:280px;

    height:280px;

    background:rgba(255,255,255,.10);

    top:-70px;

    left:-80px;

}

.circle2{

    width:180px;

    height:180px;

    background:rgba(255,255,255,.08);

    bottom:80px;

    right:100px;

    animation-delay:2s;

}

.circle3{

    width:120px;

    height:120px;

    background:rgba(255,255,255,.12);

    top:180px;

    right:30%;

    animation-delay:4s;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-25px);

}

100%{

transform:translateY(0px);

}

}
.hero-image-box{

    position:relative;

}

.floating-badge{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    background:white;

    color:#0D6EFD;

    padding:12px 22px;

    border-radius:40px;

    font-weight:600;

    box-shadow:0 12px 35px rgba(0,0,0,.15);

    z-index:100;

    animation:badgeFloat 3s ease-in-out infinite;

}

@keyframes badgeFloat{

0%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,-10px);

}

100%{

transform:translate(-50%,0);

}

}
.hero-wave{

position:absolute;

bottom:-2px;

left:0;

width:100%;

line-height:0;

}

.hero-wave svg{

display:block;

width:100%;

height:120px;

}

/*==========================
ABOUT
==========================*/

.about{

padding:100px 0;

background:#fff;

}

.section-tag{

background:#EAF3FF;

color:#0D6EFD;

padding:8px 20px;

border-radius:30px;

font-weight:600;

display:inline-block;

margin-bottom:20px;

}

.section-title{

font-size:42px;

font-weight:700;

margin-bottom:25px;

}

.section-title span{

color:#0D6EFD;

}

.about p{

font-size:17px;

line-height:1.8;

color:#666;

}
/*==========================
WHY CHOOSE US
===========================*/

.why-us{

    padding:100px 0;

    background:#f8fbff;

}

.feature-card{

    background:#fff;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(13,110,253,.20);
}

.feature-icon{

    width:80px;

    height:80px;

    background:#0D6EFD;

    color:#fff;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;
	box-shadow:0 10px 25px rgba(13,110,253,.35);

}

.feature-card:hover .feature-icon{

    transform:rotate(10deg) scale(1.1);

}

.feature-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

    line-height:1.7;

}
/*==========================
COURSES
===========================*/

.courses{

padding:100px 0;

background:white;

}

.course-card{

background:linear-gradient(135deg,#0D6EFD,#052A75);

color:white;

padding:40px 30px;

border-radius:25px;

text-align:center;

transition:.4s;

height:100%;

box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.course-card:hover{

transform:translateY(-12px);

}

.course-icon{

font-size:55px;

margin-bottom:25px;

display:block;

color:#FFD54F;

transition:.4s;

}

.course-card:hover .course-icon{

transform:scale(1.2) rotate(8deg);

}

.course-card h4{

font-weight:700;

margin-bottom:15px;

}

.course-card p{

margin-bottom:25px;

opacity:.9;

}

.course-card .btn{

font-weight:600;

border-radius:30px;

padding:10px 25px;

}
/*==========================
COURSE CARD GRADIENTS
==========================*/

.school-card{
    background:linear-gradient(135deg,#00C6FF,#0072FF);
}

.science-card{
    background:linear-gradient(135deg,#8E2DE2,#4A00E0);
}

.commerce-card{
    background:linear-gradient(135deg,#11998E,#38EF7D);
}

.exam-card{
    background:linear-gradient(135deg,#F857A6,#FF5858);
}

.school-card:hover{
    box-shadow:0 20px 40px rgba(0,114,255,.35);
}

.science-card:hover{
    box-shadow:0 20px 40px rgba(74,0,224,.35);
}

.commerce-card:hover{
    box-shadow:0 20px 40px rgba(17,153,142,.35);
}

.exam-card:hover{
    box-shadow:0 20px 40px rgba(248,87,166,.35);
}
/*==========================
TOPPERS
===========================*/

.results{

    background:#f8fbff;

    padding:100px 0;

}

.topper-card{

    background:white;

    border-radius:20px;

    padding:25px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.topper-card:hover{

    transform:translateY(-10px);

}

.topper-card img{

    width:170px;

    height:170px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #0D6EFD;

    margin-bottom:20px;

}

.topper-card h4{

    font-weight:700;

}

.topper-card h2{

    color:#0D6EFD;

    font-weight:700;

    margin:15px 0;

}
/*==========================
TESTIMONIALS
===========================*/

.testimonials{

    padding:100px 0;

    background:white;

}

.review-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.review-card:hover{

    transform:translateY(-10px);

}

.review-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

    border:4px solid #0D6EFD;

}

.stars{

    color:#FFC107;

    font-size:20px;

    margin:15px 0;

}

.review-card p{

    color:#666;

    line-height:1.8;

}

/*==========================
ANNOUNCEMENT BAR
===========================*/

/*==========================
ANNOUNCEMENT BAR
===========================*/

.announcement{

    background:#FFD54F;

    color:#052A75;

    overflow:hidden;

    white-space:nowrap;

    padding:14px 0;

    font-weight:600;

    position:relative;

    z-index:20;

}

.announcement-track{

    display:flex;

    width:max-content;

    animation:scrollAnnouncement 28s linear infinite;

}

.announcement-content{

    display:flex;

    align-items:center;

    padding-right:80px;

    font-size:17px;

}

@keyframes scrollAnnouncement{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* Hover करने पर Scroll रुक जाएगा */

.announcement:hover .announcement-track{

    animation-play-state:paused;

}
/*=========================================
CALL TO ACTION
=========================================*/

.cta-section{

    padding:90px 0;

    background:#f8fbff;

}

.cta-box{

    background:linear-gradient(135deg,#0D6EFD,#052A75);

    border-radius:30px;

    padding:60px;

    color:white;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

}

.cta-box p{

    font-size:18px;

    margin-top:15px;

    opacity:.95;

}

.cta-box .btn{

    border-radius:50px;

    padding:14px 35px;

    font-weight:600;

}
/*=========================================
GALLERY
=========================================*/

.gallery-section{

padding:100px 0;

background:#ffffff;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:20px;

cursor:pointer;

box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.gallery-item img{

width:100%;

height:280px;

object-fit:cover;

transition:.6s;

}

.gallery-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(13,110,253,.70);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.5s;

}

.gallery-overlay i{

font-size:55px;

color:white;

transform:scale(.4);

transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.gallery-item:hover i{

transform:scale(1);

}
/*=========================================
FLOATING BUTTONS
==========================================*/

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:30px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:1040;

}

.float-btn{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

    text-decoration:none;

    border:none;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.float-btn:hover{

    transform:translateY(-6px) scale(1.08);

}

/* Call */

.call-btn{

    background:#0D6EFD;

}

/* WhatsApp */

.whatsapp-btn{

    background:#25D366;

}

/* Map */

.map-btn{

    background:#ff5722;

}

/* Top */

.top-btn{

    background:#111827;

}

/* Pulse Animation */

.whatsapp-btn{

    animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.6);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

#backToTop{

display:none;

}
/*=========================================
FAQ
=========================================*/

.faq-section{

    padding:100px 0;

    background:#f8fbff;

}

.accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:15px !important;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.accordion-button{

    font-size:18px;

    font-weight:600;

    padding:20px;

}

.accordion-button:not(.collapsed){

    background:#0D6EFD;

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    line-height:1.8;

    color:#666;

}
/*=========================================
CONTACT
=========================================*/

.contact-section{

    padding:100px 0;

    background:#ffffff;

}
/*=========================================
ADMISSION ENQUIRY FORM
=========================================*/

.admission-form-card{
    position:relative;
    padding:42px;
    border:1px solid #e7edf5;
    border-radius:28px;
    background:#ffffff;
    box-shadow:0 20px 55px rgba(6,43,101,.10);
    overflow:hidden;
}

.admission-form-card::before{
    content:"";
    position:absolute;
    top:-90px;
    right:-90px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(13,110,253,.08);
}

.form-heading{
    position:relative;
    z-index:2;
    margin-bottom:30px;
}

.form-badge{
    display:inline-block;
    margin-bottom:12px;
    padding:7px 14px;
    border-radius:30px;
    color:#0d6efd;
    background:#eaf3ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.form-heading h3{
    margin-bottom:10px;
    color:#08224f;
    font-size:clamp(27px,3vw,36px);
    font-weight:800;
}

.form-heading p{
    margin:0;
    color:#687386;
    line-height:1.7;
}

.form-label{
    margin-bottom:8px;
    color:#23324b;
    font-size:14px;
    font-weight:600;
}

.form-label span{
    color:#dc3545;
}

.input-group-custom{
    position:relative;
}

.input-group-custom > i{
    position:absolute;
    top:50%;
    left:18px;
    z-index:5;
    color:#0d6efd;
    font-size:18px;
    transform:translateY(-50%);
    pointer-events:none;
}

.input-group-custom .form-control,
.input-group-custom .form-select{
    width:100%;
    min-height:56px;
    padding-left:50px;
    border:1px solid #dce3ed;
    border-radius:14px;
    color:#23324b;
    background-color:#ffffff;
    box-shadow:none;
    transition:.3s ease;
}

.input-group-custom .form-control::placeholder{
    color:#929bac;
}

.input-group-custom .form-control:focus,
.input-group-custom .form-select:focus,
.enquiry-textarea:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 4px rgba(13,110,253,.10);
}

.enquiry-textarea{
    width:100%;
    min-height:125px;
    padding:16px 18px;
    border:1px solid #dce3ed;
    border-radius:14px;
    resize:vertical;
    box-shadow:none;
}

.enquiry-submit-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    min-height:58px;
    margin-top:8px;
    border:0;
    border-radius:50px;
    color:#ffffff;
    background:linear-gradient(135deg,#25d366,#128c4a);
    font-size:17px;
    font-weight:700;
    box-shadow:0 12px 28px rgba(37,211,102,.25);
    cursor:pointer;
    transition:.3s ease;
}

.enquiry-submit-btn:hover{
    color:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(37,211,102,.35);
}

.enquiry-submit-btn i{
    font-size:21px;
}

.form-trust-text{
    display:flex;
    align-items:flex-start;
    gap:9px;
    margin-top:18px;
    padding:13px 15px;
    border-radius:12px;
    color:#526071;
    background:#f4f8ff;
    font-size:13px;
    line-height:1.6;
}

.form-trust-text i{
    flex:0 0 auto;
    margin-top:2px;
    color:#198754;
    font-size:17px;
}

/* Responsive */

@media(max-width:767px){

    .admission-form-card{
        padding:28px 20px;
        border-radius:22px;
    }

    .form-heading{
        margin-bottom:24px;
    }

    .form-heading h3{
        font-size:27px;
    }

}
.contact-info{

    background:linear-gradient(135deg,#0D6EFD,#052A75);

    color:#fff;

    padding:40px;

    border-radius:25px;

    height:100%;
	

word-break:break-word;



}

.contact-info h3{

    font-weight:700;

    margin-bottom:15px;

}

.contact-info p{

    opacity:.95;

}

.info-box{

    display:flex;

    align-items:flex-start;

    margin-top:30px;

}

.info-box i{

    width:55px;

    height:55px;

    background:rgba(255,255,255,.15);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-right:18px;

    flex-shrink:0;

}

.info-box h6{

    margin-bottom:4px;

    font-weight:600;

}

.info-box p{

    margin:0;

}

.map-box{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}
/*=========================================
MODERN SITE FOOTER
=========================================*/

.site-footer,
.site-footer *{
    box-sizing:border-box;
}

.site-footer{
    position:relative;
    width:100%;
    max-width:100%;
    overflow:hidden;
    padding:0 0 24px;
    color:#ffffff;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(36,132,255,.28),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(0,194,255,.18),
            transparent 25%
        ),
        linear-gradient(135deg,#061b46 0%,#073c91 55%,#0869df 100%);
}

/* Subtle decorative glow */

.site-footer::before,
.site-footer::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(10px);
}

.site-footer::before{
    width:320px;
    height:320px;
    top:-170px;
    left:-130px;
    background:rgba(255,255,255,.05);
}

.site-footer::after{
    width:260px;
    height:260px;
    right:-100px;
    bottom:-130px;
    background:rgba(66,165,245,.14);
}

.site-footer .container{
    position:relative;
    z-index:2;
    width:100%;
}

/*=========================================
FOOTER CTA
=========================================*/

.footer-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:65px;
    padding:34px 38px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:0 0 28px 28px;
    background:rgba(255,255,255,.10);
    box-shadow:0 18px 50px rgba(0,0,0,.18);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.footer-cta > div{
    min-width:0;
}

.footer-cta-label{
    display:inline-block;
    margin-bottom:10px;
    color:#ffd54f;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.2px;
}

.footer-cta h2{
    margin:0 0 8px;
    color:#ffffff;
    font-size:clamp(26px,3vw,40px);
    font-weight:700;
    line-height:1.2;
    overflow-wrap:anywhere;
}

.footer-cta p{
    max-width:700px;
    margin:0;
    color:rgba(255,255,255,.78);
    line-height:1.7;
    overflow-wrap:anywhere;
}

.footer-cta-buttons{
    display:flex;
    flex:0 0 auto;
    align-items:center;
    gap:12px;
}

.footer-primary-btn,
.footer-outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:48px;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;
    transition:transform .3s ease,
               background .3s ease,
               color .3s ease;
}

.footer-primary-btn{
    color:#07275f;
    background:#ffd54f;
}

.footer-outline-btn{
    color:#ffffff;
    border:1px solid rgba(255,255,255,.45);
    background:rgba(255,255,255,.08);
}

.footer-primary-btn:hover,
.footer-outline-btn:hover{
    transform:translateY(-3px);
}

.footer-primary-btn:hover{
    color:#07275f;
    background:#ffffff;
}

.footer-outline-btn:hover{
    color:#073c91;
    background:#ffffff;
}

/*=========================================
FOOTER GRID
=========================================*/

.footer-grid{
    display:grid;
    grid-template-columns:minmax(0,1.45fr)
                          minmax(0,.75fr)
                          minmax(0,.9fr)
                          minmax(0,1.2fr);
    gap:48px;
    width:100%;
    padding-bottom:48px;
}

.footer-column{
    min-width:0;
    max-width:100%;
}

.footer-brand-name{
    display:inline-block;
    margin-bottom:18px;
    color:#ffffff;
    font-size:32px;
    font-weight:800;
    line-height:1.2;
    text-decoration:none;
}

.footer-brand-name:hover{
    color:#ffd54f;
}

.footer-column h3{
    position:relative;
    margin:4px 0 24px;
    padding-bottom:12px;
    color:#ffffff;
    font-size:19px;
    font-weight:700;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:42px;
    height:3px;
    border-radius:3px;
    background:#ffd54f;
}

.footer-brand p{
    max-width:430px;
    margin:0 0 22px;
    color:rgba(255,255,255,.76);
    line-height:1.8;
    overflow-wrap:anywhere;
}

/* Rating */

.footer-rating{
    display:inline-flex;
    flex-direction:column;
    max-width:100%;
    margin-bottom:24px;
    padding:13px 16px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    background:rgba(255,255,255,.08);
}

.footer-stars{
    display:flex;
    gap:4px;
    color:#ffd54f;
    font-size:16px;
}

.footer-rating span{
    margin-top:6px;
    color:rgba(255,255,255,.82);
    font-size:13px;
    overflow-wrap:anywhere;
}

/* Social Icons */

.footer-socials{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.footer-socials a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:13px;
    color:#ffffff;
    background:rgba(255,255,255,.08);
    font-size:19px;
    text-decoration:none;
    transition:.3s ease;
}

.footer-socials a:hover{
    color:#073c91;
    background:#ffd54f;
    transform:translateY(-4px);
}

/* Links */

.footer-nav,
.footer-programs{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-nav li,
.footer-programs li{
    margin-bottom:13px;
    color:rgba(255,255,255,.76);
    line-height:1.6;
    overflow-wrap:anywhere;
}

.footer-nav a{
    display:inline-flex;
    align-items:center;
    color:rgba(255,255,255,.78);
    text-decoration:none;
    transition:.25s ease;
}

.footer-nav a::before{
    content:"›";
    margin-right:8px;
    color:#ffd54f;
    font-size:20px;
    line-height:1;
}

.footer-nav a:hover{
    color:#ffffff;
    transform:translateX(4px);
}

/* Contact Card */

.footer-contact-card{
    padding:25px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:20px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
    width:100%;
    margin-bottom:18px;
    color:rgba(255,255,255,.82);
    line-height:1.6;
    text-decoration:none;
}

.footer-contact-item:last-child{
    margin-bottom:0;
}

.footer-contact-item i{
    flex:0 0 auto;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    color:#ffd54f;
    background:rgba(255,255,255,.10);
}

.footer-contact-item span{
    min-width:0;
    max-width:100%;
    overflow-wrap:anywhere;
    word-break:break-word;
}

a.footer-contact-item:hover{
    color:#ffffff;
}

/*=========================================
FOOTER BOTTOM
=========================================*/

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.13);
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:14px;
    overflow-wrap:anywhere;
}

.footer-bottom-links{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.footer-bottom-links a{
    color:rgba(255,255,255,.72);
    font-size:14px;
    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#ffd54f;
}

/*=========================================
RESPONSIVE FOOTER
=========================================*/

@media(max-width:1199px){

    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:42px;
    }

}

@media(max-width:991px){

    .footer-cta{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-cta-buttons{
        width:100%;
        flex-wrap:wrap;
    }

}

@media(max-width:767px){

    .site-footer{
        padding-bottom:18px;
    }

    .footer-cta{
        margin-bottom:48px;
        padding:28px 22px;
        border-radius:0 0 22px 22px;
    }

    .footer-cta-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .footer-primary-btn,
    .footer-outline-btn{
        width:100%;
    }

    .footer-grid{
        grid-template-columns:minmax(0,1fr);
        gap:38px;
    }

    .footer-column h3::after{
        left:0;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:480px){

    .footer-brand-name{
        font-size:27px;
    }

    .footer-contact-card{
        padding:20px;
    }

    .footer-bottom-links{
        flex-direction:column;
        gap:8px;
    }

}
/*=========================================
SCROLL PROGRESS BAR
=========================================*/

#scrollProgress{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,#ffd54f,#ff5722);
    z-index:10000;
    transition:width .1s linear;
}


/*=========================================
STICKY NAVBAR EFFECT
=========================================*/

.site-navbar{
    padding:16px 0;
    transition:all .35s ease;
}

.site-navbar.navbar-scrolled{
    padding:8px 0;
    box-shadow:0 8px 30px rgba(0,0,0,.12) !important;
}

.site-navbar .navbar-brand{
    transition:.35s ease;
}

.site-navbar.navbar-scrolled .navbar-brand{
    font-size:25px;
}

.site-navbar .nav-link{
    position:relative;
}

.site-navbar .nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:2px;
    width:0;
    height:2px;
    background:#0d6efd;
    transform:translateX(-50%);
    transition:.3s ease;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after{
    width:70%;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}


*{
    box-sizing:border-box;
}

html,
body{
    max-width:100%;
    overflow-x:clip;
}

.container,
.container-fluid,
.row,
.col,
[class*="col-"]{
    max-width:100%;
}

p{

    margin-bottom:1rem;

    line-height:1.8;

    word-wrap:break-word;

    overflow-wrap:break-word;

    word-break:normal;

    white-space:normal;

    max-width:100%;

}

h1,h2,h3,h4,h5,h6{

    overflow-wrap:break-word;

}

img{

    max-width:100%;

    height:auto;

}


/*=========================================
COURSE DETAILS MODALS
=========================================*/

.course-modal{
    border:0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 80px rgba(0,0,0,.28);
}

.course-modal .modal-header{
    align-items:flex-start;
    padding:28px 30px 22px;
    border-bottom:1px solid #e7edf6;
    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(13,110,253,.15),
            transparent 30%
        ),
        #ffffff;
}

.course-modal .modal-title{
    margin:7px 0 0;
    color:#08224f;
    font-size:clamp(25px,3vw,34px);
    font-weight:800;
}

.modal-course-tag{
    display:inline-block;
    padding:7px 13px;
    border-radius:30px;
    color:#0d6efd;
    background:#eaf3ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.course-modal .btn-close{
    margin-top:3px;
    box-shadow:none;
}

.course-modal .modal-body{
    padding:30px;
    background:#f8fbff;
}

.modal-intro{
    max-width:760px;
    margin:0 0 25px;
    color:#596477;
    font-size:16px;
    line-height:1.8;
    overflow-wrap:anywhere;
}

.modal-detail-card{
    height:100%;
    padding:24px;
    border:1px solid #e4eaf3;
    border-radius:18px;
    background:#ffffff;
    box-shadow:0 10px 30px rgba(6,43,101,.07);
}

.modal-detail-card h4{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:#0b3477;
    font-size:19px;
    font-weight:700;
}

.modal-detail-card h4 i{
    color:#0d6efd;
}

.modal-detail-card ul{
    margin:0;
    padding-left:20px;
}

.modal-detail-card li{
    margin-bottom:10px;
    color:#5c6574;
    line-height:1.6;
    overflow-wrap:anywhere;
}

.modal-detail-card li:last-child{
    margin-bottom:0;
}

.modal-feature-strip{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding-top:4px;
}

.modal-feature-strip span{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:8px 14px;
    border-radius:30px;
    color:#0b3477;
    background:#eaf3ff;
    font-size:14px;
    font-weight:600;
}

.course-modal .modal-footer{
    gap:10px;
    padding:20px 30px 26px;
    border-top:0;
    background:#ffffff;
}

.course-modal .modal-footer .btn{
    min-width:135px;
    padding:11px 20px;
    border-radius:30px;
    font-weight:600;
}

@media(max-width:767px){

    .course-modal{
        border-radius:18px;
    }

    .course-modal .modal-header,
    .course-modal .modal-body,
    .course-modal .modal-footer{
        padding-left:20px;
        padding-right:20px;
    }

    .course-modal .modal-footer{
        flex-direction:column;
    }

    .course-modal .modal-footer .btn{
        width:100%;
    }

}


/*============================================================
  FINAL CORRECTIONS / RESPONSIVE OVERRIDES
  Keep this block at the END of style.css
============================================================*/

:root{
    --srp-primary:#0d6efd;
    --srp-dark:#052a75;
    --srp-accent:#ffd54f;
    --srp-text:#23324b;
    --srp-light:#f8fbff;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    min-height:100%;
    color:var(--srp-text);
    background:#fff;
}

/* Top bar */
.top-bar{
    position:relative;
    z-index:1035;
    padding:8px 0;
    color:#fff;
    background:linear-gradient(90deg,var(--srp-primary),#0755c9);
    font-size:14px;
    font-weight:600;
}

/* Sticky navbar: no parent wrapper should use overflow:hidden/auto */
.site-navbar{
    position:-webkit-sticky !important;
    position:sticky !important;
    top:0 !important;
    width:100%;
    z-index:1030 !important;
    padding:16px 0;
    background:#fff !important;
    transition:padding .35s ease, box-shadow .35s ease;
}

.site-navbar.navbar-scrolled{
    padding:8px 0;
    box-shadow:0 8px 30px rgba(0,0,0,.12) !important;
}

/* Keep decorative shapes behind real content */
.hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    padding:100px 0;
    color:#fff;
    background:linear-gradient(135deg,var(--srp-primary),var(--srp-dark));
    overflow:hidden;
}

.hero > .container{
    position:relative;
    z-index:2;
}

.circle,
.hero-wave,
.admission-form-card::before,
.cta-box::before,
.site-footer::before,
.site-footer::after{
    pointer-events:none;
}

/* Text safety */
p,
h1,h2,h3,h4,h5,h6,
span,a,li,label{
    max-width:100%;
    overflow-wrap:break-word;
}

.row > *,
.footer-column,
.footer-cta > div,
.info-box > div{
    min-width:0;
}

img,
iframe,
svg{
    max-width:100%;
}

/* Course and feature card hover only on pointer devices */
@media (hover:hover) and (pointer:fine){
    .feature-card:hover{
        transform:translateY(-12px);
        box-shadow:0 20px 40px rgba(13,110,253,.20);
    }

    .feature-card:hover .feature-icon{
        transform:rotate(10deg) scale(1.1);
        box-shadow:0 15px 35px rgba(13,110,253,.55);
    }

    .course-card:hover{
        transform:translateY(-12px) scale(1.02);
    }
}

/* Topper carousel controls */
#topperCarousel{
    position:relative;
    padding:10px 65px 65px;
}

.topper-control{
    width:50px;
    height:50px;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background:var(--srp-primary);
    opacity:1;
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

.carousel-control-prev.topper-control{left:0;}
.carousel-control-next.topper-control{right:0;}

.topper-indicators{
    bottom:5px;
    margin-bottom:0;
}

.topper-indicators button{
    width:10px !important;
    height:10px !important;
    border:0 !important;
    border-radius:50%;
    background-color:#8ba7d7 !important;
}

.topper-indicators button.active{
    width:28px !important;
    border-radius:10px;
    background-color:var(--srp-primary) !important;
}

/* Bootstrap modal stacking/clickability fix */
.modal{
    position:fixed !important;
    z-index:10560 !important;
    pointer-events:auto !important;
}

.modal-dialog{
    position:relative;
    z-index:10570 !important;
    pointer-events:auto !important;
}

.modal-content{
    position:relative;
    z-index:10580 !important;
    pointer-events:auto !important;
    opacity:1 !important;
    filter:none !important;
}

.modal-backdrop{
    z-index:10500 !important;
}

.modal-backdrop.show{
    opacity:.55 !important;
}

.modal button,
.modal a,
.modal input,
.modal textarea,
.modal select{
    pointer-events:auto !important;
}

.floating-buttons{
    z-index:1040;
}

/* Navbar hover is desktop-only */
@media (min-width:992px){
    .site-navbar .nav-link:hover{
        color:#0099ff !important;
    }

    .site-navbar .nav-link:hover::after,
    .site-navbar .nav-link.active::after{
        width:70%;
    }
}

@media (max-width:991px){
    .site-navbar .nav-link{
        margin-left:0;
        padding:10px 0;
    }

    .site-navbar .nav-link:hover{
        color:#222 !important;
    }

    .site-navbar .nav-link::after{
        display:none;
    }

    .hero{
        min-height:auto;
        padding:75px 0;
    }

    .hero-title{
        font-size:clamp(40px,8vw,54px);
    }

    .hero-subtitle{
        font-size:clamp(30px,6vw,38px);
    }

    .cta-box{
        padding:42px 30px;
    }
}

@media (max-width:767px){
    .top-bar .row{
        row-gap:6px;
        text-align:center;
    }

    .top-bar .text-end{
        text-align:center !important;
    }

    .section-title{
        font-size:clamp(30px,8vw,38px);
    }

    .hero-buttons{
        gap:12px;
    }

    .hero-buttons .btn{
        flex:1 1 150px;
    }

    .cta-box{
        padding:34px 22px;
        text-align:center;
    }

    .cta-box h2{
        font-size:30px;
    }

    #topperCarousel{
        padding:10px 0 65px;
    }

    .topper-control{
        width:44px;
        height:44px;
        top:auto;
        bottom:0;
        transform:none;
    }

    .carousel-control-prev.topper-control{
        left:calc(50% - 70px);
    }

    .carousel-control-next.topper-control{
        right:calc(50% - 70px);
    }

    .topper-indicators{
        bottom:13px;
    }

    .floating-buttons{
        right:14px;
        bottom:18px;
        gap:10px;
    }

    .float-btn{
        width:50px;
        height:50px;
        font-size:20px;
    }
}

@media (max-width:480px){
    .hero{
        padding:60px 0;
    }

    .hero-title{
        font-size:38px;
    }

    .hero-text{
        font-size:16px;
    }

    .course-card,
    .feature-card,
    .topper-card,
    .review-card{
        border-radius:18px;
    }

    .admission-form-card,
    .contact-info{
        padding:24px 18px;
    }
}
.navbar-brand img{
    width:40px;
    height:40px;
    object-fit:contain;
}