*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#ffffff;
    color:#222;
}

/* TOP BAR */
.top-bar{
    background:#0B2A4A;
    color:white;
    text-align:center;
    padding:10px;
    font-size:14px;
}

/* HEADER */
header{
    position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    flex-wrap:wrap;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-section img{
    width:100px;
    height:100px;
    object-fit:contain;
    background:white;
    padding:5px;
    border-radius:10px;
}

.logo-section h1{
    color:#0B2A4A;
    font-size:28px;
}

.logo-section p{
    color:#666;
    font-size:13px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#0B2A4A;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#F2B705;
}

.menu-toggle{
    display:none;
    background:#0B2A4A;
    color:white;
    border:none;
    font-size:28px;
    padding:8px 14px;
    border-radius:5px;
    cursor:pointer;
}

/* ANNOUNCEMENT */
.announcement-bar{
    background:#F2B705;
    color:#0B2A4A;
    padding:12px;
    font-weight:bold;
    font-size:16px;
}

/* HERO SLIDER */
.hero-slider{
    width:100%;
    height:auto;
    overflow:hidden;
    position:relative;
    background:#0B2A4A;
}

.slides{
    width:100%;
    position:relative;
}

.slide{
    display:none;
    width:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    display:block;
    opacity:1;
}

.slide img{
    width:100%;
    max-height:650px;
    object-fit:contain;
    display:block;
    margin:auto;
    background:#0B2A4A;

}

/* COMMON SECTIONS */
.courses,
.core-courses,
.about,
.achievements,
.gallery,
.faculty,
.testimonials,
.location,
.contact,
.fee-section{
    padding:80px 8%;
    text-align:center;
}

.courses h2,
.core-courses h2,
.about h2,
.achievements h2,
.gallery h2,
.faculty h2,
.testimonials h2,
.location h2,
.contact h2,
.fee-section h2{
    font-size:40px;
    color:#0B2A4A;
    margin-bottom:20px;
}

.section-subtitle{
    font-size:18px;
    color:#555;
    max-width:800px;
    margin:0 auto 45px;
    line-height:1.6;
}

/* PROGRAM CARDS */
.course-grid,
.core-course-grid,
.achievement-grid,
.faculty-grid,
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card,
.core-card,
.achievement-card,
.faculty-card,
.testimonial-card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover,
.core-card:hover,
.faculty-card:hover{
    transform:translateY(-8px);
}

.card h3,
.core-card h3,
.achievement-card h3,
.faculty-card h3{
    color:#0B2A4A;
    margin-bottom:15px;
    font-size:22px;
}

.card p,
.core-card p,
.achievement-card p,
.faculty-card p,
.testimonial-card p{
    line-height:1.7;
}

/* COURSES */
.courses{
    background:white;
}

.courses h2{
    margin-bottom:50px;
}

/* CORE COURSES */
.core-courses{
    background:#ffffff;
}

.core-card{
    background:#f8f8f8;
    border-top:5px solid #F2B705;
}

.core-card:hover{
    background:#0B2A4A;
    color:white;
}

.core-card:hover h3{
    color:#F2B705;
}

/* NEET SECTION */
.neet-section{
    background:#0B2A4A;
    color:white;
    padding:80px 8%;
    text-align:center;
}

.neet-content h2{
    font-size:42px;
    margin-bottom:25px;
}

.neet-content p{
    font-size:20px;
    line-height:1.8;
    max-width:900px;
    margin:auto;
    margin-bottom:35px;
}

.neet-btn,
.btn{
    background:#F2B705;
    color:#0B2A4A;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:bold;
    display:inline-block;
    transition:0.4s;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.neet-btn:hover,
.btn:hover{
    background:white;
    transform:translateY(-5px);
}

/* ABOUT */
.about{
    background:#f5f5f5;
}

.about p{
    font-size:20px;
    line-height:1.8;
    max-width:1000px;
    margin:auto;
}

/* ACHIEVEMENTS */
.achievements{
    background:#f5f5f5;
}

.achievement-card{
    text-align:left;
    border-left:5px solid #F2B705;
}

/* COUNTER */
.counter-section{
    background:#0B2A4A;
    color:white;
    padding:70px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.counter-box{
    padding:20px;
}

.counter-box h2{
    font-size:55px;
    color:#F2B705;
    margin-bottom:15px;
}

.counter-box p{
    font-size:20px;
}

/* GALLERY */
.gallery{
    background:white;
}

.gallery h2{
    margin-bottom:50px;
}

.gallery-slider{
    width:100%;
    overflow:hidden;
}

.gallery-track{
    display:flex;
    gap:25px;
    animation:slideGallery 25s linear infinite;
}

.gallery-track img{
    width:32%;
    min-width:32%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

@keyframes slideGallery{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-70%);
    }
}

.gallery-slider:hover .gallery-track{
    animation-play-state:paused;
}

/* FACULTY */
.faculty{
    background:white;
}

.faculty-card{
    background:#f8f8f8;
    border-bottom:5px solid #F2B705;
}

.faculty-card:hover{
    background:#0B2A4A;
    color:white;
}

.faculty-card:hover h3{
    color:#F2B705;
}

/* TESTIMONIALS */
.testimonials{
    background:#f5f5f5;
}

.testimonial-card h4{
    color:#0B2A4A;
    margin-top:15px;
}

/* LOCATION */
.location{
    background:white;
}

.location p{
    font-size:18px;
    margin-bottom:30px;
    line-height:1.6;
}

.map-box{
    max-width:1000px;
    margin:auto;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.map-box iframe{
    width:100%;
    height:350px;
    border:0;
}

/* CONTACT */
.contact{
    background:#f5f5f5;
}

.contact p,
.address{
    margin-bottom:10px;
    font-size:18px;
    line-height:1.6;
}

.enquiry-form{
    max-width:600px;
    margin:40px auto 0;
    display:flex;
    flex-direction:column;
    gap:20px;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.enquiry-form input,
.enquiry-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:16px;
}

.enquiry-form textarea{
    min-height:120px;
}

.enquiry-form button{
    background:#0B2A4A;
    color:white;
    border:none;
    padding:15px;
    border-radius:6px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.enquiry-form button:hover{
    background:#F2B705;
    color:#0B2A4A;
}

/* PAGE HERO FOR INNER PAGES */
.page-hero{
    background:#0B2A4A;
    color:white;
    text-align:center;
    padding:100px 8%;
}

.page-hero h2{
    font-size:48px;
    margin-bottom:20px;
    color:#F2B705;
}

.page-hero p{
    font-size:20px;
    line-height:1.6;
}

/* FEE TABLE */
.fee-section{
    background:#f5f5f5;
}

.fee-table-box{
    overflow-x:auto;
    margin-top:40px;
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.fee-table-box table{
    width:100%;
    border-collapse:collapse;
    min-width:800px;
}

.fee-table-box th{
    background:#0B2A4A;
    color:white;
    padding:15px;
    font-size:16px;
}

.fee-table-box td{
    padding:14px;
    border-bottom:1px solid #ddd;
    font-size:15px;
}

.fee-table-box tr:hover{
    background:#fff4cc;
}

/* FOOTER */
footer{
    width:100%;
    background:#0B2A4A;
    color:white;
    text-align:center;
    padding:25px 10px;
}

.footer-content{
    color:white;
    font-size:18px;
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:white;
    padding:14px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:999;
}

.floating-whatsapp:hover{
    background:#1ebe5d;
}

/* MOBILE */
@media(max-width:768px){
    header{
        flex-direction:column;
        gap:20px;
    }

    .logo-section{
        flex-direction:column;
        text-align:center;
    }

    .logo-section h1{
        font-size:24px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        background:white;
        padding:15px 0;
    }

    nav.active{
        display:flex;
    }

    nav a{
        padding:12px;
        border-bottom:1px solid #eee;
    }

    .courses h2,
    .core-courses h2,
    .about h2,
    .achievements h2,
    .gallery h2,
    .faculty h2,
    .testimonials h2,
    .location h2,
    .contact h2,
    .fee-section h2{
        font-size:32px;
    }

    .gallery-track img{
        width:85%;
        min-width:85%;
    }

    .page-hero h2{
        font-size:34px;
    }

    .fee-table-box table{
        min-width:700px;
    }
}
/* DROPDOWN MENU */

.dropdown{
    position:relative;
}

.dropdown-content{
    display:none;
    position:absolute;
    background:white;
    min-width:220px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    border-radius:8px;
    overflow:hidden;
    top:100%;
    left:0;
    z-index:999;
}

.dropdown-content a{
    display:block;
    padding:14px 18px;
    color:#0B2A4A;
    text-decoration:none;
    border-bottom:1px solid #eee;
    font-weight:normal;
}

.dropdown-content a:hover{
    background:#F2B705;
    color:#0B2A4A;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* MOBILE DROPDOWN */

@media(max-width:768px){

    .dropdown-content{
        position:static;
        box-shadow:none;
        border-radius:0;
    }

    .dropdown-content a{
        background:#f8f8f8;
    }
}