
/* =========================
   SERVICES SECTION
========================= */

#services {
    padding: 60px 20px;
    background-color: #f5f9ff;
    text-align: center;
}

#services h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #0b4f6c;
}


/* =========================
   SERVICE CONTAINER
========================= */

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


/* =========================
   CARD DESIGN
========================= */

.card {
    background-color: white;
    width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);

    transition: 0.3s;
    padding-bottom: 20px;
}

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


/* =========================
   IMAGE
========================= */

.therapy-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


/* =========================
   HEADINGS
========================= */

.card h3 {
    font-size: 28px;
    margin-top: 20px;
    color: #083d77;
    padding: 0 15px;
}


/* =========================
   PARAGRAPH
========================= */

.card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    padding: 15px 20px;
}


/* =========================
   BUTTON
========================= */

.card button {
    background-color: #0b6e99;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;

    transition: 0.3s;
}

.card button:hover {
    background-color: #084c61;
    transform: scale(1.05);
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

    #services h2 {
        font-size: 32px;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .card h3 {
        font-size: 24px;
    }

    .card p {
        font-size: 16px;
    }

}


/* =========================
   MOBILE SCREEN
========================= */

@media (max-width: 480px) {

    #services {
        padding: 40px 15px;
    }

    #services h2 {
        font-size: 28px;
    }

    .card {
        width: 100%;
    }

    .therapy-image {
        height: 200px;
    }

    .card h3 {
        font-size: 22px;
    }

    .card p {
        font-size: 15px;
    }

    .card button {
        width: 80%;
        font-size: 15px;
    }

}

/* =========================
   PHYSIOTHERAPIST SECTION
========================= */

#physiotherapist {
    padding: 70px 20px;
    background: #f4f9ff;
    text-align: center;
}


/* =========================
   SECTION HEADING
========================= */

#physiotherapist h2 {
    font-size: 42px;
    color: #0b4f6c;
    margin-bottom: 50px;
}


/* =========================
   DOCTOR CONTAINER
========================= */

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


/* =========================
   DOCTOR CARD
========================= */

.doctor-card {
    background: white;
    width: 350px;
    padding: 30px;
    border-radius: 20px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);

    transition: 0.3s;
}

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


/* =========================
   DOCTOR NAME
========================= */

.doctor-card h3 {
    font-size: 30px;
    color: #083d77;
    margin-bottom: 20px;
}


/* =========================
   PARAGRAPH STYLE
========================= */

.doctor-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}


/* =========================
   STRONG TEXT
========================= */

.doctor-card strong {
    color: #0b4f6c;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

    #physiotherapist h2 {
        font-size: 34px;
    }

    .doctor-container {
        flex-direction: column;
        align-items: center;
    }

    .doctor-card {
        width: 90%;
    }

    .doctor-card h3 {
        font-size: 26px;
    }

    .doctor-card p {
        font-size: 16px;
    }

}


/* =========================
   MOBILE SCREEN
========================= */

@media (max-width: 480px) {

    #physiotherapist {
        padding: 50px 15px;
    }

    #physiotherapist h2 {
        font-size: 28px;
    }

    .doctor-card {
        width: 100%;
        padding: 25px;
    }

    .doctor-card h3 {
        font-size: 22px;
    }

    .doctor-card p {
        font-size: 15px;
        line-height: 1.6;
    }

}



.therapy-image{
    width: 100%;
    height: 320px;

    object-fit: cover;

    border-radius: 18px;

    margin-bottom: 25px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    transition: 0.4s;
}

.therapy-image:hover{
    transform: scale(1.02);
}




/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body{
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: rgb(159, 224, 216);
    color: #2c3e50;
    overflow-x: hidden;
}

/* BACKGROUND */
/* body::before{
    content: "";
    position: fixed;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1576765608866-5b510464ac23') center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: -2;
} */

body::after{
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.85);
    z-index: -1;
}

/* HEADER */
header{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(216,202,243,0.95);
    padding: 15px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    z-index: 1000;
}

/* NAV */
nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav a{
    color: #0a7ea4;
    text-decoration: none;
    margin: 10px;
    font-weight: 500;
    position: relative;
}

