*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f1f5f9;
    color:#0f172a;
    overflow-x:hidden;
}
section{
    background:#f1f5f9;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 80px;
    background:rgba(255,255,255,0.85);
    border-bottom:1px solid #dbeafe;
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    width:220px;
    height:auto;
    display:block;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:40px;
}

.nav-links a{
    text-decoration:none;
    color:#0f172a;
    font-size:18px;
    transition:0.3s;
    position:relative;
}
.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#3b82f6;
    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#60a5fa;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:150px 80px 80px;
    gap:60px;
}

.hero-text{
    width:50%;
    animation:slideLeft 1s ease;
}

.hero-text h2{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text p{
    font-size:22px;
    color:#475569;
    margin-bottom:30px;
    line-height:1.6;
}

.hero-text button{
    padding:18px 40px;
    border:none;
    border-radius:40px;
    background:#3b82f6;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.hero-text button:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(59,130,246,0.4);
}
button:active{
    transform:scale(0.96);
}

.hero-image{
    width:50%;
    animation:slideRight 1s ease;
}

.hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

/* SERVICES */

.services{
    padding:100px 80px;
}

.services h2{
    font-size:55px;
    margin-bottom:50px;
    text-align:center;
}

.service-boxes{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    background:#dbe4ee;
    padding:40px;
    border-radius:25px;
    width:320px;
    transition:0.4s;
    border:1px solid #cbd5e1;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.card:hover{
    transform:translateY(-10px);
    background:#cfd9e6;
}

.card h3{
    font-size:28px;
    margin-bottom:15px;
}

.card p{
    color:#64748b;
    line-height:1.6;
}

/* ABOUT */

.about{
    display:flex;
    align-items:center;
    gap:60px;
    padding:100px 80px;
}

.about-image{
    width:50%;
}

.about-image img{
    width:100%;
    border-radius:25px;
}

.about-text{
    width:50%;
}

.about-text h2{
    font-size:55px;
    margin-bottom:20px;
}

.about-text p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
    color:#475569;
}

.about-text button{
    padding:18px 40px;
    border:none;
    border-radius:40px;
    background:#3b82f6;
    color:white;
    font-size:18px;
    box-shadow:0 10px 25px rgba(59,130,246,0.25);
transition:0.3s;
.about-text button:hover{
    transform:translateY(-5px);
}
}

/* TESTIMONIALS */

.testimonials{
    padding:100px 80px;
    text-align:center;
}

.testimonials h2{
    font-size:55px;
    margin-bottom:60px;
}

.review-container{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.review{
    background:#dbe4ee;
    color:#0f172a;
    padding:35px;
    border-radius:25px;
    width:320px;
    border:1px solid #cbd5e1;
}

.review p{
    color:#475569;
    line-height:1.7;
    margin-bottom:20px;
}

.review h4{
    color:#60a5fa;
}

/* CONTACT */

.contact{
    text-align:center;
    padding:100px 20px;
}

.contact h2{
    font-size:60px;
    margin-bottom:20px;
}

.contact p{
    font-size:22px;
    margin-bottom:30px;
    color:#475569;
}

.contact button{
    padding:18px 45px;
    border:none;
    border-radius:40px;
    background:#3b82f6;
    color:white;
    font-size:18px;
}

/* WHATSAPP BUTTON */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:white;
    padding:18px 22px;
    border-radius:50%;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* ANIMATIONS */

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* MOBILE */

@media(max-width:900px){

    .navbar{
        padding:20px;
    }

    .nav-links{
        display:none;
    }

    .hero{
        flex-direction:column;
        padding:140px 20px 40px;
    }

    .hero-text,
    .hero-image,
    .about-text,
    .about-image{
        width:100%;
    }

    .hero-text h2{
        font-size:45px;
    }

    .about{
        flex-direction:column;
        padding:50px 20px;
    }

    .services{
        padding:60px 20px;
    }

    .testimonials{
        padding:60px 20px;
    }

    .contact h2{
        font-size:42px;
    }
}
/* APPOINTMENT */

.appointment{
    padding:100px 20px;
    text-align:center;
}

.appointment h2{
    font-size:55px;
    margin-bottom:40px;
}

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    padding:18px;
    border:none;
    border-radius:15px;
    font-size:18px;
    background:white;
    color:#0f172a;
}

textarea{
    height:180px;
    resize:none;
}

form button{
    padding:18px;
    border:none;
    border-radius:40px;
    background:#3b82f6;
    color:white;
    font-size:20px;
    cursor:pointer;
}
/* DOCTOR SECTION */

.doctor{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:100px 80px;
}

.doctor-image{
    width:45%;
}

.doctor-image img{
    width:100%;
    border-radius:30px;
}

.doctor-text{
    width:55%;
}

.doctor-text h2{
    font-size:55px;
    margin-bottom:25px;
}

.doctor-text p{
    font-size:20px;
    color:#475569;
    line-height:1.8;
    margin-bottom:40px;
}

