/* ===========================
   NEWTON'S INN WEBSITE
   Premium Theme — Dark Navy
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@700;800;900&display=swap');

/* ===========================
   BERLIN SANS FB DEMI
   Force on ALL devices
=========================== */

@font-face{
    font-family:'Berlin Sans FB Demi';
    src:url('fonts/BRLNSDB.TTF') format('truetype'),
        url('fonts/brlnsdb.ttf') format('truetype'),
        url('fonts/BRLNSDB.woff2') format('woff2'),
        url('fonts/BRLNSDB.woff') format('woff');
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

/* Force logo size — overrides Bootstrap img-fluid */
img.logo,
.navbar-brand img.logo,
nav img.logo{
    width:85px!important;
    height:85px!important;
    min-width:85px!important;
    max-width:85px!important;
    min-height:85px!important;
    max-height:85px!important;
    object-fit:contain!important;
    display:block!important;
    border-radius:0!important;
    border:none!important;
    flex-shrink:0!important;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.reveal-left{
    opacity:0;
    transform:translateX(-40px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal-left.active{
    opacity:1;
    transform:translateX(0);
}

.reveal-right{
    opacity:0;
    transform:translateX(40px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

.reveal-scale{
    opacity:0;
    transform:scale(.92);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal-scale.active{
    opacity:1;
    transform:scale(1);
}

/* Staggered delay for card rows */
.reveal:nth-child(1){ transition-delay:.0s; }
.reveal:nth-child(2){ transition-delay:.1s; }
.reveal:nth-child(3){ transition-delay:.2s; }
.reveal:nth-child(4){ transition-delay:.3s; }
.reveal:nth-child(5){ transition-delay:.4s; }
.reveal:nth-child(6){ transition-delay:.5s; }

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:linear-gradient(180deg,#eef2f9 0%,#f0f4fa 100%);
    color:#222;
    overflow-x:hidden;
}

/*=========================
 NAVBAR
=========================*/

.navbar{
    background:rgba(255,255,255,.95)!important;
    backdrop-filter:blur(20px);
    padding:14px 0;
    transition:.4s;
    box-shadow:0 4px 30px rgba(0,0,0,.08);
    border-bottom:1px solid rgba(26,58,92,.08);
}

.logo{
    width:100px!important;
    height:100px!important;
    max-width:none!important;
    min-width:100px!important;
    object-fit:contain;
    display:block;
    border-radius:0;
    border:none;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.navbar-brand h5{
    font-family:'Berlin Sans FB Demi','Berlin Sans FB','Nunito',sans-serif!important;
    font-size:1.9rem!important;
    font-weight:900!important;
    text-transform:uppercase;
    color:#0a1628;
    margin-bottom:0;
    letter-spacing:.5px;
}

.navbar-brand small{
    font-family:'Berlin Sans FB Demi','Berlin Sans FB','Nunito',sans-serif!important;
    font-size:1.9rem!important;
    font-weight:700!important;
    color:#555;
    letter-spacing:.3px;
}

.nav-link{
    color:#222!important;
    font-weight:600;
    margin-left:18px;
    position:relative;
    transition:.3s;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:3px;
    background:linear-gradient(90deg,#1a3a5c,#FFD54F);
    transition:.35s;
    border-radius:10px;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover{
    color:#1a3a5c!important;
}

.dropdown-menu{
    border:none;
    border-radius:18px;
    padding:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    animation:dropIn .2s ease;
}

@keyframes dropIn{
    from{ opacity:0; transform:translateY(-8px); }
    to{ opacity:1; transform:translateY(0); }
}

.dropdown-item{
    border-radius:10px;
    padding:12px;
    font-weight:500;
}

.dropdown-item:hover{
    background:linear-gradient(135deg,#1a3a5c,#1e4d7b);
    color:white;
}

/*=========================
 BUTTONS
=========================*/

/* Navbar "Apply Now" button */
.btn-success{
    background:linear-gradient(135deg,#FFD54F,#FFA000);
    border:none;
    color:#0a1628!important;
    padding:14px 34px;
    border-radius:40px;
    font-weight:700;
    transition:.35s;
    box-shadow:0 15px 25px rgba(255,160,0,.4);
}

.btn-success:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 35px rgba(255,160,0,.6);
    background:linear-gradient(135deg,#FFE57F,#FFB300);
    color:#0a1628!important;
}

/* Hero "Apply Now" button */
.hero .btn-success{
    background:white;
    color:#1a3a5c!important;
    box-shadow:0 15px 25px rgba(0,0,0,.2);
}

.hero .btn-success:hover{
    background:#FFD54F;
    color:#0a1628!important;
    box-shadow:0 20px 35px rgba(0,0,0,.3);
    transform:translateY(-4px);
}

/* Hero "Explore Courses" button */
.btn-outline-success{
    border:2.5px solid #FFD54F;
    color:#FFD54F!important;
    background:transparent;
    padding:14px 34px;
    border-radius:40px;
    font-weight:700;
    transition:.35s;
}

.btn-outline-success:hover{
    background:#FFD54F;
    color:#0a1628!important;
    border-color:#FFD54F;
    box-shadow:0 15px 30px rgba(255,213,79,.4);
    transform:translateY(-4px);
}

/*=========================
 HERO
=========================*/

.hero{
    padding:170px 0 120px;
    background:linear-gradient(135deg,#0a1628,#1a3a5c,#2563a8);
    position:relative;
    overflow:hidden;
}

/* Decorative circles */
.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-200px;
    left:-150px;
}

.hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.07);
    border-radius:50%;
    right:-120px;
    bottom:-120px;
}

.badge{
    background:white!important;
    color:#1a3a5c!important;
    padding:10px 22px;
    font-size:15px;
    border-radius:30px;
    font-weight:600;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    color:white;
    margin:20px 0;
    line-height:1.2;
}

.hero span{
    color:#FFD54F;
}

.hero p{
    font-size:18px;
    color:#f5f5f5;
    line-height:1.9;
    margin-bottom:35px;
    max-width:580px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/*=========================
 HERO SLIDER
=========================*/

.hero-slider{
    border-radius:30px;
    overflow:hidden;
    border:8px solid rgba(255,255,255,.85);
    box-shadow:0 30px 60px rgba(0,0,0,.30);
    position:relative;
}

.hero-slider .hero-image{
    height:420px;
    object-fit:cover;
    border-radius:0;
    border:none;
    box-shadow:none;
    animation:none;
}

.hero-caption{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background:linear-gradient(0deg,rgba(0,0,0,.65) 0%,transparent 100%);
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    padding:30px 20px 16px;
    text-align:center;
    letter-spacing:.3px;
}

/* Indicators */
.hero-indicators{
    bottom:50px;
}

.hero-indicators button{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    border:none;
    transition:.3s;
}

.hero-indicators button.active{
    background:#FFD54F;
    transform:scale(1.3);
}

/* Prev/Next arrows */
.hero-prev,
.hero-next{
    width:44px;
    height:44px;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(6px);
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    transition:.3s;
}

.hero-prev{ left:12px; }
.hero-next{ right:12px; }

.hero-prev:hover,
.hero-next:hover{
    background:#FFD54F;
}

.hero-arrow{
    font-size:30px;
    color:#ffffff;
    font-weight:bold;
    line-height:1;
}

.hero-prev:hover .hero-arrow,
.hero-next:hover .hero-arrow{
    color:#0a1628;
}

@media(max-width:992px){
    .hero-slider .hero-image{
        height:320px;
    }
    .hero-slider{
        margin-top:40px;
    }
}

@media(max-width:576px){
    .hero-slider .hero-image{
        height:240px;
    }
}

.hero-image{
    max-width:540px;
    width:100%;
    border-radius:30px;
    border:8px solid rgba(255,255,255,.85);
    box-shadow:0 30px 60px rgba(0,0,0,.30);
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:992px){
    .hero{
        text-align:center;
        padding-top:140px;
    }
    .hero h1{
        font-size:42px;
    }
    .hero p{
        margin:auto;
        margin-bottom:30px;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-image{
        margin-top:50px;
    }
}

@media(max-width:576px){
    .logo{
        width:55px;
        height:55px;
    }
    .hero h1{
        font-size:34px;
    }
    .hero p{
        font-size:16px;
    }
    .btn-success,
    .btn-outline-success{
        width:100%;
    }
}

/*==========================
 COURSES SECTION
==========================*/

.courses-section{
    padding:90px 0;
    background:#ffffff;
}

.section-heading span{
    color:#1a3a5c;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:46px;
    font-weight:700;
    margin:10px 0;
}

.section-heading p{
    color:#666;
    margin-bottom:50px;
}

.course-card{
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    height:100%;
    border-top:6px solid #1a3a5c;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.course-icon{
    width:80px;
    height:80px;
    background:#1a3a5c;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.course-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.course-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
    width:100%;
    flex-grow:1;
}

.course-card ul li{
    padding:8px 0;
    color:#555;
    border-bottom:1px solid #eee;
}

.course-btn{
    text-decoration:none;
    background:#1a3a5c;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.course-btn:hover{
    background:#ffb300;
    color:#fff;
}

/*==========================
 COURSES RESPONSIVE
==========================*/

@media(max-width:576px){
    .section-heading h2{
        font-size:32px;
    }
}

/* ===========================
   ABOUT PAGE
=========================== */

.page-banner{
    background:linear-gradient(135deg,#0a1628,#1a3a5c,#2563a8);
    color:#fff;
    padding:130px 0 60px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.page-banner::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-140px;
    left:-100px;
}

.page-banner::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.07);
    border-radius:50%;
    right:-80px;
    bottom:-100px;
}

.page-banner h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.page-banner p{
    font-size:16px;
    opacity:.95;
}

.about-section{
    padding:80px 0;
    background:#f0f4fa;
}

.about-section img{
    border-radius:20px;
    transition:.4s;
}

.about-section img:hover{
    transform:scale(1.03);
}

.about-section h2{
    font-weight:700;
    color:#1f2937;
    margin-bottom:20px;
}

.about-section p{
    color:#555;
    line-height:1.9;
    font-size:17px;
}

/* Director */

.director{
    background:#ffffff;
    padding:80px 0;
}

.director img{
    border:6px solid #1a3a5c;
    object-fit:cover;
}

.director h2{
    color:#1f2937;
}

.director p{
    color:#555;
    line-height:1.8;
}

/* Vision Mission */

.vision-mission{
    background:#f0f4fa;
    padding:80px 0;
}

.vm-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.35s;
    border-top:6px solid #1a3a5c;
}

.vm-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.vm-card h3{
    color:#1a3a5c;
    font-weight:700;
    margin-bottom:15px;
}

.vm-card p{
    color:#555;
    line-height:1.8;
}

/* Why Choose (About page features) */

.about-features{
    padding:80px 0;
    background:#ffffff;
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(10,22,40,.08);
    transition:.4s cubic-bezier(.22,1,.36,1);
    height:100%;
    border-top:4px solid transparent;
    border-image:linear-gradient(90deg,#1a3a5c,#FFD54F) 1;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 44px rgba(10,22,40,.15);
    background:linear-gradient(160deg,#f0f4fa,#ffffff);
}

.feature-icon{
    font-size:2.4rem;
    margin-bottom:16px;
    display:block;
}

.feature-card h4{
    font-size:20px;
    font-weight:800;
    color:#0a1628;
    margin-bottom:10px;
}

.feature-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

/*=========================
 CTA SECTION
=========================*/

.cta-section{
    background:linear-gradient(135deg,#0a1628,#1a3a5c 50%,#1e4d7b);
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-180px;
    left:-120px;
}

.cta-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,213,79,.08);
    border-radius:50%;
    bottom:-100px;
    right:-80px;
}

.cta-section h2{
    color:#ffffff;
    font-size:40px;
    font-weight:800;
}

.cta-section p{
    color:rgba(255,255,255,.85);
    font-size:17px;
    max-width:600px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-section .btn-success{
    background:linear-gradient(135deg,#FFD54F,#FFA000)!important;
    color:#0a1628!important;
    border:none!important;
    font-weight:700;
    padding:14px 36px;
    border-radius:40px;
    font-size:16px;
    transition:.35s;
    box-shadow:0 12px 25px rgba(0,0,0,.2);
}

.cta-section .btn-success:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.3);
}

.cta-section .btn-outline-success{
    border:2px solid rgba(255,255,255,.8)!important;
    color:#ffffff!important;
    background:transparent;
    font-weight:700;
    padding:14px 36px;
    border-radius:40px;
    font-size:16px;
    transition:.35s;
}

.cta-section .btn-outline-success:hover{
    background:rgba(255,255,255,.15)!important;
    transform:translateY(-4px);
}

/* Footer */

footer{
    background:linear-gradient(135deg,#1a3a5c,#0a1628)!important;
}

footer h4{
    font-weight:700;
}

footer p{
    margin-bottom:8px;
}

footer hr{
    border-color:rgba(255,255,255,.3);
}

/* About page Responsive */

@media(max-width:768px){

    .page-banner h1{
        font-size:38px;
    }

    .about-section,
    .director,
    .vision-mission,
    .about-features{
        padding:60px 0;
    }

    .about-section img,
    .director img{
        margin-bottom:30px;
    }

}

/* ===========================
   GALLERY PAGE
=========================== */

.gallery-section{
    padding:80px 0 100px;
    background:linear-gradient(160deg,#1a5c1e 0%,#1a3a5c 20%,#1e4d7b 50%,#a8c0e0 80%,#dce6f5 100%);
    position:relative;
    overflow:hidden;
}

.gallery-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-200px;
    right:-150px;
}

.gallery-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,213,79,.08);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

.gallery-category{
    background:linear-gradient(160deg,#eef2f9 0%,#ffffff 100%);
    border-radius:24px;
    padding:38px;
    margin-bottom:50px;
    box-shadow:0 14px 40px rgba(10,22,40,.12);
    transition:.4s cubic-bezier(.22,1,.36,1);
    border:1px solid rgba(26,58,92,.15);
    animation:fadeUp .8s ease;
    position:relative;
    overflow:hidden;
}

.gallery-category::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#1a3a5c,#2563a8,#FFD54F);
}

.gallery-category:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 55px rgba(10,22,40,.18);
}

.gallery-category h2{
    color:#0a1628;
    font-weight:800;
    font-size:26px;
    text-align:center;
    margin-bottom:30px;
    position:relative;
    letter-spacing:-.3px;
}

.gallery-category h2::after{
    content:"";
    width:70px;
    height:4px;
    background:linear-gradient(90deg,#1a3a5c,#FFD54F);
    display:block;
    margin:12px auto 0;
    border-radius:50px;
}

.gallery-img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:16px;
    cursor:pointer;
    transition:.4s cubic-bezier(.22,1,.36,1);
    box-shadow:0 8px 22px rgba(0,0,0,.12);
    display:block;
    border:3px solid transparent;
}

.gallery-img:hover{
    transform:scale(1.05);
    box-shadow:0 18px 40px rgba(26,58,92,.3);
    border-color:#1a3a5c;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:992px){
    .gallery-img{
        height:220px;
    }
}

@media(max-width:768px){
    .gallery-section{
        padding:60px 0 80px;
    }
    .gallery-category{
        padding:25px;
    }
    .gallery-category h2{
        font-size:20px;
    }
    .gallery-img{
        height:210px;
    }
}

@media(max-width:576px){
    .gallery-img{
        height:200px;
    }
}

/*==============================
        IMAGE LIGHTBOX
===============================*/

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    backdrop-filter:blur(6px);
}

.lightbox img{
    max-width:90%;
    max-height:85%;
    border-radius:18px;
    box-shadow:0 0 60px rgba(26,58,92,.4);
    border:3px solid rgba(255,255,255,.15);
    animation:fadeUp .3s ease;
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:40px;
    font-size:55px;
    color:white;
    cursor:pointer;
    transition:.3s;
    line-height:1;
}

.close-lightbox:hover{
    color:#FFD54F;
    transform:rotate(90deg);
}

/*=========================================
            ADMISSION PAGE
=========================================*/

.admission-page{
    background:linear-gradient(180deg,#e8eef8 0%,#f0f4fa 35%,#ffffff 100%);
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.admission-page::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(26,58,92,.06);
    border-radius:50%;
    top:-160px;
    left:-120px;
}

.admission-page::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,213,79,.10);
    border-radius:50%;
    bottom:-100px;
    right:-80px;
}

.admission-page h6{
    letter-spacing:3px;
    color:#1a3a5c;
    font-weight:700;
}

.admission-page h2{
    color:#0a1628;
    font-size:44px;
    font-weight:800;
    margin-bottom:18px;
    letter-spacing:-.5px;
}

.admission-page > .container > .row > div > p{
    color:#666;
    line-height:1.8;
}

/* ---------- LEFT INFO BOX ---------- */

.info-box{
    background:#ffffff;
    padding:34px;
    border-radius:22px;
    box-shadow:0 14px 35px rgba(10,22,40,.08);
    margin-top:30px;
    border-left:5px solid #1a3a5c;
    transition:.35s;
}

.info-box:hover{
    box-shadow:0 18px 42px rgba(10,22,40,.13);
}

.info-box h5{
    color:#0a1628;
    font-weight:800;
    margin-bottom:22px;
    font-size:20px;
}

.info-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.info-box ul li{
    padding:13px 0;
    border-bottom:1px dashed #dce8f5;
    color:#444;
    font-weight:500;
    display:flex;
    align-items:center;
}

.info-box ul li:last-child{
    border-bottom:none;
}

.info-box ul li::before{
    content:"✔";
    color:#fff;
    background:#1a3a5c;
    font-size:11px;
    font-weight:bold;
    width:20px;
    height:20px;
    min-width:20px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
}

/* ---------- FORM ---------- */

.admission-form{
    background:#ffffff;
    padding:45px;
    border-radius:26px;
    box-shadow:0 20px 50px rgba(10,22,40,.12);
    position:relative;
    overflow:hidden;
}

.admission-form::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#1a3a5c,#2563a8,#FFD54F);
}

.admission-form h3{
    color:#0a1628;
    font-weight:800;
    text-align:center;
    margin-bottom:6px;
}

.admission-form p.text-center{
    color:#777;
    margin-bottom:30px;
}

.admission-form .form-label{
    font-weight:700;
    color:#1a3a5c;
    font-size:14px;
    letter-spacing:.3px;
    margin-bottom:8px;
}

.admission-form .form-control,
.admission-form .form-select{
    border-radius:14px;
    padding:13px 16px;
    border:1.5px solid #e2e8e3;
    background:#fafdfa;
    transition:.3s;
    font-size:15px;
    color:#222;
}

.admission-form .form-control:focus,
.admission-form .form-select:focus{
    border-color:#1a3a5c;
    background:#fff;
    box-shadow:0 0 0 4px rgba(26,58,92,.12);
    outline:none;
}

.admission-form .form-select{
    cursor:pointer;
}

/* SUBMIT BUTTON — explicitly overriding bootstrap so it is always visible */

.admission-form button.btn{
    padding:16px;
    font-size:18px;
    font-weight:700;
    border-radius:14px;
    letter-spacing:.4px;
    transition:.35s;
    background:linear-gradient(135deg,#1a3a5c,#2563a8)!important;
    border:none!important;
    color:#ffffff!important;
    box-shadow:0 12px 25px rgba(26,58,92,.3);
    margin-top:10px;
}

.admission-form button.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(26,58,92,.45);
    background:linear-gradient(135deg,#0a1628,#1a3a5c)!important;
    color:#ffffff!important;
}

.admission-form button.btn:active{
    transform:translateY(-1px);
}

/* ---------- CONTACT CARDS ---------- */

.contact-card{
    background:#ffffff;
    padding:34px 28px;
    border-radius:22px;
    text-align:center;
    height:100%;
    box-shadow:0 14px 35px rgba(10,22,40,.08);
    transition:.35s;
    border-top:5px solid #1a3a5c;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 42px rgba(10,22,40,.16);
}

.contact-card h4{
    color:#0a1628;
    font-weight:800;
    margin-bottom:18px;
    font-size:21px;
}

.contact-card p{
    margin-bottom:8px;
    color:#555;
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:992px){
    .admission-page{
        padding:70px 0;
    }
    .admission-page h2{
        font-size:34px;
    }
    .admission-form{
        margin-top:25px;
    }
}

@media(max-width:768px){
    .admission-form{
        padding:28px;
    }
    .info-box{
        padding:26px;
    }
    .admission-page h2{
        font-size:30px;
    }
}

@media(max-width:576px){
    .admission-page{
        padding:60px 0;
    }
    .admission-page h2{
        font-size:26px;
    }
    .admission-form{
        padding:22px;
    }
    .contact-card{
        margin-bottom:20px;
    }
}

/*=========================================
    COURSES OVERVIEW (Homepage)
=========================================*/

.courses-overview{
    background:linear-gradient(180deg,#ffffff 0%,#f0f4fa 100%);
    padding:90px 0;
}

.courses-overview .text-muted{
    font-size:17px;
}

.overview-card{
    background:#ffffff;
    border-radius:22px;
    padding:32px 28px;
    height:100%;
    box-shadow:0 12px 30px rgba(10,22,40,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
    border-top:5px solid #1a3a5c;
    position:relative;
    overflow:hidden;
}

.overview-card::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#1a3a5c,#FFD54F);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.overview-card:hover::before{
    transform:scaleX(1);
}

.overview-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 44px rgba(10,22,40,.15);
}

.overview-icon{
    font-size:2.4rem;
    margin-bottom:16px;
}

.overview-card h4{
    font-size:22px;
    font-weight:800;
    color:#0a1628;
    margin-bottom:6px;
}

.overview-tag{
    font-size:13px;
    font-weight:700;
    color:#1a3a5c;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:14px;
    display:block;
}

.overview-card p:not(.overview-tag){
    color:#666;
    line-height:1.8;
    flex-grow:1;
    font-size:15px;
}

.overview-list{
    list-style:none;
    padding:0;
    margin:0 0 20px;
    flex-grow:1;
}

.overview-list li{
    padding:9px 0;
    border-bottom:1px dashed #dce8f5;
    color:#444;
    font-size:15px;
    display:flex;
    align-items:center;
}

.overview-list li:last-child{
    border-bottom:none;
}

.overview-list li::before{
    content:"✔";
    color:#fff;
    background:#1a3a5c;
    font-size:10px;
    font-weight:bold;
    width:18px;
    height:18px;
    min-width:18px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
}

.overview-btn{
    display:inline-block;
    margin-top:20px;
    background:linear-gradient(135deg,#1a3a5c,#2563a8);
    color:#fff;
    padding:11px 26px;
    border-radius:30px;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
    transition:.3s;
    align-self:flex-start;
}

.overview-btn:hover{
    background:linear-gradient(135deg,#FFD54F,#FFA000);
    color:#0a1628;
    box-shadow:0 10px 22px rgba(255,160,0,.3);
    transform:translateY(-2px);
}

/* Special card (Entry Test) */
.overview-card-special{
    background:linear-gradient(160deg,#0a1628,#1a3a5c 60%,#1e4d7b);
    border-top-color:#FFD54F;
}

.overview-card-special h4,
.overview-card-special p,
.overview-card-special .overview-tag{
    color:#fff;
}

.overview-card-special .overview-tag{
    color:#FFD54F;
}

.overview-card-special .overview-btn{
    background:#FFD54F;
    color:#0a1628;
}

.overview-card-special .overview-btn:hover{
    background:#fff;
    color:#0a1628;
}

/* Board Notice */
.board-notice{
    background:#ffffff;
    border-radius:18px;
    padding:24px 30px;
    box-shadow:0 8px 24px rgba(10,22,40,.08);
    border-left:6px solid #1a3a5c;
}

.board-notice h5{
    color:#0a1628;
}

@media(max-width:768px){
    .courses-overview{
        padding:60px 0;
    }
    .overview-card{
        padding:24px;
    }
    .board-notice{
        padding:20px;
    }
}

/*=========================================
            CONTACT PAGE
=========================================*/

.contact-page{
    background:linear-gradient(160deg,#1a5c1e 0%,#1a3a5c 20%,#1e4d7b 50%,#a8c0e0 80%,#dce6f5 100%);
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.contact-page::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-160px;
    right:-120px;
}

.contact-page h2,
.contact-page h3,
.contact-page h4,
.contact-page h5,
.contact-page h6,
.contact-page p,
.contact-page label{
    color:#ffffff!important;
}

.contact-page h6{
    color:#FFD54F!important;
    letter-spacing:3px;
    font-weight:700;
}

/* ---------- INFO BOX ---------- */

.contact-info-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border-radius:22px;
    padding:35px;
    box-shadow:0 14px 35px rgba(0,0,0,.15);
    border-left:5px solid #FFD54F;
    transition:.35s;
}

.contact-info-box:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.22);
    background:rgba(255,255,255,.18);
}

.contact-info-box h5{
    color:#FFD54F!important;
    font-weight:800;
    font-size:17px;
    margin-bottom:8px;
}

.contact-info-box p{
    color:#ffffff!important;
    line-height:1.8;
    margin-bottom:0;
    font-size:15px;
}

.contact-info-box hr{
    border-color:rgba(255,255,255,.25);
    margin:18px 0;
}

/* ---------- MAP ---------- */

.map-box{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,.2);
    border:3px solid rgba(255,255,255,.3);
}

.map-box iframe{
    display:block;
}

.map-box + div .btn-success{
    background:linear-gradient(135deg,#FFD54F,#FFA000)!important;
    color:#0a1628!important;
    border:none!important;
    font-weight:700;
    padding:12px 30px;
    border-radius:14px;
    transition:.35s;
}

.map-box + div .btn-success:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}

/* ---------- SOCIAL BUTTONS ---------- */

.contact-page .btn-outline-success{
    border:2px solid #FFD54F!important;
    color:#FFD54F!important;
    font-weight:700;
    border-radius:14px;
    transition:.35s;
    font-size:15px;
    background:rgba(255,255,255,.08);
}

.contact-page .btn-outline-success:hover{
    background:#FFD54F!important;
    color:#0a1628!important;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.2);
}

/* ---------- NOTICE ---------- */

.contact-page .alert-success{
    background:rgba(255,255,255,.12);
    border:1.5px solid #FFD54F;
    color:#ffffff!important;
    border-radius:16px;
    padding:20px 28px;
    font-size:15px;
    backdrop-filter:blur(8px);
}

.contact-page .alert-success strong{
    color:#FFD54F!important;
}

/*=========================================
            FAQ SECTION
=========================================*/

.faq-section{
    background:linear-gradient(180deg,#ffffff 0%,#f0f4fa 100%);
    padding:90px 0;
}

.faq-label{
    color:#1a3a5c!important;
    letter-spacing:3px;
    font-size:14px;
    display:block;
    margin-bottom:10px;
}

.faq-heading{
    color:#0a1628!important;
    font-size:42px;
    font-weight:800;
    margin-bottom:14px;
    position:relative;
    display:inline-block;
}

.faq-heading::after{
    content:"";
    width:70px;
    height:4px;
    background:linear-gradient(90deg,#1a3a5c,#FFD54F);
    display:block;
    margin:14px auto 0;
    border-radius:50px;
}

.faq-sub{
    color:#666!important;
    font-size:16px;
    max-width:580px;
    margin:0 auto;
    line-height:1.8;
}

.faq-item{
    border:none;
    border-radius:16px!important;
    margin-bottom:14px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(10,22,40,.08);
    transition:.35s;
}

.faq-item:hover{
    box-shadow:0 14px 35px rgba(10,22,40,.14);
    transform:translateY(-2px);
}

.faq-btn{
    background:linear-gradient(135deg,#f0f4fa,#ffffff)!important;
    color:#0a1628!important;
    font-weight:700;
    font-size:16px;
    padding:22px 28px;
    border:none;
    border-left:5px solid #1a3a5c!important;
    border-radius:16px!important;
    box-shadow:none!important;
}

.faq-btn:not(.collapsed){
    background:linear-gradient(135deg,#1a3a5c,#1e4d7b)!important;
    color:#ffffff!important;
    border-left-color:#FFD54F!important;
}

.faq-btn::after{
    filter:none;
    color:#1a3a5c;
}

.faq-btn:not(.collapsed)::after{
    filter:brightness(10);
}

.faq-body{
    background:#ffffff;
    color:#444!important;
    font-size:15px;
    line-height:1.9;
    padding:20px 28px 24px;
    border-left:5px solid #e8eef8;
}

/*=========================================
            CTA SECTION
=========================================*/

.contact-cta-section{
    background:linear-gradient(135deg,#0a1628,#1a3a5c 50%,#1e4d7b);
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

.contact-cta-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-150px;
    left:-100px;
}

.contact-cta-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,213,79,.08);
    border-radius:50%;
    bottom:-100px;
    right:-80px;
}

.cta-box h2{
    color:#ffffff!important;
    font-size:40px;
    font-weight:800;
    margin-bottom:14px;
}

.cta-box p{
    color:rgba(255,255,255,.85)!important;
    font-size:17px;
    max-width:500px;
    margin:0 auto;
    line-height:1.8;
}

.contact-cta-section .btn-success{
    background:linear-gradient(135deg,#FFD54F,#FFA000)!important;
    color:#0a1628!important;
    border:none!important;
    font-weight:700;
    font-size:16px;
    border-radius:14px;
    padding:14px 32px;
    transition:.35s;
    box-shadow:0 12px 25px rgba(0,0,0,.2);
}

.contact-cta-section .btn-success:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.3);
    background:linear-gradient(135deg,#FFE57F,#FFB300)!important;
}

.contact-cta-section .btn-outline-light{
    border:2px solid rgba(255,255,255,.7)!important;
    color:#ffffff!important;
    font-weight:700;
    font-size:16px;
    border-radius:14px;
    padding:14px 32px;
    transition:.35s;
    background:transparent;
}

.contact-cta-section .btn-outline-light:hover{
    background:rgba(255,255,255,.15)!important;
    border-color:#ffffff!important;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:992px){
    .contact-page{
        padding:70px 0;
    }
    .faq-section{
        padding:70px 0;
    }
    .faq-heading{
        font-size:34px;
    }
    .contact-cta-section{
        padding:60px 0;
    }
    .cta-box h2{
        font-size:32px;
    }
}

@media(max-width:768px){
    .contact-info-box{
        padding:25px;
        margin-bottom:30px;
    }
    .faq-heading{
        font-size:28px;
    }
    .faq-btn{
        font-size:15px;
        padding:18px 20px;
    }
}

@media(max-width:576px){
    .contact-page{
        padding:60px 0;
    }
    .faq-section{
        padding:60px 0;
    }
    .contact-cta-section{
        padding:50px 0;
    }
    .cta-box h2{
        font-size:26px;
    }
}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:992px){
    .hero{
        text-align:center;
        padding-top:140px;
    }
    .hero h1{
        font-size:42px;
    }
    .hero p{
        margin:auto;
        margin-bottom:30px;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-image{
        margin-top:50px;
    }
}

@media(max-width:576px){
    .logo{
        width:55px;
        height:55px;
    }
    .hero h1{
        font-size:34px;
    }
    .hero p{
        font-size:16px;
    }
    .btn-success,
    .btn-outline-success{
        width:100%;
    }
}

/*==========================
 COURSES SECTION
==========================*/

.courses-section{
    padding:90px 0;
    background:#ffffff;
}

.section-heading span{
    color:#1a3a5c;
    font-weight:700;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:46px;
    font-weight:700;
    margin:10px 0;
}

.section-heading p{
    color:#666;
    margin-bottom:50px;
}

.course-card{
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    height:100%;
    border-top:6px solid #1a3a5c;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.course-icon{
    width:80px;
    height:80px;
    background:#1a3a5c;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.course-card h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.course-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
    width:100%;
    flex-grow:1;
}

.course-card ul li{
    padding:8px 0;
    color:#555;
    border-bottom:1px solid #eee;
}

.course-btn{
    text-decoration:none;
    background:#1a3a5c;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.course-btn:hover{
    background:#ffb300;
    color:#fff;
}

/*==========================
 COURSES RESPONSIVE
==========================*/

@media(max-width:576px){
    .section-heading h2{
        font-size:32px;
    }
}

/* ===========================
   ABOUT PAGE
=========================== */

.page-banner{
    background:linear-gradient(135deg,#0a1628,#1a3a5c,#2563a8);
    color:#fff;
    padding:130px 0 60px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.page-banner::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-140px;
    left:-100px;
}

.page-banner::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.07);
    border-radius:50%;
    right:-80px;
    bottom:-100px;
}

.page-banner h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.page-banner p{
    font-size:16px;
    opacity:.95;
}

.about-section{
    padding:80px 0;
    background:#f0f4fa;
}

.about-section img{
    border-radius:20px;
    transition:.4s;
}

.about-section img:hover{
    transform:scale(1.03);
}

.about-section h2{
    font-weight:700;
    color:#1f2937;
    margin-bottom:20px;
}

.about-section p{
    color:#555;
    line-height:1.9;
    font-size:17px;
}

/* Director */

.director{
    background:#ffffff;
    padding:80px 0;
}

.director img{
    border:6px solid #1a3a5c;
    object-fit:cover;
}

.director h2{
    color:#1f2937;
}

.director p{
    color:#555;
    line-height:1.8;
}
/*=========================================
        DIRECTORS SECTION
=========================================*/

.directors-section{

padding:90px 0;

background:linear-gradient(180deg,#ffffff 0%,#eef9f1 100%);

}

.directors-section h2{

font-size:48px;

font-weight:800;

color:#165c2d;

margin-bottom:15px;

}

.directors-section p{

color:#666;

}

.director-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.director-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.director-img{

width:100%;

height:320px;

object-fit:cover;

object-position:top;

display:block;

}

.director-content{

padding:30px;

text-align:center;

}

.director-content h3{

font-size:32px;

font-weight:800;

color:#165c2d;

margin-bottom:8px;

}

.director-content h6{

color:#1a3a5c;

font-weight:600;

margin-bottom:20px;

letter-spacing:1px;

}

.director-content h6::after{

content:"";

display:block;

width:70px;

height:4px;

background:#1a3a5c;

margin:15px auto 0;

border-radius:30px;

}

.director-content p{

font-size:17px;

line-height:1.9;

color:#555;

margin:0;

}

@media(max-width:768px){

.directors-section h2{

font-size:36px;

}

.director-img{

height:260px;

}

.director-content{

padding:25px;

}

.director-content h3{

font-size:28px;

}

}
/* Vision Mission */

.vision-mission{
    background:#f0f4fa;
    padding:80px 0;
}

.vm-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.35s;
    border-top:6px solid #1a3a5c;
}

.vm-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.vm-card h3{
    color:#1a3a5c;
    font-weight:700;
    margin-bottom:15px;
}

.vm-card p{
    color:#555;
    line-height:1.8;
}

/* Why Choose (About page features) */

.about-features{
    padding:80px 0;
    background:#ffffff;
}



/* Footer */

footer{
    background:linear-gradient(135deg,#1a3a5c,#0a1628)!important;
}

footer h4{
    font-weight:700;
}

footer p{
    margin-bottom:8px;
}

footer hr{
    border-color:rgba(255,255,255,.3);
}

/* About page Responsive */

@media(max-width:768px){

    .page-banner h1{
        font-size:38px;
    }

    .about-section,
    .director,
    .vision-mission,
    .about-features{
        padding:60px 0;
    }

    .about-section img,
    .director img{
        margin-bottom:30px;
    }

}

/*=========================================
            COURSES PAGE
=========================================*/

.courses-page{
    background:linear-gradient(180deg,#e8eef8 0%,#f0f4fa 35%,#ffffff 100%);
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.courses-page::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(26,58,92,.06);
    border-radius:50%;
    top:-160px;
    right:-100px;
}

.courses-page h6{
    letter-spacing:3px;
    color:#1a3a5c;
    font-weight:700;
}

.courses-page h2{
    font-size:44px;
    font-weight:800;
    color:#0a1628;
    position:relative;
    display:inline-block;
}

.courses-page h2::after{
    content:"";
    width:70px;
    height:4px;
    background:linear-gradient(90deg,#1a3a5c,#FFD54F);
    display:block;
    margin:14px auto 0;
    border-radius:50px;
}

.course-box{
    background:#ffffff;
    border-radius:22px;
    padding:36px 30px;
    height:100%;
    box-shadow:0 12px 32px rgba(10,22,40,.08);
    transition:.4s cubic-bezier(.22,1,.36,1);
    display:flex;
    flex-direction:column;
    position:relative;
    border:1px solid rgba(26,58,92,.07);
    overflow:hidden;
    border-top:5px solid #1a3a5c;
}

.course-box:hover{
    transform:translateY(-12px);
    box-shadow:0 24px 55px rgba(10,22,40,.15);
}

.course-box h3{
    color:#0a1628;
    font-size:26px;
    font-weight:800;
    margin-bottom:8px;
}

.course-box > p{
    color:#777;
    font-weight:600;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.course-box ul{
    list-style:none;
    padding:0;
    margin:0 0 28px;
    flex-grow:1;
}

.course-box ul li{
    padding:11px 0;
    border-bottom:1px dashed #dce8f5;
    color:#444;
    font-size:15px;
    display:flex;
    align-items:center;
}

.course-box ul li:last-child{
    border-bottom:none;
}

.course-box ul li::before{
    content:"✔";
    color:#fff;
    background:#1a3a5c;
    font-size:10px;
    font-weight:bold;
    width:20px;
    height:20px;
    min-width:20px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
}

.course-box .btn{
    border-radius:14px;
    padding:13px;
    font-weight:700;
    transition:.35s;
}

.course-box .btn:hover{
    transform:scale(1.02);
}

/* Special course cards (MDCAT, ECAT etc) */
.special-course{
    background:linear-gradient(160deg,#0a1628,#1a3a5c 55%,#1e4d7b);
    color:#fff;
    border:none;
    box-shadow:0 20px 45px rgba(6,14,26,.3);
    border-top-color:#FFD54F;
}

.special-course::after{
    content:"POPULAR";
    position:absolute;
    top:18px;
    right:-32px;
    background:#FFD54F;
    color:#0a1628;
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
    padding:5px 40px;
    transform:rotate(40deg);
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}

.special-course:hover{
    transform:translateY(-12px);
    box-shadow:0 28px 55px rgba(6,14,26,.4);
}

.special-course h3,
.special-course > p,
.special-course ul li{
    color:#fff;
}

.special-course > p{
    color:rgba(255,255,255,.75);
}

.special-course ul li{
    border-bottom-color:rgba(255,255,255,.2);
}

.special-course ul li::before{
    background:#FFD54F;
    color:#0a1628;
}

.special-course .btn{
    background:#fff!important;
    color:#0a1628!important;
    border:none!important;
}

.special-course .btn:hover{
    background:#FFD54F!important;
    color:#0a1628!important;
}

@media(max-width:992px){
    .courses-page{ padding:70px 0; }
    .courses-page h2{ font-size:34px; }
}

@media(max-width:768px){
    .courses-page{ padding:60px 0; }
    .course-box{ padding:25px; }
    .courses-page h2{ font-size:28px; }
}

@media(max-width:576px){
    .course-box h3{ font-size:22px; }
    .course-box ul li{ font-size:14px; }
}

/*=========================================
            NOTES PAGE
=========================================*/

.notes-page{
    background:linear-gradient(180deg,#e8eef8 0%,#f0f4fa 35%,#ffffff 100%);
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.notes-page::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(26,58,92,.06);
    border-radius:50%;
    top:-160px;
    right:-100px;
}

.notes-page h6{
    letter-spacing:3px;
    color:#1a3a5c;
    font-weight:700;
}

.notes-page h2{
    color:#0a1628;
    font-size:44px;
    font-weight:800;
    margin-bottom:18px;
}

.notes-page p{
    color:#666;
    line-height:1.8;
}

.note-card{
    background:#ffffff;
    border-radius:22px;
    padding:35px 30px;
    height:100%;
    box-shadow:0 12px 32px rgba(10,22,40,.08);
    transition:.4s cubic-bezier(.22,1,.36,1);
    display:flex;
    flex-direction:column;
    border-top:5px solid #1a3a5c;
    position:relative;
    overflow:hidden;
}

.note-card::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#1a3a5c,#FFD54F);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.note-card:hover::before{
    transform:scaleX(1);
}

.note-card:hover{
    transform:translateY(-12px);
    box-shadow:0 24px 55px rgba(10,22,40,.15);
}

.note-card h3{
    color:#0a1628;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.note-card p{
    color:#555;
    font-size:15px;
    line-height:1.8;
    flex-grow:1;
    margin-bottom:25px;
}

.note-card .btn{
    border-radius:14px;
    padding:13px;
    font-weight:700;
    transition:.35s;
    background:linear-gradient(135deg,#FFD54F,#FFA000)!important;
    color:#0a1628!important;
    border:none!important;
    box-shadow:0 8px 20px rgba(255,160,0,.3);
}

.note-card .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 28px rgba(255,160,0,.45);
    background:linear-gradient(135deg,#FFE57F,#FFB300)!important;
}

@media(max-width:992px){
    .notes-page{ padding:70px 0; }
    .notes-page h2{ font-size:34px; }
}

@media(max-width:768px){
    .notes-page{ padding:60px 0; }
    .note-card{ padding:25px; }
    .note-card h3{ font-size:20px; }
    .notes-page h2{ font-size:28px; }
}

/*=========================================
            STATS SECTION
=========================================*/

.stats-section{
    background:#ffffff;
    padding:70px 0;
    position:relative;
    overflow:hidden;
}

.stats-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(26,58,92,.04);
    border-radius:50%;
    top:-120px;
    left:-80px;
}

.stat-card{
    background:#ffffff;
    border-radius:22px;
    padding:38px 28px;
    text-align:center;
    box-shadow:0 10px 35px rgba(10,22,40,.08);
    transition:.4s cubic-bezier(.22,1,.36,1);
    border:1px solid rgba(26,58,92,.08);
    position:relative;
    overflow:hidden;
}

.stat-card::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#1a3a5c,#FFD54F);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.stat-card:hover::before{
    transform:scaleX(1);
}

.stat-card:hover{
    transform:translateY(-12px);
    box-shadow:0 22px 50px rgba(10,22,40,.14);
}

.stat-icon{
    font-size:2.8rem;
    margin-bottom:16px;
    display:block;
}

.stat-number{
    font-size:46px;
    font-weight:800;
    color:#1a3a5c;
    margin-bottom:8px;
    line-height:1;
    background:linear-gradient(135deg,#1a3a5c,#2563a8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.stat-label{
    color:#666;
    font-size:15px;
    font-weight:600;
    margin:0;
    letter-spacing:.3px;
}

@media(max-width:768px){
    .stats-section{ padding:50px 0; }
    .stat-number{ font-size:36px; }
    .stat-card{ padding:28px 20px; }
}
/* ==============================
   PREMIUM FLOATING WHATSAPP
============================== */

.whatsapp-float{

    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 62px;
    height: 62px;

    background: #ffffff;

    border: 3px solid #25D366;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(0,0,0,.18);

    transition: all .35s ease;

    z-index: 99999;
}

.whatsapp-float i{

    color:#25D366;

    font-size:32px;

    transition:.35s;
}

.whatsapp-float:hover{

    background:#25D366;

    transform:translateY(-6px) scale(1.08);

    box-shadow:
        0 18px 40px rgba(37,211,102,.45);

}

.whatsapp-float:hover i{

    color:#fff;

}

/* Floating animation */

@keyframes whatsappFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0);
    }

}

.whatsapp-float{

    animation:whatsappFloat 3s ease-in-out infinite;

}

/* Mobile */

@media(max-width:768px){

    .whatsapp-float{

        width:56px;
        height:56px;

        right:18px;
        bottom:18px;

    }

    .whatsapp-float i{

        font-size:28px;

    }

}