

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#333;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#087f12;
    box-shadow:0 2px 15px #111827;
}

.navbar{
    max-width:1300px;
    margin:auto;
    padding:12px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-box img{
    width:165px;
    height:65px;
    object-fit:contain;
}

.logo-text h2{
    font-size:20px;
    color:#087f12;
    font-weight:700;
    line-height:1.2;
}

.logo-text span{
    font-size:12px;
    color:#777;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links li a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.nav-links li a:hover{
    color:#087f12;
}

.apply-btn{
    background:#f5b900;
    color:#000;
    text-decoration:none;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.apply-btn:hover{
    background:#087f12;
    color:#fff;
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#087f12;
}

/* HERO */

.hero{
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1579154204601-01588f351e67?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    padding:120px 20px;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:50px;
    margin-bottom:15px;
}

.hero p{
    max-width:800px;
    margin:auto;
    font-size:18px;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:70px 0;
}

.section-title{
    text-align:center;
    font-size:35px;
    color:#087f12;
    margin-bottom:40px;
}

/* INFO BOXES */

.course-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:60px;
}

.info-box{
    background:#fff;
    border-radius:12px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.info-box h3{
    color:#f5b900;
    margin-bottom:10px;
}

/* CURRICULUM */

.year-section{
    margin-bottom:50px;
}

.year-title{
    background:#087f12;
    color:#fff;
    padding:15px 20px;
    border-radius:10px;
    font-size:24px;
    margin-bottom:20px;
}

.curriculum-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    border-radius:10px;
    overflow:hidden;
}

.curriculum-table th{
    background:#f5b900;
    padding:15px;
    color:#000;
}

.curriculum-table td{
    padding:15px;
    border-bottom:1px solid #eee;
}

.curriculum-table tr:hover{
    background:#fafafa;
}

/* CAREER */

.career{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.career h2{
    color:#087f12;
    margin-bottom:15px;
}

.career ul{
    margin-top:15px;
    padding-left:20px;
}

.career li{
    margin-bottom:8px;
}

/* FOOTER */

.footer{
    background:#111827;
    color:#fff;
    padding:60px 20px 20px;
    margin-top:70px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

.footer h3{
    color:#f5b900;
    margin-bottom:15px;
}

.footer p,
.footer li{
    color:#d1d5db;
    font-size:14px;
    line-height:1.8;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:8px;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
}

/* MOBILE */

@media(max-width:992px){

.nav-links{
    position:absolute;
    top:90px;
    left:-100%;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:20px;
    transition:.4s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.nav-links.active{
    left:0;
}

.menu-toggle{
    display:block;
}

.apply-btn{
    display:none;
}

.logo-text h2{
    font-size:15px;
}

.logo-box img{
    width:50px;
    height:50px;
}

.hero h1{
    font-size:34px;
}

.section-title{
    font-size:28px;
}

.curriculum-table{
    display:block;
    overflow-x:auto;
}

}

.hero-slider{position:relative;height:500px;overflow:hidden}
.slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;animation:fade 15s infinite}
.slide:nth-child(1){background-image:url('https://meghbalika.in/medical-dialysis/dialysis/dialysis1.jpg');animation-delay:0s}
.slide:nth-child(2){background-image:url('https://meghbalika.in/medical-dialysis/dialysis/dialysis2.png');animation-delay:5s}
.slide:nth-child(3){background-image:url('https://meghbalika.in/medical-dialysis/dialysis/dialysis3.png');animation-delay:10s}
@keyframes fade{0%,33%{opacity:1}34%,100%{opacity:0}}
.overlay{position:absolute;inset:0;background:rgba(0,0,0,.55);display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;padding:20px}
.footer{background:#111827;padding:40px 20px;text-align:center}
.footer img{max-width:320px;width:100%;background:#fff;padding:10px;border-radius:10px}