.stats{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.stat-box{
    background:#dbe4ee;
    padding:30px;
    border-radius:24px;
    width:180px;
    text-align:center;
    border:1px solid #cbd5e1;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);

}

.stat-box h3{
    font-size:40px;
    color:#60a5fa;
    margin-bottom:10px;
}

.stat-box p{
    font-size:16px;
}
.doctor{
    flex-direction:column;
    padding:60px 20px;
}

.doctor-image,
.doctor-text{
    width:100%;
}
.map{
    padding:100px 80px;
}

.map h2{
    text-align:center;
    font-size:55px;
    margin-bottom:40px;
}

.map iframe{
    border-radius:25px;
}

/* MAP */

.map-container{
    margin-top:50px;
    border-radius:25px;
    overflow:hidden;
}
.gallery{
    padding:100px 80px;
}

.gallery h2{
    text-align:center;
    font-size:55px;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-grid img{
    width:100%;
    border-radius:25px;
    height:350px;
    object-fit:cover;
    transition:0.4s;
}
.hero-image img,
.about-image img,
.doctor-image img,
.gallery-grid img{
    transition:0.5s;
}

.hero-image img:hover,
.about-image img:hover,
.doctor-image img:hover,
.gallery-grid img:hover{
    transform:scale(1.03);
}
.gallery-grid img:hover{
    transform:scale(1.05);
}
/* PREMIUM FOOTER */

.footer{
    background:#071739;
    padding:80px 80px 30px;
    margin-top:80px;
    color:white;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.footer-box{
    flex:1;
    min-width:250px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:25px;
    color:white;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:12px;
}

.footer-box a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-bottom:14px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#60a5fa;
    transform:translateX(5px);
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#cbd5e1;
}
/* MOBILE MENU */

.menu-toggle{
    display:none;
    font-size:35px;
    cursor:pointer;
}

@media(max-width:900px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:90px;
        right:0;
        background:#02112f;
        width:100%;
        flex-direction:column;
        align-items:center;
        padding:30px 0;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }
}
/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:30px;
    width:65px;
    height:65px;
    background:#25d366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    z-index:999;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}
/* FOOTER */

.footer{
    background:#02102b;
    padding:80px 80px 30px;
    margin-top:80px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.footer-box{
    flex:1;
    min-width:250px;
}

.footer-box h2{
    font-size:38px;
    margin-bottom:20px;
}

.footer-box h3{
    font-size:28px;
    margin-bottom:20px;
}

.footer-box p{
    color:#475569;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box a{
    display:block;
    color:#475569;
    text-decoration:none;
    margin-bottom:12px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#3b82f6;
    transform:translateX(5px);
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#cfcfcf;
}
.card i{
    font-size:45px;
    color:#60a5fa;
    margin-bottom:25px;
    transition:0.3s;
}

.card:hover i{
    transform:scale(1.2) rotate(5deg);
}
.footer-box a{
    color:#475569;
    text-decoration:none;
    margin-bottom:12px;
    display:block;
    transition:0.3s;
}

.footer-box a:hover{
    color:#3b82f6;
    transform:translateX(5px);
}/* FAQ */

.faq{
    padding:100px 80px;
}

.faq h2{
    text-align:center;
    font-size:55px;
    margin-bottom:50px;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.faq-box{
    background:#dbe4ee;
    color:#0f172a;
    padding:35px;
    border-radius:20px;
    transition:0.3s;
    border:1px solid #cbd5e1;
}

.faq-box:hover{
    transform:translateY(-5px);
    background:#cfd9e6;
}

.faq-box h3{
    margin-bottom:15px;
    font-size:28px;
}

.faq-box p{
    color:#475569;
    line-height:1.7;
}
/* CARD HOVER EFFECTS */

.card,
.review,
.faq-box,
.stat-box{
    transition:all 0.35s ease;
}

.card:hover,
.review:hover,
.faq-box:hover,
.stat-box:hover{
    transform:translateY(-8px);
}

/* LOADER */

#loader{
    position:fixed;
    width:100%;
    height:100vh;
    background:#03163d;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.spinner{
    width:80px;
    height:80px;
    border:8px solid rgba(255,255,255,0.2);
    border-top:8px solid #60a5fa;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin-bottom:25px;
}

#loader h2{
    font-size:42px;
    letter-spacing:3px;
    color:white;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}
/* SCROLL PROGRESS BAR */

#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:5px;
    background:#60a5fa;
    z-index:999999;
    transition:0.1s;
}
/* ACTIVE NAVBAR */

.nav-links a.active{
    color:#60a5fa;
    font-weight:bold;
}
.footer-logo{
    width:220px;
    height:auto;
    margin-bottom:20px;
    display:block;
    filter:brightness(1.2);
}
.footer-logo:hover{
    transform:scale(1.03);
    transition:0.3s;
}
/* PAGE TRANSITION */

body{
    animation:fadeInPage 0.8s ease;
}

@keyframes fadeInPage{
    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ===========================
   SPECIALISTS SECTION
=========================== */

.specialists{
    padding:100px 8%;
    background:#f7fbff;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#0b1f38;
    margin-bottom:25px;
}

.specialist-description{
    max-width:1050px;
    margin:0 auto 60px;
    text-align:center;
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.specialist-container{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.specialist-card{
    width:340px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.specialist-card:hover{
    transform:translateY(-10px);
}

.specialist-card img{
    width:100%;
    height:430px;
    object-fit:cover;
    object-position:center top;
}

.specialist-content{
    padding:25px;
}

.specialist-content h3{
    font-size:24px;
    margin-bottom:8px;
    color:#0b1f38;
}

.specialist-content span{
    color:#0b84ff;
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.specialist-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.doctor-btn{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:14px;
    background:#0b84ff;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.doctor-btn:hover{
    background:#006edc;
}