/* NAV HOVER */
nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #0a7ea4;
    transition: 0.3s;
}

nav a:hover::after{
    width: 100%;
}

/* HERO SECTION */
/* .hero{
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    background-color: #e8f7f5;

    padding-top: 120px;
} */

/* HERO SECTION */
.hero{
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    background-color: #e8f7f5;
    padding: 0;
    margin: 0;

    padding-top: 110px;
}

/* HERO IMAGE */
.hero-img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    object-position: center bottom;
}

/* MOBILE */
/* @media(max-width:700px){

    .hero{
        height: 50vh;
    }

    .hero-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

} */

/* Heading */
/* .hero h1{
    font-size: 64px;
    font-weight: 700;
    top: -100px;
    left: 80px; 

    margin-bottom: 10px;
    line-height: 1.2;
} */

/* Paragraph */
/* .hero p{
    font-size: 22px;
    max-width: 750px;
    line-height: 1.7;
} */
/* .hero h2{
    position: relative;
    top: -80px;   /* upar */
    /* left: 50px;   right */
/* } */

/* .hero p{
    position: relative;
    top: -60px;
    left: 50px;
} */

/* Mobile */
/* @media (max-width: 768px){

    .hero h1{
        font-size: 40px;
    }

    .hero p{
        font-size: 18px;
    }
} */

