/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
RESET
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#222;
    line-height:1.6;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

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

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
NAVBAR
========================= */

.navbar{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 7%;

    background:#fff;

    position:fixed;

    top:0;

    left:0;

    z-index:999;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.logo{

    font-size:30px;

    font-weight:700;

    color:#111827;

}

.logo span{

    color:#16A34A;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#111827;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#16A34A;

}

.nav-links a.active{

    color:#16A34A;

}

.btn{

    background:#16A34A;

    color:white;

    padding:12px 28px;

    border-radius:50px;

    transition:.3s;

}

.btn:hover{

    background:#15803D;

}

/* =========================
HERO
========================= */

.top-hero-heading{

    padding:120px 7% 20px;

    text-align:center;

    background:#F0FDF4;

}

.top-hero-heading h1{

    font-size:48px;

    line-height:1.2;

    color:#111827;

}

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:120px 7% 80px;

    background:#F0FDF4;

}

.hero-content{

    width:50%;

}

.hero-content h1{

    font-size:60px;

    line-height:1.2;

    color:#111827;

    margin-bottom:20px;

}

.hero-content p{

    font-size:18px;

    color:#555;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary-btn{

    background:#16A34A;

    color:white;

    padding:15px 35px;

    border-radius:40px;

    transition:.3s;

}

.primary-btn:hover{

    background:#15803D;

}

.secondary-btn{

    border:2px solid #16A34A;

    color:#16A34A;

    padding:15px 35px;

    border-radius:40px;

    transition:.3s;

}

.secondary-btn:hover{

    background:#16A34A;

    color:white;

}

.hero-image{

    width:45%;

}

/* =========================
COMMON SECTION
========================= */

section{

    padding:100px 7%;

}

/* ===========================
SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;

    color:#111827;

}

.section-title p{

    color:#16A34A;

    margin-top:10px;

}

/* ===========================
ABOUT
=========================== */

.about{

    background:#fff;

}

.about-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.about-image{

    flex:1;

}

.about-image img{

    border-radius:20px;

}

.about-content{

    flex:1;

}

.about-content h3{

    font-size:36px;

    margin-bottom:20px;

}

.about-content p{

    color:#555;

    margin-bottom:20px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:30px;

}

.about-features div{

    background:#F0FDF4;

    padding:18px;

    border-radius:10px;

    font-weight:600;

}

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

.services{

    background:#F8FAFC;

}

.services-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

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

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card i{

    font-size:45px;

    color:#16A34A;

    margin-bottom:20px;

}

.service-card h3{

    margin-bottom:15px;

}

.service-card p{

    color:#666;

}

/*=============================
WHY CHOOSE US
==============================*/

.why{

    background:white;

}

.why-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#F8FAFC;

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.why-card i{

    font-size:45px;

    color:#16A34A;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:#666;

}

/*=============================
STATISTICS
==============================*/

.stats{

    background:#16A34A;

    color:white;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;

    gap:20px;

}

.stat-box{

    padding:50px 20px;

}

.stat-box h2{

    font-size:48px;

    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;

}

/*==========================
TEAM
==========================*/

.team{
    background:#fff;
}

.team-container{
    display:flex;
    align-items:center;
    gap:60px;
}

.team-image{
    flex:1;
}

.team-image img{
    border-radius:20px;
}

.team-content{
    flex:1;
}

.team-content h3{
    font-size:38px;
}

.team-content h4{
    color:#16A34A;
    margin:15px 0;
}

.team-content p{
    margin-bottom:20px;
    color:#666;
}

.team-content ul{
    margin-bottom:30px;
}

.team-content li{
    margin:12px 0;
}

/*==========================
TESTIMONIAL
==========================*/

.testimonial{
    background:#F8FAFC;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.testimonial-card h4{
    margin-top:20px;
    color:#16A34A;
}

/*==========================
GALLERY
==========================*/

.gallery{
    background:white;
}

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

