*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    overflow-x:hidden;
}

/* HEADER */
.top-header{
    background:#efefef;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.doctor-info{
    text-align:center;
}

.doctor-info h1{
    color:#f57c00;
    font-size:25px;
    font-weight:800;
}

.doctor-info p{
    font-size:13px;
    line-height:1.5;
}

.contact-box{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
}

.contact-box i{
    color:#007bff;
    font-size:22px;
}

/* NAVBAR */
.navbar{
    background:#0095da;
}

.nav-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    height:70px;
}

.nav-links{
    list-style:none;
    display:flex;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    color:#fff;
    text-decoration:none;
    padding:25px 18px;
    display:block;
    font-size:13px;
}

.nav-links li:hover > a{
    background:rgba(255,255,255,.1);
}

/* DROPDOWN */
.dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:#efefef;
    min-width:280px;
    display:none;
    border-top:4px solid orange;
    z-index:999;
}

.dropdown li{
    border-bottom:1px solid #ddd;
        list-style: none;

}

.dropdown-menu ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.dropdown li a{
    color:#222 !important;
    padding:18px 20px;
}

.nav-links li:hover .dropdown{
    display:block;
}

/* BUTTON */
.appointment-btn{
    background:#ff8c00;
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    border-radius:40px;
    font-size:15px;
}

/* MOBILE */
.mobile-toggle{
    display:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}
@media(max-width:991px){

/* HEADER */
.top-header{
    background:#efefef;
    padding:10px 15px;
    text-align:center;
    display:block;
}

.doctor-info h1{
    color:#f57c00;
    font-size:22px;
    font-weight:800;
    margin-bottom:5px;
}

.doctor-info p{
    font-size:15px;
    line-height:1.5;
    color:#000;
}

.contact-box{
    display:none;
}

/* NAVBAR */
.navbar{
    background:#000;
    position:relative;
}

.desktop-menu{
    display:none;
}

.nav-container{
    height:auto;
    padding:12px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#000;
}

/* MENU */
.mobile-toggle{
    display:flex;
    align-items:center;
    gap:12px;
    color:#8d8d8d;
    font-size:18px;
    cursor:pointer;
}

.mobile-toggle i{
    font-size:28px;
    color:#8d8d8d;
}

.mobile-toggle::after{
    content:"MENU";
    letter-spacing:3px;
}

/* BUTTON */
.appointment-btn{
    background:#ff8c00;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:40px;
    font-size:15px;
    font-weight:500;
}

/* MOBILE MENU */
.mobile-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#000;
    z-index:999;

    /* animation */
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

/* OPEN MENU */
.mobile-nav.active{
    max-height:100vh;
}

.mobile-top{
    display:none;
}

.mobile-nav ul{
    list-style:none;
}

.mobile-nav ul li{
    margin:10px 0;
}

.mobile-nav ul li a{
    color:#fff;
    text-decoration:none;
    display:block;
    padding:18px 35px;
    font-size:17px;
    text-transform:uppercase;
}

/* DROPDOWN */
.mobile-dropdown{
    display:none;
    background:#111;
}

.mobile-dropdown a{
    padding-left:55px !important;
    color:#ccc !important;
    font-size:15px !important;
}

.mobile-submenu.active .mobile-dropdown{
    display:block;
}

}

/* DESKTOP */
@media(min-width:992px){
.mobile-nav{
    display:none;
}

.mobile-toggle{
    display:none;
}
}












.hero-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slider{
    position:relative;
    width:100%;
    height:650px;
    background:#fff;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:contain; /* FULL IMAGE SHOW */
    display:block;
}

/* Dots */
.dots-container{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    opacity:0.5;
    cursor:pointer;
}

.dot.active{
    background:#ffc107;
    opacity:1;
}

/* Mobile */
@media(max-width:768px){

    .slider{
        height:300px;
    }

    .slide img{
        object-fit:contain; /* full image in mobile */
    }

    .dot{
        width:10px;
        height:10px;
    }
}







.clinic-section{
    width:100%;
    padding:0px 100px;
}