/* BUTTON */
button,
.hero button{
    background: #0a7ea4;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover,
.hero button:hover{
    background: #086b8a;
    transform: scale(1.05);
}

/* SECTION */
section{
    padding: 60px 20px;
    text-align: center;
}

/* CARD CONTAINER */
.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* CARD */
.card{
    background: rgba(255,255,255,0.95);
    width: 300px;
    max-width: 100%;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* CARD IMAGE */
.card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* FORM */
form input,
form textarea{
    width: 100%;
    max-width: 600px;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* TIMING */
.timing{
    width: 90%;
    max-width: 700px;

    margin: 40px auto;
    padding: 40px 20px;

    background: rgba(136,209,228,0.9);
    border-radius: 12px;
}

/* CALL BUTTON */
.call-btn{
    display: inline-block;
    text-decoration: none;

    background: #0a7ea4;
    color: white;

    padding: 15px 25px;
    border-radius: 8px;

    transition: 0.3s;
}

.call-btn:hover{
    background: #086b8a;
    transform: scale(1.05);
}

/* FOOTER */
footer{
    background: #0a7ea4;
    color: white;
    padding: 15px;
    text-align: center;
}

/* RATING */
.rating-box{
    width: 300px;
    max-width: 90%;

    margin: 20px auto;
    padding: 20px;

    background: #f5f5f5;
    border-radius: 10px;
}

.stars{
    font-size: 30px;
    cursor: pointer;
}

.star{
    color: #ccc;
    transition: 0.3s;
}

.star:hover,
.star.active{
    color: gold;
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

/* @media (max-width: 768px){

    header{
        flex-direction: column;
        text-align: center;
    }

    .hero h1{
        font-size: 32px;
    }

    .hero p{
        font-size: 16px;
    }

    .card{
        width: 100%;
    }

    nav{
        margin-top: 10px;
    }

    nav a{
        margin: 8px;
    }

    .timing{
        width: 95%;
    }
} */













/* =========================
   STYLISH WEBSITE LOGO
========================= */

.logo {
    font-size: 48px;
    font-weight: bold;

    color: #0b4f6c;

    text-transform: uppercase;

    letter-spacing: 4px;

    text-shadow:
        2px 2px 0px #ffffff,
        4px 4px 10px rgba(0,0,0,0.3);

    font-family: 'Trebuchet MS', sans-serif;

    transition: 0.3s;
}

.logo:hover {
    transform: scale(1.05);
    color: #084c61;
}


/* =========================
   DETAILS PAGE
========================= */

body {
    margin: 0;
    padding: 0;
    background: #eef5ff;
    font-family: Arial, sans-serif;
}


/* =========================
   DETAILS CARD
========================= */

.details-card {
    width: 80%;
    max-width: 900px;

    margin: 60px auto;
    padding: 40px;

    background: white;

    border-radius: 25px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    transition: 0.3s;
}

.details-card:hover {
    transform: translateY(-5px);
}


/* =========================
   HEADING
========================= */

.details-card h1 {
    text-align: center;

    font-size: 42px;

    color: #0b4f6c;

    margin-bottom: 30px;

    text-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}


/* =========================
   PARAGRAPH
========================= */

.details-card p {
    font-size: 20px;

    color: #444;

    line-height: 1.8;

    margin-top: 25px;

    margin-bottom: 15px;

    font-weight: bold;
}


/* =========================
   LIST STYLE
========================= */

.details-card ul {
    padding-left: 30px;
}


/* =========================
   LIST ITEMS
========================= */

.details-card ul li {
    font-size: 18px;

    color: #555;

    margin-bottom: 12px;

    line-height: 1.7;

    transition: 0.3s;
}

.details-card ul li:hover {
    color: #0b6e99;

    transform: translateX(8px);
}


/* =========================
   BUTTON
========================= */

.details-card button {
    margin-top: 30px;

    background: #0b6e99;

    color: white;

    border: none;

    padding: 14px 35px;

    border-radius: 12px;

    font-size: 17px;

    cursor: pointer;

    transition: 0.3s;
}

.details-card button:hover {
    background: #084c61;

    transform: scale(1.05);
}


/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 768px) {

    .details-card {
        width: 90%;
        padding: 30px;
    }

    .details-card h1 {
        font-size: 34px;
    }

    .details-card p {
        font-size: 18px;
    }

    .details-card ul li {
        font-size: 17px;
    }

}


/* =========================
   MOBILE SCREEN
========================= */

@media (max-width: 480px) {

    .details-card {
        width: 95%;
        padding: 20px;
    }

    .details-card h1 {
        font-size: 28px;
    }

    .details-card p {
        font-size: 16px;
    }

    .details-card ul li {
        font-size: 15px;
    }

    .details-card button {
        width: 100%;
        font-size: 16px;
    }

}

/* .hero{
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e8f7f5;
    text-align: center;
}
 .hero{
    min-height: 90vh;
    padding: 120px 20px 60px;
}

.hero-img{
    width: 100%;
    max-width: 400px;
    height: auto;
} */

/* .hero-img{
    width: 480px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
} */


.doctor-card{
    width: 350px;
    padding: 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
    text-align: center;
    margin: auto;
}

.doctor-img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #00b894;
    margin-bottom: 15px;
}

footer{
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 20px;
}

.developer{
    margin-top: 8px;
    font-size: 15px;
}

.developer span{
    color: #00d9a5;
    font-weight: bold;
}






/* =======================================
   FINAL MOBILE RESPONSIVE FIX
======================================= */

html{
    scroll-behavior: smooth;
}

/* Images Responsive */
img{
    max-width: 100%;
    height: auto;
}

/* HERO SECTION */
 /* .hero{
    min-height: 90vh;
    padding: 120px 20px 60px;
}

.hero-img{
    width: 100%;
    max-width: 400px;
    height: auto;
} */

/* @media(max-width:768px){

    .hero{
        height: 50vh;
        background-position: center;
        background-size: cover;
        padding: 20px;
    }
    .hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

} */


/* NAVBAR */
header{
    width: 100%;
}

nav{
    gap: 10px;
}

/* SERVICE CARDS */
.service-container,
.card-container,
.doctor-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card,
.doctor-card{
    width: 100%;
    max-width: 350px;
}

/* DETAILS PAGE */
.details-card{
    width: 90%;
}

/* FORM */
form{
    width: 100%;
}

form input,
form textarea{
    width: 100%;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 768px){

    body{
        overflow-x: hidden;
    }

    header{
        flex-direction: column;
        padding: 15px;
    }

    .logo{
        font-size: 34px;
        margin-bottom: 10px;
        text-align: center;
    }

    nav{
        justify-content: center;
    }

    nav a{
        font-size: 15px;
        margin: 6px;
    }

    /* .hero{
        padding-top: 140px;
    }

    .hero h1,
    .hero h2{
        font-size: 34px;
        line-height: 1.3;
    }

    .hero p{
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-img{
        max-width: 90%;
        border-radius: 20px;
    } */

    #services h2,
    #physiotherapist h2,
    .details-card h1{
        font-size: 32px;
    }

    .card,
    .doctor-card{
        max-width: 90%;
    }

    .therapy-image{
        height: 230px;
    }

    .details-card{
        padding: 25px;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 480px){

    body{
        overflow-x: hidden;
    }

    section{
        padding: 50px 15px;
    }

    .logo{
        font-size: 26px;
        letter-spacing: 2px;
    }

    nav{
        gap: 5px;
    }

    nav a{
        font-size: 14px;
        margin: 4px;
    }

    /* .hero{
        min-height: 100vh;
        padding-top: 150px;
    }

    .hero h1,
    .hero h2{
        font-size: 26px;
    }

    .hero p{
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-img{
        width: 100%;
        max-width: 320px;
        border-radius: 18px;
    } */

    button,
    .hero button,
    .card button,
    .details-card button{
        width: 100%;
        max-width: 280px;
        font-size: 15px;
    }

    .card,
    .doctor-card{
        width: 100%;
        padding: 20px;
    }

    .therapy-image{
        height: 200px;
    }

    .card h3,
    .doctor-card h3{
        font-size: 22px;
    }

    .card p,
    .doctor-card p,
    .details-card p{
        font-size: 15px;
        line-height: 1.6;
    }

    .details-card ul li{
        font-size: 15px;
    }

    footer{
        padding: 18px 10px;
        font-size: 14px;
    }
}



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

.call-btn,
.whatsapp-btn{
    display: inline-block;

    margin: 10px;
    padding: 14px 28px;

    color: white;
    text-decoration: none;

    border-radius: 10px;

    font-size: 17px;
    font-weight: bold;

    transition: 0.3s;
}

/* CALL BUTTON */
.call-btn{
    background: #0a7ea4;
}

.call-btn:hover{
    background: #086b8a;
    transform: scale(1.05);
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
    background: #25D366;
}

.whatsapp-btn:hover{
    background: #1ebe5d;
    transform: scale(1.05);
}

/* MOBILE RESPONSIVE */
@media(max-width:480px){

    .call-btn,
    .whatsapp-btn{
        width: 100%;
        max-width: 300px;
        font-size: 15px;
    }
}



/* .Center-photo{
    padding: 60px 20px;
    text-align: center;
}

.Center-photo h2{
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2e7d32;
}

.clinic-gallery{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.clinic-gallery img{
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.clinic-gallery img:hover{
    transform: scale(1.05);
} */


.Center-photo{
    padding: 70px 20px;
    text-align: center;
    background: #f5fff6;
}

.Center-photo h2{
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0b6e99;
}

.slider{
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);

    
    /* display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; */
}


.slides{
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img{
    width: 100%;
    flex: 0 0 100%;
    height: 400px;
    object-fit: contain;
    
    /* display: flex;
    gap: 20px;
    justify-content: center
    flex-wrap: wrap; */
}


.prev,
.next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
}

.prev{
    left: 10px;
}

.next{
    right: 10px;
}

.prev:hover,
.next:hover{
    background: #2e7d32;
}

@media(max-width:768px){

    .slider{
        max-width: 95%;
        border-radius: 12px;
    }

    .slides img{
        height: 180px;
        width: 100%;
        object-fit: cover;
    }

    .Center-photo h2{
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .prev,
    .next{
        width: 30px;
        height: 30px;
        padding: 0;
        font-size: 12px;
    }
}





.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: bold;
}

.logo img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.logo img{
    border-radius: 50%;
}

@media(max-width:768px){

    .logo{
        font-size: 23px;
        gap: 6px;
        text-align: center;
    }

    .logo img{
        width: 50px;
        height: 50px;
    }

}


@media(max-width:768px){

    .logo{
        justify-content: center;
    }

}

#about p:first-of-type{
    margin-bottom: 25px;
}