.gallery-item{
    min-height:260px;
    overflow:hidden;
    border-radius:15px;
    background:#eef8fb;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.gallery-item-wide{
    grid-column:span 2;
}

.gallery-container img{
    width:100%;
    height:100%;
    min-height:260px;
    object-fit:contain;
    transition:.4s;
    background:#eef8fb;
}

.gallery-container img:hover{
    transform:scale(1.05);
}

.gallery-container img.image-error{
    display:none;
}

.gallery-item.image-missing{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    text-align:center;
    color:#15803D;
    font-weight:600;
}

.gallery-item.image-missing::after{
    content:attr(data-image-name);
}

/*==========================
CONTACT
==========================*/

.contact{

background:#F8FAFC;

}

.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

}

.contact-info p{

margin:20px 0;

font-size:18px;

}

.contact-info i{

color:#16A34A;

margin-right:10px;

}

.contact-form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

padding:15px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.contact-form button{

border:none;

cursor:pointer;

}

/*==========================
FOOTER
==========================*/

footer{

background:#111827;

color:white;

padding:70px 7% 20px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}

.footer-container h3{

margin-bottom:20px;

}

.footer-container a{

color:white;

}

.footer-container li{

margin-bottom:12px;

}

.copyright{

text-align:center;

margin-top:40px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.15);

}

/*==========================
WHATSAPP
==========================*/

.whatsapp{

position:fixed;

right:20px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:30px;

box-shadow:0 10px 20px rgba(0,0,0,.2);

z-index:999;

}

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

.call-btn{

position:fixed;

right:20px;

bottom:100px;

width:60px;

height:60px;

background:#16A34A;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:25px;

box-shadow:0 10px 20px rgba(0,0,0,.2);

z-index:999;

}

/*==========================
HERO SECTION
==========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    padding:140px 7% 80px;

    background:linear-gradient(135deg,#F0FDF4,#ffffff);

}

.hero-content{

    flex:1;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#DCFCE7;

    color:#15803D;

    padding:10px 18px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:58px;

    line-height:1.2;

    color:#111827;

    margin-bottom:15px;

}

.hero-content h1 span{

    color:#16A34A;

}

.hero-content h3{

    font-size:24px;

    color:#16A34A;

    margin-bottom:25px;

}

.hero-content p{

    font-size:18px;

    color:#555;

    margin-bottom:20px;

}

.hero-points{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.hero-points div{

    font-weight:500;

    color:#111827;

}

.hero-points i{

    color:#16A34A;

    margin-right:8px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:15px;

}

.primary-btn{

    background:#16A34A;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

}

.primary-btn:hover{

    background:#15803D;

}

.secondary-btn{

    border:2px solid #16A34A;

    color:#16A34A;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

}

.secondary-btn:hover{

    background:#16A34A;

    color:#fff;

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

}

.conditions-grid,
.treatment-grid,
.process-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

margin-top:40px;

}

.condition-card,
.treatment-grid div,
.process-grid div{

background:#fff;

padding:35px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.condition-card:hover,
.treatment-grid div:hover,
.process-grid div:hover{

transform:translateY(-10px);

}

.condition-card i{

font-size:45px;

color:#16A34A;

margin-bottom:20px;

}

.process-grid span{

width:70px;

height:70px;

display:flex;

justify-content:center;

align-items:center;

background:#16A34A;

color:#fff;

font-size:30px;

border-radius:50%;

margin:auto;

margin-bottom:20px;

}

.emergency{

background:#16A34A;

padding:80px;

text-align:center;

color:white;

border-radius:25px;

margin:80px 7%;

}

.emergency a{

display:inline-block;

margin-top:25px;

padding:16px 40px;

background:white;

color:#16A34A;

font-weight:700;

border-radius:40px;

}

.faq{

background:#F8FAFC;

}

.faq-box{

background:white;

padding:25px;

border-radius:15px;

margin-bottom:20px;

box-shadow:0 5px 20px rgba(0,0,0,.06);

}

.faq-box h3{

margin-bottom:10px;

}