.clinic-container{
    display:flex;
    width:100%;
}

.clinic-card{
    flex:1;
    color:#fff;
    padding:25px 28px; /* decreased top-bottom space */
    position:relative;
    min-height:300px; /* decreased height */
}

/* Background Colors */
.blue-card{
    background:#3d87e9;
}

.dark-blue-card{
    background:#1976f3;
}

.orange-card{
    background:#ff8500;
}

/* Icon Circle */
.clinic-icon{
    width:100px;
    height:100px;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 0px;
}

.clinic-icon i{
    font-size:48px;
    color:#fff;
}

.clinic-card h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
    font-weight:500;
}

.clinic-card h3{
    font-size:24px;
    margin-bottom:14px;
    font-weight:700;
}

.timing-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:15px;
    font-size:22px;
    line-height:1.7;
}

.address{
    font-size:20px;
    line-height:1.8;
    display:flex;
    gap:15px;
}

.address i{
    margin-top:8px;
}

.contact-row{
    display:flex;
    gap:20px;
    margin-top:30px;
    font-size:22px;
    line-height:1.7;
}

.contact-row i{
    margin-top:8px;
    font-size:24px;
}

/* Mobile Responsive */
@media(max-width:991px){

    .clinic-section{
        padding: 0px;
    }

    .clinic-container{
        flex-direction:column;
    }

    .clinic-card{
        padding:45px 20px;
        min-height:auto;
    }

    .clinic-card h2{
        font-size:30px;
    }

    .clinic-card h3{
        font-size:22px;
    }

    .timing-row{
        flex-direction:column;
        gap:8px;
        font-size:18px;
    }

    .address{
        font-size:18px;
    }

    .contact-row{
        font-size:18px;
        gap:15px;
    }

    .clinic-icon{
        width:80px;
        height:80px;
    }

    .clinic-icon i{
        font-size:35px;
    }
}















.about-doctor{
    width:100%;
    background:#f3f3f3;
    padding:50px 0;
}

.about-container{
    width:85%;
    max-width:1450px;
    margin:auto;
    display:flex;
    align-items:flex-start;
    gap:70px;
}

/* LEFT IMAGE */
.doctor-image{
    width:46%;
}

.doctor-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
}

/* RIGHT CONTENT */
.doctor-content{
    width:50%;
    padding-top:10px;
}

.small-heading{
    font-size:12px;
    letter-spacing:5px;
    color:#222;
    display:block;
    margin-bottom:15px;
}

.doctor-content h2{
    font-size: 35px;
    color:#f57c00;
    font-weight:700;
    margin-bottom:30px;
}

.doctor-content h1{
    font-size:35px;
    line-height:1.4;
    color:#000;
    font-weight:700;
    margin-bottom:25px;
}

.doctor-content h3{
    font-size:20px;
    color:#3d3d3d;
    margin-bottom:20px;
    font-weight:600;
}

.line{
    width:100%;
    height:1px;
    background:#d7d7d7;
    margin:15px 0;
}

.doctor-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    margin-bottom:20px;
}

.read-btn{
    display:inline-block;
    background:#f57c00;
    color:#fff;
    text-decoration:none;
    padding:18px 28px;
    border-radius:40px;
    font-size:18px;
    font-weight:500;
    margin-top:10px;
    transition:.3s;
}

.read-btn:hover{
    transform:translateY(-3px);
}

/* Responsive */
@media(max-width:991px){

    .about-doctor{
        padding:40px 0;
    }

    .about-container{
        width:92%;
        flex-direction:column;
        gap:35px;
    }

    .doctor-image,
    .doctor-content{
        width:100%;
    }

    .doctor-image img{
        height:450px;
    }

    .small-heading{
        font-size:16px;
        letter-spacing:3px;
    }

    .doctor-content h2{
        font-size:34px;
        margin-bottom:15px;
    }

    .doctor-content h1{
        font-size:30px;
        margin-bottom:18px;
    }

    .doctor-content h3{
        font-size:20px;
        margin-bottom:12px;
    }

    .doctor-content p{
        font-size:17px;
        line-height:1.9;
    }

    .read-btn{
        font-size:18px;
        padding:14px 28px;
    }
}

















