/* ===========================
   HOMOCURE PHARMACEUTICALS
=========================== */

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

html{
    scroll-behavior:smooth;
}

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

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

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    z-index:1000;
}

.nav-container{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:15px;
    padding:15px 0;
}

.logo img{
    height:65px;
}

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

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#16a34a;
}

.btn-primary{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:.3s ease;
    box-shadow:0 12px 25px rgba(22,163,74,.25);
}

.btn-primary:hover{
    background:#15803d;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(22,163,74,.35);
}

.btn-secondary{
    display:inline-block;
    padding:12px 28px;
    border:2px solid #16a34a;
    color:#16a34a;
    text-decoration:none;
    border-radius:8px;
    margin-left:12px;
    transition:.3s;
}

.btn-secondary:hover{
    background:#16a34a;
    color:#fff;
}

/* HERO */

.hero{
    padding:190px 0 120px;
    display:flex;
    align-items:center;
    background:linear-gradient(to right,#f8fffb,#eefdf4);
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
    padding-top:20px;
}

.hero-text h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
    color:#0f172a;
}

.hero-text p{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
    border-radius:22px;
    object-fit:cover;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:.4s ease;
}

.hero-image img:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 30px 60px rgba(0,0,0,.22);
}

/* ABOUT SECTION */

.about{
    padding:100px 0;
    background:#fff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-text{
    flex:1;
}

.about-text span{
    color:#16a34a;
    font-weight:700;
    letter-spacing:2px;
}

.about-text h2{
    font-size:42px;
    margin:18px 0;
    color:#0f172a;
}

.about-text p{
    color:#555;
    margin-bottom:30px;
    font-size:17px;
}
/* ================= WHY CHOOSE ================= */

.features{
    padding:100px 0;
    background:#f7faf9;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#0f172a;
    margin-bottom:60px;
}

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

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border:1px solid #edf2f7;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.feature-card h3{
    color:#16a34a;
    margin-bottom:15px;
}

.feature-card p{
    color:#555;
    line-height:1.8;
}
/* MISSION */

.mission{
    padding:100px 0;
    background:#ffffff;
}

.mission-box{
    display:flex;
    gap:30px;
}

.mission-card{
    flex:1;
    background:#f8fafc;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.mission-card h2{
    color:#0f172a;
    margin-bottom:20px;
}

.mission-card p{
    color:#555;
    line-height:1.8;
}
/* COMPANY HIGHLIGHTS */

.stats{
    padding:100px 0;
    background:#f4fdf7;
}

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

.stat-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:0.3s;
}

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

.stat-card h3{
    color:#16a34a;
    margin-bottom:12px;
}

.stat-card p{
    color:#555;
}
/* CTA SECTION */

.cta{
    padding:100px 20px;
    background:linear-gradient(135deg,#16a34a,#0f766e);
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
/* WHY CHOOSE SECTION */

.features{
    padding:100px 20px;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#0f172a;
    margin-bottom:60px;
}

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

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

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

.feature-card h3{
    color:#16a34a;
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#555;
    line-height:1.7;
}
.products-preview{
    padding:100px 20px;
    background:#ffffff;
}
.manufacturing{
    padding:100px 20px;
    background:#f8fafc;
}
.certifications{
    padding:100px 20px;
    background:#ffffff;
}
/* FOOTER */

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 20px 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#22c55e;
}

.footer-box p,
.footer-box li{
    color:#d1d5db;
    line-height:1.8;
    list-style:none;
}

.footer-box ul{
    padding:0;
}

.footer-box a{
    color:#d1d5db;
    text-decoration:none;
}

.footer-box a:hover{
    color:#22c55e;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    color:#94a3b8;
}
/* TESTIMONIALS */

.testimonials{
    padding:100px 20px;
    background:#f8fafc;
}

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

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#16a34a;
}
/* FOOTER */

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 20px 20px;
}

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

.footer h3{
    margin-bottom:20px;
}

.footer p,
.footer li{
    color:#cbd5e1;
    line-height:1.8;
    list-style:none;
}

.footer ul{
    padding:0;
}

.footer a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer a:hover{
    color:#22c55e;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#94a3b8;
}
/* WHATSAPP BUTTON */

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.08);
}

.whatsapp-btn img{
    width:36px;
}

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 25px;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
    background:#fff;
    padding:10px;
    border-radius:10px;
}

.footer h3{
    margin-bottom:20px;
    color:#22c55e;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#22c55e;
}

.copyright{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    color:#aaa;
}
.product-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:18px;
}
.product-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:18px;
}

.feature-card .btn-primary{
    margin-top:15px;
    display:inline-block;
}