.services-section{
    width:100%;
    background:#f3f3f3;
    padding:40px 0 60px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size: 30px;
    color:#f57c00;
    font-weight:700;
}

/* Cards */
.services-container{
    width:83%;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:34px;
}

.service-card{
    width:320px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.service-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

.service-content{
    padding:22px 25px 28px;
    text-align:center;
}

.service-content h3{
    font-size:25px;
    color:#1267ea;
    margin-bottom:12px;
    font-weight:700;
}

.service-content p{
    font-size:18px;
    line-height:1.5;
    color:#555;
    margin-bottom:1px;
    min-height:185px; /* equal card height */
}

.service-btn{
    display:inline-block;
    background:#f57c00;
    color:#fff;
    text-decoration:none;
    padding:14px 25px;
    border-radius:40px;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

.service-btn:hover{
    transform:translateY(-3px);
}

/* Tablet */
@media(max-width:1200px){

    .services-container{
        flex-wrap:wrap;
        width:92%;
    }

    .service-card{
        width:48%;
    }
}

/* Mobile */
@media(max-width:768px){

    .services-section{
        padding:30px 0 40px;
    }

    .section-title{
        margin-bottom:25px;
    }

    .section-title h2{
        font-size:38px;
    }

    .services-container{
        width:92%;
        flex-direction:column;
        gap:20px;
    }

    .service-card{
        width:100%;
    }

    .service-card img{
        height:240px;
    }

    .service-content{
        padding:20px;
    }

    .service-content h3{
        font-size:26px;
    }

    .service-content p{
        font-size:17px;
        min-height:auto;
        margin-bottom:22px;
    }

    .service-btn{
        padding:12px 30px;
        font-size:17px;
    }
}












.symptoms-section{
    width:100%;
    background:#f3f3f3;
    padding:30px 0 50px;
}

.symptoms-heading{
    text-align:center;
    margin-bottom:45px;
}

.symptoms-heading h2{
    font-size:40px;
    color:#f57c00;
    font-weight:700;
    line-height:1.2;
}

/* Container */
.symptoms-container{
    width:91%;
    max-width:1550px;
    margin:auto;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:70px;
}

/* Left Image */
.symptoms-image{
    width:48%;
}

.symptoms-image img{
    width:100%;
    height:470px;
    object-fit:cover;
    display:block;
}

/* Right Content */
.symptoms-content{
    width:40%;
    padding-top:10px;
}

.symptoms-content ul{
    padding-left:30px;
}

.symptoms-content ul li{
    font-size:18px;
    color:#666;
    font-weight:600;
    margin-bottom:24px;
    line-height:1.4;
}

/* Tablet */
@media(max-width:991px){

    .symptoms-container{
        flex-direction:column;
        gap:35px;
    }

    .symptoms-image,
    .symptoms-content{
        width:100%;
    }

    .symptoms-image img{
        height:400px;
    }

    .symptoms-content{
        padding-top:0;
    }

    .symptoms-content ul li{
        font-size:24px;
        margin-bottom:18px;
    }
}

/* Mobile */
@media(max-width:768px){

    .symptoms-section{
        padding:25px 0 35px;
    }

    .symptoms-heading{
        margin-bottom:25px;
        padding:0 15px;
    }

    .symptoms-heading h2{
        font-size:34px;
        line-height:1.3;
    }

    .symptoms-container{
        width:92%;
        gap:25px;
    }

    .symptoms-image img{
        height:250px;
    }

    .symptoms-content ul{
        padding-left:22px;
    }

    .symptoms-content ul li{
        font-size:20px;
        margin-bottom:14px;
        font-weight:600;
    }
}















.testimonial-section{
    width:100%;
    background:#f3f3f3;
    padding:50px 0 70px;
}

.testimonial-heading{
    text-align:center;
    margin-bottom:50px;
}

.testimonial-heading span{
    font-size:18px;
    letter-spacing:4px;
    color:#222;
    display:block;
    margin-bottom:10px;
}

.testimonial-heading h2{
    font-size: 30px;
    color:#f57c00;
    font-weight:700;
}

/* Slider */
.testimonial-slider{
    position:relative;
    width:65%;
    margin:auto;
    min-height:350px;
}

.testimonial-slide{
    position:absolute;
    width:100%;
    opacity:0;
    transition:1s ease;
    visibility:hidden;
}

.testimonial-slide.active{
    opacity:1;
    visibility:visible;
    position:relative;
}

.quote-icon{
    color:#2d7df6;
    font-size:40px;
    margin-bottom:25px;
}

.testimonial-slide p{
    font-size:18px;
    line-height:2;
    color:#555;
    margin-bottom:30px;
    max-width:900px;
}

.testimonial-slide h3{
    font-size:25px;
    color:#f57c00;
    font-weight:500;
}

/* Dots */
.testimonial-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#cfcfcf;
    cursor:pointer;
    transition:0.3s;
}

.dot.active{
    background:#2d7df6;
}

/* Mobile Responsive */
@media(max-width:991px){

    .testimonial-slider{
        width:90%;
        min-height:420px;
    }

    .testimonial-heading h2{
        font-size:42px;
    }

    .testimonial-slide p{
        font-size:18px;
        line-height:1.9;
    }

    .testimonial-slide h3{
        font-size:30px;
    }
}

@media(max-width:768px){

    .testimonial-section{
        padding:35px 0 45px;
    }

    .testimonial-heading{
        margin-bottom:30px;
    }

    .testimonial-heading span{
        font-size:14px;
        letter-spacing:3px;
    }

    .testimonial-heading h2{
        font-size:34px;
    }

    .testimonial-slider{
        width:92%;
        min-height:400px;
    }

    .quote-icon{
        font-size:45px;
        margin-bottom:15px;
    }

    .testimonial-slide p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:20px;
    }

    .testimonial-slide h3{
        font-size:24px;
    }

    .dot{
        width:11px;
        height:11px;
    }
}















.appointment-section{
    width:100%;
    background:#f3f3f3;
    padding:40px 0 60px;
}

.appointment-heading{
    text-align:center;
    margin-bottom:40px;
}

.appointment-heading h2{
    font-size:35px;
    font-weight:800;
    color:#000;
}

/* Container */
.appointment-container{
    width:86%;
    margin:auto;
    display:flex;
    gap:38px;
    align-items:flex-start;
}

/* Cards */
.appointment-card{
    width:420px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:4px;
    overflow:hidden;
}

.map-box iframe{
    width:100%;
    height:320px;
    border:0;
}

.card-content{
    padding:22px;
}

.card-content h3{
    font-size:25px;
    color:#2f7df7;
    margin-bottom:20px;
    font-weight:700;
}

.info-row{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
}

.info-row i{
    color:#f57c00;
    font-size:18px;
    min-width:28px;
    margin-top:3px;
}

.info-row span{
    font-size:16px;
    color:#222;
    line-height:1.7;
}

/* Appointment box */
.appointment-box{
    width:430px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:4px;
    padding:25px;
    text-align:center;
}

.appointment-box h3{
    font-size:25px;
    margin-bottom:35px;
    font-weight:800;
}

.whatsapp-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    width:100%;
    background:#07c300;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    padding:22px;
    border-radius:6px;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-2px);
}

.whatsapp-btn i{
    font-size:42px;
}

/* Tablet */
@media(max-width:1200px){

    .appointment-container{
        flex-wrap:wrap;
        justify-content:center;
    }

    .appointment-card,
    .appointment-box{
        width:48%;
    }
}

/* Mobile */
@media(max-width:768px){

    .appointment-section{
        padding:35px 0;
    }

    .appointment-heading{
        margin-bottom:25px;
    }

    .appointment-heading h2{
        font-size:38px;
    }

    .appointment-container{
        width:92%;
        flex-direction:column;
        gap:20px;
    }

    .appointment-card,
    .appointment-box{
        width:100%;
    }

    .map-box iframe{
        height:250px;
    }

    .card-content h3{
        font-size:30px;
    }

    .info-row span{
        font-size:17px;
    }

    .info-row i{
        font-size:22px;
    }

    .appointment-box{
        padding:20px;
    }

    .appointment-box h3{
        font-size:32px;
        margin-bottom:20px;
    }

    .whatsapp-btn{
        font-size:18px;
        padding:18px;
        gap:12px;
    }

    .whatsapp-btn i{
        font-size:30px;
    }
}













.footer-section{
    width:100%;
    background:#0b0b0d;
    padding:60px 0 0;
}

.footer-container{
    width:84%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:70px;
}

.footer-column{
    flex:1;
}

.footer-column h3{
    color:#fff;
    font-size:35px;
    font-weight:700;
    margin-bottom:35px;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    color:#a8a8a8;
    font-size:15px;
    line-height:2;
    margin-bottom:8px;
}

/* Clinic Column */
.footer-info{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:22px;
}

.footer-info i{
    color:#fff;
    font-size:18px;
    min-width:24px;
    margin-top:4px;
}

.footer-info span{
    color:#a8a8a8;
    font-size:18px;
    line-height:1.7;
}

/* Bottom */
.footer-bottom{
    width:84%;
    margin:45px auto 0;
    border-top:2px solid #f57c00;
    padding:28px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#b3b3b3;
    font-size:16px;
}

.designer{
    display:flex;
    align-items:center;
    gap:10px;
    color:#b3b3b3;
    font-size:16px;
}

.designer img{
    height:52px;
}

.footer-column ul li a{
    color:#a8a8a8;
    text-decoration:none;
    transition:0.3s ease;
    display:inline-block;
}

.footer-column ul li a:hover{
    color:#f57c00;
    transform:translateX(5px);
}

/* Tablet */
@media(max-width:1200px){

    .footer-container{
        flex-wrap:wrap;
        gap:40px;
    }

    .footer-column{
        width:48%;
        flex:none;
    }
}

/* Mobile */
@media(max-width:768px){

    .footer-section{
        padding:40px 0 0;
    }

    .footer-container{
        width:92%;
        flex-direction:column;
        gap:35px;
    }

    .footer-column{
        width:100%;
    }

    .footer-column h3{
        font-size:30px;
        margin-bottom:20px;
    }

    .footer-column ul li{
        font-size:17px;
        line-height:1.8;
    }

    .footer-info{
        gap:12px;
        margin-bottom:16px;
    }

    .footer-info i{
        font-size:18px;
    }

    .footer-info span{
        font-size:16px;
        line-height:1.7;
    }

    .footer-bottom{
        width:92%;
        flex-direction:column;
        gap:18px;
        text-align:center;
        padding:22px 0;
    }

    .footer-bottom p{
        font-size:16px;
    }

    .designer{
        font-size:16px;
        justify-content:center;
    }

    .designer img{
        height:38px;
    }
}













.video-section{
    width:100%;
    background:#f5f5f5;
    padding:60px 0;
}

.video-heading{
    text-align:center;
    margin-bottom:45px;
}

.video-heading h2{
    font-size:55px;
    color:#f57c00;
    font-weight:700;
    margin-bottom:10px;
}

.video-heading p{
    font-size:20px;
    color:#666;
}

/* Videos */
.video-container{
    width:88%;
    margin:auto;
    display:flex;
    gap:30px;
    justify-content:center;
}

.video-box{
    flex:1;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
}

.video-box iframe{
    width:100%;
    height:450px;
    display:block;
}

/* Tablet */
@media(max-width:991px){

    .video-box iframe{
        height:350px;
    }
}

/* Mobile */
@media(max-width:768px){

    .video-section{
        padding:40px 0;
    }

    .video-heading{
        margin-bottom:25px;
        padding:0 15px;
    }

    .video-heading h2{
        font-size:34px;
    }

    .video-heading p{
        font-size:16px;
    }

    .video-container{
        width:92%;
        flex-direction:column;
        gap:20px;
    }

    .video-box iframe{
        height:220px;
    }
}