/* ================= GLOBAL ================= */


*{

margin:0;
padding:0;
box-sizing:border-box;

}



html{

scroll-behavior:smooth;

}



body{

font-family:'Poppins',sans-serif;

background:#fafaf7;

color:#222;

overflow-x:hidden;

}



a{

text-decoration:none;

}



img{

width:100%;

display:block;

}





.container{

width:90%;

max-width:1300px;

margin:auto;

}

/* ================= HEADER ================= */

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(255,255,255,.92);

backdrop-filter:blur(12px);

box-shadow:0 8px 30px rgba(0,0,0,.08);

}




.nav{

display:flex;

align-items:center;

justify-content:space-between;

padding:12px 0;

}





.logo img{

height:70px;

width:auto;

transition:.4s;

}





.logo:hover img{

transform:scale(1.05);

}







.menu{

display:flex;

align-items:center;

gap:38px;

list-style:none;

}




.menu a{

color:#222;

font-weight:600;

position:relative;

}





.menu a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#5b8d2c;

transition:.3s;

}





.menu a:hover::after{

width:100%;

}



.menu a:hover{

color:#5b8d2c;

}







.menu-toggle{

display:none;

font-size:28px;

color:#5b8d2c;

cursor:pointer;

}





/* ================= CART ICON ================= */



.cart-icon{

position:relative;

font-size:22px;

color:#5b8d2c;

cursor:pointer;

}




.cart-icon span{

position:absolute;

top:-12px;

right:-12px;

background:#5b8d2c;

color:white;

width:20px;

height:20px;

border-radius:50%;

font-size:12px;

display:flex;

align-items:center;

justify-content:center;

}





/* ================= WHATSAPP BUTTON ================= */



.whatsapp-btn{

background:#25D366;

color:white;

padding:13px 25px;

border-radius:50px;

font-weight:600;

display:flex;

align-items:center;

gap:8px;

transition:.3s;

box-shadow:0 10px 25px rgba(37,211,102,.25);

}





.whatsapp-btn:hover{

transform:translateY(-4px);

}





/* ================= HERO ================= */



.hero{

padding:170px 0 100px;

}





.hero-content{

display:flex;

align-items:center;

gap:70px;

}





.hero-text,

.hero-image{

flex:1;

}





.hero-image img{

max-width:520px;

margin:auto;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.15);

transition:.4s;

}





.hero-image img:hover{

transform:scale(1.03);

}






.tagline{

display:inline-block;

background:#eef7e7;

color:#5b8d2c;

padding:10px 18px;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}





.hero h1{

font-size:58px;

line-height:1.1;

font-weight:800;

margin-bottom:25px;

}





.hero p{

font-size:18px;

line-height:1.8;

color:#555;

margin-bottom:35px;

}





.hero-buttons{

display:flex;

gap:20px;

}





.primary-btn{

background:#5b8d2c;

color:white;

padding:16px 32px;

border-radius:40px;

font-weight:600;

transition:.3s;

}





.primary-btn:hover{

transform:translateY(-5px);

}





.secondary-btn{

border:2px solid #5b8d2c;

color:#5b8d2c;

padding:16px 32px;

border-radius:40px;

font-weight:600;

transition:.3s;

}





.secondary-btn:hover{

background:#5b8d2c;

color:white;

}







/* ================= ABOUT ================= */


.about{

padding:100px 0;

background:white;

}





.about-content{

display:flex;

align-items:center;

gap:70px;

}




.about-image,

.about-text{

flex:1;

}





.about-image img{

max-width:450px;

margin:auto;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}
/* ================= ABOUT TEXT ================= */


.about-text h2{

font-size:42px;

line-height:1.2;

margin-bottom:25px;

}



.about-text p{

color:#555;

line-height:1.8;

font-size:17px;

margin-bottom:20px;

}




.about-box{

display:flex;

gap:20px;

margin-top:35px;

}




.about-box div{

background:#f4faed;

padding:20px;

border-radius:20px;

text-align:center;

flex:1;

}





.about-box i{

font-size:28px;

color:#5b8d2c;

margin-bottom:10px;

}




.about-box h4{

font-size:14px;

}







/* ================= PRODUCTS ================= */



.products{

padding:100px 0;

background:#fafaf7;

}





.section-title{

text-align:center;

max-width:700px;

margin:auto;

}





.section-title h2{

font-size:42px;

margin:15px 0;

}





.section-title p{

color:#666;

}





.products-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

margin-top:60px;

}





.product-card{

background:white;

border-radius:30px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

}





.product-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 70px rgba(0,0,0,.15);

}




.product-img{

padding:30px;

background:#f8faf3;

}





.product-img img{

height:350px;

object-fit:contain;

transition:.4s;

}





.product-card:hover img{

transform:scale(1.05);

}





.product-details{

padding:30px;

}





.product-details h3{

font-size:25px;

margin-bottom:15px;

}





.product-details p{

color:#666;

line-height:1.7;

}





.product-price{

font-size:32px;

font-weight:700;

color:#5b8d2c;

margin:20px 0;

}





.delivery{

font-size:14px;

color:#777;

margin-bottom:25px;

}





.product-actions{

display:flex;

gap:12px;

}





.buy-btn,
.cart-btn{

flex:1;

padding:14px;

border-radius:40px;

font-weight:600;

text-align:center;

cursor:pointer;

transition:.3s;

}




.buy-btn{

background:#5b8d2c;

color:white;

}





.cart-btn{

background:#222;

color:white;

border:none;

}





.buy-btn:hover,
.cart-btn:hover{

transform:translateY(-4px);

}







/* ================= CHECKOUT ================= */



.checkout{

padding:100px 0;

background:white;

}




.checkout-box{

max-width:800px;

background:#fafaf7;

padding:40px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}





.checkout-box h2{

text-align:center;

font-size:36px;

margin-bottom:10px;

}





.checkout-subtitle{

text-align:center;

color:#666;

margin-bottom:30px;

}





#cart-items{

background:white;

padding:20px;

border-radius:20px;

margin-bottom:20px;

}





.cart-total{

font-size:22px;

margin-bottom:25px;

}





.customer-form{

display:flex;

flex-direction:column;

gap:15px;

}





.customer-form input,
.customer-form textarea{

width:100%;

padding:15px;

border:1px solid #ddd;

border-radius:15px;

font-family:inherit;

font-size:15px;

outline:none;

}





.customer-form textarea{

height:120px;

resize:none;

}





.checkout-btn{

background:#25D366;

color:white;

border:none;

padding:16px;

border-radius:50px;

font-size:16px;

font-weight:600;

cursor:pointer;

transition:.3s;

}





.checkout-btn:hover{

transform:translateY(-4px);

}







/* ================= FOOTER ================= */



.footer{

background:#222;

color:white;

padding:40px 0;

text-align:center;

}





.footer h3{

font-size:28px;

margin-bottom:10px;

}





.footer p{

color:#ddd;

}







/* ================= MOBILE RESPONSIVE ================= */



@media(max-width:991px){



.menu-toggle{

display:block;

}




nav{

position:absolute;

top:90px;

left:0;

width:100%;

background:white;

}




.menu{

display:none;

flex-direction:column;

padding:25px;

text-align:center;

}





.menu.active{

display:flex;

}





.whatsapp-btn{

display:none;

}




.hero-content{

flex-direction:column-reverse;

text-align:center;

}





.hero h1{

font-size:40px;

}





.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}





.about-content{

flex-direction:column;

text-align:center;

}





.about-box{

flex-direction:column;

}





}



@media(max-width:600px){



.logo img{

height:55px;

}



.hero h1{

font-size:34px;

}



.product-actions{

flex-direction:column;

}



.checkout-box{

padding:25px;

}



}
/* ================= BENEFITS ================= */


.benefits{

padding:100px 0;

background:#fafaf7;

}



.benefits-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}




.benefit-card{

background:white;

padding:35px 25px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.07);

transition:.4s;

}



.benefit-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}



.benefit-card i{

font-size:40px;

color:#5b8d2c;

margin-bottom:20px;

}



.benefit-card h3{

font-size:22px;

margin-bottom:15px;

}



.benefit-card p{

color:#666;

line-height:1.7;

}





@media(max-width:991px){


.benefits-grid{

grid-template-columns:1fr;

}


}
/* ================= WHY CHOOSE ================= */


.why-us{

padding:100px 0;

background:white;

}





.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:60px;

}





.why-card{

background:#fafaf7;

padding:35px 20px;

border-radius:25px;

text-align:center;

transition:.4s;

}





.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(0,0,0,.10);

}





.why-card i{

font-size:38px;

color:#5b8d2c;

margin-bottom:20px;

}




.why-card h3{

font-size:21px;

margin-bottom:15px;

}





.why-card p{

color:#666;

line-height:1.7;

font-size:15px;

}






@media(max-width:991px){


.why-grid{

grid-template-columns:repeat(2,1fr);

}


}





@media(max-width:600px){


.why-grid{

grid-template-columns:1fr;

}


}
/* ================= REVIEWS ================= */


.reviews{

padding:100px 0;

background:#fafaf7;

}





.reviews-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}





.review-card{

background:white;

padding:35px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}





.review-card:hover{

transform:translateY(-10px);

}





.stars{

color:#f5b301;

font-size:25px;

letter-spacing:3px;

margin-bottom:20px;

}





.review-card p{

color:#555;

line-height:1.8;

font-style:italic;

margin-bottom:25px;

}





.review-card h4{

font-size:20px;

margin-bottom:5px;

}





.review-card span{

color:#5b8d2c;

font-size:14px;

}





@media(max-width:991px){


.reviews-grid{

grid-template-columns:1fr;

}


}

/* ================= FAQ ================= */


.faq{

padding:100px 0;

background:white;

}





.faq-container{

max-width:900px;

margin:60px auto 0;

}





.faq-item{

background:#fafaf7;

padding:25px 30px;

border-radius:20px;

margin-bottom:20px;

transition:.3s;

}





.faq-item:hover{

box-shadow:0 15px 40px rgba(0,0,0,.08);

}





.faq-item h3{

display:flex;

justify-content:space-between;

align-items:center;

font-size:20px;

cursor:pointer;

}





.faq-item h3 span{

color:#5b8d2c;

font-size:28px;

}





.faq-item p{

margin-top:15px;

color:#666;

line-height:1.7;

}





@media(max-width:600px){


.faq-item{

padding:20px;

}


.faq-item h3{

font-size:17px;

}


}
/* ================= FLOATING WHATSAPP ================= */


.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

z-index:999;

box-shadow:0 15px 35px rgba(0,0,0,.25);

animation:pulseWhatsapp 2s infinite;

}





.floating-whatsapp:hover{

transform:scale(1.1);

}





@keyframes pulseWhatsapp{


0%{

box-shadow:0 0 0 0 rgba(37,211,102,.6);

}


70%{

box-shadow:0 0 0 20px rgba(37,211,102,0);

}


100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}


}
/* ================= SCROLL EFFECT ================= */


.product-card,
.benefit-card,
.why-card,
.review-card,
.faq-item{


opacity:0;

transform:translateY(40px);

transition:.6s;

}




.show{

opacity:1;

transform:translateY(0);

}
/* ================= PRODUCT GALLERY ================= */


.product-gallery{

background:#f8faf3;

padding:25px;

text-align:center;

}





.product-gallery img{

height:350px;

object-fit:contain;

transition:.4s;

}





.dots{

display:flex;

justify-content:center;

gap:10px;

margin-top:20px;

}





.dots span{

width:10px;

height:10px;

background:#ccc;

border-radius:50%;

cursor:pointer;

}





.dots span:hover{

background:#5b8d2c;

}
/* ================= CART PRODUCT STYLE ================= */


.cart-product{

background:white;

padding:20px;

border-radius:20px;

margin-bottom:15px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

}





.cart-product h4{

font-size:18px;

margin-bottom:12px;

color:#222;

}





.cart-product p{

color:#666;

margin-bottom:15px;

}






/* Quantity Box */


.cart-product button{

border:none;

cursor:pointer;

font-family:inherit;

transition:.3s;

}







.cart-product button:not(:last-child){

width:38px;

height:38px;

border-radius:50%;

background:#5b8d2c;

color:white;

font-size:22px;

font-weight:600;

margin:0 8px;

}





.cart-product button:not(:last-child):hover{

transform:scale(1.1);

background:#456d20;

}






/* Remove Button */


.cart-product button:last-child{


display:block;

margin-top:15px;

background:#ff4d4d;

color:white;

padding:10px 22px;

border-radius:30px;

font-size:14px;

font-weight:600;


}





.cart-product button:last-child:hover{


background:#d93636;

transform:translateY(-3px);


}







#cart-items hr{

border:none;

height:1px;

background:#eee;

margin:15px 0;

}
/* Quantity Wrapper */


.quantity-box{

display:flex;

align-items:center;

gap:12px;

background:#f5f7ef;

padding:8px 15px;

border-radius:40px;

width:max-content;

}




.quantity-box span{

font-size:18px;

font-weight:600;

min-width:25px;

text-align:center;

}




.quantity-box button{

width:35px!important;

height:35px!important;

margin:0!important;

}
/* ================= CART ICON ================= */


.cart-icon{

position:relative;

font-size:25px;

cursor:pointer;

color:#222;

}



.cart-icon span{

position:absolute;

top:-12px;

right:-12px;

background:#5b8d2c;

color:white;

font-size:12px;

width:22px;

height:22px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}







/* ================= CART DRAWER ================= */



.cart-overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.5);

opacity:0;

visibility:hidden;

transition:.4s;

z-index:999;

}





.cart-drawer{

position:fixed;

right:-450px;

top:0;

width:400px;

height:100%;

background:white;

z-index:1000;

padding:25px;

transition:.4s;

box-shadow:-10px 0 40px rgba(0,0,0,.2);

}




.cart-drawer.active{

right:0;

}





.cart-overlay.active{

opacity:1;

visibility:visible;

}





.cart-header{

display:flex;

justify-content:space-between;

align-items:center;

border-bottom:1px solid #eee;

padding-bottom:20px;

}





.cart-header button{

border:none;

background:none;

font-size:30px;

cursor:pointer;

}





.drawer-footer{

position:absolute;

bottom:30px;

left:25px;

right:25px;

}





.drawer-footer button{

width:100%;

padding:15px;

border:none;

background:#5b8d2c;

color:white;

border-radius:30px;

font-size:18px;

font-weight:600;

cursor:pointer;

}





@media(max-width:500px){


.cart-drawer{

width:90%;

}


}
/* ================= PRODUCT PAGE ================= */


.product-page{

padding:160px 0 100px;

background:#fafaf7;

}





.single-product-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:start;

}





/* Gallery */


.single-gallery{

background:white;

padding:30px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}




.main-product-image{

width:100%;

height:500px;

object-fit:contain;

}





.thumbnail-box{

display:flex;

gap:15px;

margin-top:25px;

overflow-x:auto;

}





.thumbnail-box img{

width:80px;

height:80px;

object-fit:cover;

border-radius:15px;

cursor:pointer;

border:2px solid transparent;

transition:.3s;

}





.thumbnail-box img:hover{

border-color:#5b8d2c;

transform:translateY(-5px);

}








/* Details */


.single-details{

background:white;

padding:40px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}





.single-details h1{

font-size:42px;

line-height:1.2;

margin-bottom:20px;

}





.single-price{

font-size:32px;

font-weight:700;

color:#5b8d2c;

margin-bottom:25px;

}





.single-details p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}





.single-details button{

margin-right:15px;

margin-bottom:30px;

}





.single-details h3{

font-size:22px;

margin-top:25px;

margin-bottom:15px;

}





.single-details ul{

padding-left:20px;

}



.single-details li{

margin-bottom:10px;

color:#555;

}









@media(max-width:991px){



.single-product-grid{

grid-template-columns:1fr;

}





.main-product-image{

height:350px;

}



.single-details h1{

font-size:32px;

}



}
/*================ CONSULT HERBALIST ================*/

.consult-herbalist{

padding:100px 0;

background:linear-gradient(135deg,#f7fbf4,#eef8e8);

}

.consult-wrapper{

display:grid;

grid-template-columns:420px 1fr;

gap:70px;

align-items:center;

}

.image-card{

background:#fff;

padding:20px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.10);

transition:.4s;

}

.image-card:hover{

transform:translateY(-10px);

}

.image-card img{

border-radius:25px;

}

.consult-content h2{

font-size:42px;

margin:20px 0;

line-height:1.2;

}

.consult-text{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:30px;

}

.consult-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-bottom:35px;

}

.consult-feature{

background:#fff;

padding:18px;

border-radius:18px;

font-weight:600;

display:flex;

align-items:center;

gap:12px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.3s;

}

.consult-feature:hover{

transform:translateY(-5px);

}

.consult-feature i{

color:#5b8d2c;

font-size:20px;

}

.doctor-card{

background:#fff;

padding:25px;

border-radius:25px;

margin-bottom:35px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.doctor-card h3{

font-size:24px;

margin-bottom:10px;

}

.doctor-card p{

color:#666;

margin-bottom:8px;

}

.doctor-card img{

width:170px;

margin-top:18px;

}

.consult-btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:18px 35px;

background:#25D366;

color:#fff;

border-radius:50px;

font-weight:600;

font-size:17px;

transition:.3s;

box-shadow:0 15px 35px rgba(37,211,102,.30);

}

.consult-btn:hover{

transform:translateY(-5px);

}

@media(max-width:991px){

.consult-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.consult-features{

grid-template-columns:1fr;

}

.consult-feature{

justify-content:center;

}

.image-card{

max-width:420px;

margin:auto;

}

.doctor-card img{

margin:20px auto 0;

}

}

@media(max-width:600px){

.consult-content h2{

font-size:32px;

}

.consult-btn{

width:100%;

justify-content:center;

}

}
/*=========================================
        CONSULT HERBALIST PREMIUM
=========================================*/

.consult-herbalist{

position:relative;

padding:120px 0;

background:linear-gradient(135deg,#f8fcf5,#edf8e8);

overflow:hidden;

}

.consult-bg-circle{

position:absolute;

border-radius:50%;

background:rgba(91,141,44,.08);

filter:blur(5px);

}

.circle-1{

width:280px;

height:280px;

top:-80px;

left:-80px;

}

.circle-2{

width:350px;

height:350px;

bottom:-120px;

right:-120px;

}

.consult-main{

display:grid;

grid-template-columns:420px 1fr;

gap:70px;

align-items:center;

position:relative;

z-index:2;

}

.consult-left{

position:relative;

}

.consult-image-box{

position:relative;

background:#fff;

padding:18px;

border-radius:35px;

box-shadow:0 25px 60px rgba(0,0,0,.10);

transition:.4s;

overflow:hidden;

}

.consult-image-box:hover{

transform:translateY(-10px);

}

.image-glow{

position:absolute;

width:260px;

height:260px;

background:#5b8d2c;

opacity:.15;

filter:blur(60px);

border-radius:50%;

top:50%;

left:50%;

transform:translate(-50%,-50%);

animation:glowPulse 4s infinite;

}

.consult-image-box img{

position:relative;

z-index:2;

border-radius:25px;

}

@keyframes glowPulse{

0%{

transform:translate(-50%,-50%) scale(1);

}

50%{

transform:translate(-50%,-50%) scale(1.15);

}

100%{

transform:translate(-50%,-50%) scale(1);

}

}

.verified-badge{

position:absolute;

top:-18px;

left:20px;

background:#25D366;

color:#fff;

padding:12px 20px;

border-radius:40px;

font-size:14px;

font-weight:600;

display:flex;

align-items:center;

gap:8px;

z-index:5;

box-shadow:0 12px 30px rgba(37,211,102,.35);

}

.help-bubble{

position:absolute;

right:-20px;

bottom:30px;

background:#fff;

padding:15px 20px;

border-radius:18px;

display:flex;

align-items:center;

gap:10px;

font-weight:600;

box-shadow:0 15px 35px rgba(0,0,0,.10);

animation:floatBubble 3s ease-in-out infinite;

z-index:4;

}

.help-bubble i{

color:#25D366;

font-size:20px;

}

@keyframes floatBubble{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

.consult-right{

background:rgba(255,255,255,.70);

backdrop-filter:blur(20px);

padding:45px;

border-radius:35px;

box-shadow:0 25px 60px rgba(0,0,0,.08);

border:1px solid rgba(255,255,255,.5);

}

.consult-right h2{

font-size:46px;

line-height:1.2;

margin:18px 0 25px;

}

.consult-description{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.consult-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-top:20px;

}

.consult-feature{

background:#fff;

padding:22px;

border-radius:22px;

display:flex;

gap:18px;

align-items:flex-start;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.consult-feature:hover{

transform:translateY(-8px);

box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.consult-feature i{

width:55px;

height:55px;

background:#eef7e7;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

color:#5b8d2c;

flex-shrink:0;

}

.consult-feature h4{

font-size:19px;

margin-bottom:8px;

}

.consult-feature p{

font-size:14px;

color:#666;

line-height:1.6;

}
/*=========================================
      DOCTOR PROFILE
=========================================*/

.doctor-profile{

margin-top:45px;

background:#fff;

border-radius:30px;

padding:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

}

.doctor-profile:hover{

transform:translateY(-8px);

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.doctor-header{

display:flex;

align-items:center;

gap:18px;

margin-bottom:25px;

}

.doctor-icon{

width:70px;

height:70px;

border-radius:50%;

background:linear-gradient(135deg,#5b8d2c,#7db23d);

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:30px;

box-shadow:0 15px 30px rgba(91,141,44,.30);

}

.doctor-header h3{

font-size:26px;

margin-bottom:6px;

color:#222;

}

.doctor-header span{

font-size:15px;

color:#5b8d2c;

font-weight:600;

}

.doctor-info{

margin:25px 0;

}

.info-row{

display:flex;

align-items:center;

gap:15px;

padding:14px 0;

border-bottom:1px solid #eee;

}

.info-row:last-child{

border-bottom:none;

}

.info-row i{

width:42px;

height:42px;

background:#eef7e7;

color:#5b8d2c;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:18px;

}

.info-row p{

font-size:16px;

color:#555;

line-height:1.6;

}

/*=========================================
      COMPANY CARD
=========================================*/

.company-card{

margin-top:25px;

background:linear-gradient(135deg,#f8fcf5,#eef8e8);

padding:25px;

border-radius:25px;

text-align:center;

border:1px solid rgba(91,141,44,.15);

transition:.35s;

}

.company-card:hover{

transform:translateY(-6px);

}

.company-card img{

width:180px;

margin:0 auto 18px;

}

.company-card h4{

font-size:22px;

margin-bottom:10px;

color:#222;

}

.company-card p{

color:#666;

font-size:15px;

}

/*=========================================
      TRUST STATS
=========================================*/

.consult-stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin:45px 0;

}

.stat-box{

background:#fff;

padding:28px 15px;

text-align:center;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.06);

transition:.35s;

}

.stat-box:hover{

transform:translateY(-8px);

box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.stat-box h3{

font-size:34px;

color:#5b8d2c;

margin-bottom:8px;

font-weight:700;

}

.stat-box p{

font-size:15px;

color:#666;

line-height:1.6;

}

/*=========================================
      CTA
=========================================*/

.consult-cta{

margin-top:40px;

text-align:center;

padding:40px;

border-radius:30px;

background:linear-gradient(135deg,#5b8d2c,#78a73a);

color:#fff;

box-shadow:0 20px 50px rgba(91,141,44,.30);

}

.consult-cta h3{

font-size:34px;

margin-bottom:15px;

}

.consult-cta p{

font-size:17px;

line-height:1.8;

margin-bottom:30px;

color:#f4f4f4;

}

.consult-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:12px;

padding:18px 38px;

background:#25D366;

color:#fff;

font-size:17px;

font-weight:600;

border-radius:60px;

transition:.35s;

box-shadow:0 18px 35px rgba(37,211,102,.35);

animation:consultPulse 2.5s infinite;

}

.consult-btn:hover{

transform:translateY(-6px) scale(1.03);

}

.consult-cta small{

display:block;

margin-top:18px;

font-size:14px;

opacity:.95;

}

.consult-cta small i{

margin-right:6px;

}

@keyframes consultPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.55);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/*=========================================
      RESPONSIVE
=========================================*/

@media(max-width:991px){

.consult-main{

grid-template-columns:1fr;

gap:45px;

}

.consult-right{

padding:30px;

}

.consult-right h2{

font-size:36px;

text-align:center;

}

.consult-description{

text-align:center;

}

.consult-features{

grid-template-columns:1fr;

}

.consult-stats{

grid-template-columns:1fr;

}

.verified-badge{

position:relative;

top:0;

left:0;

margin:0 auto 20px;

width:max-content;

}

.help-bubble{

right:15px;

bottom:15px;

}

.company-card img{

width:150px;

}

}

@media(max-width:600px){

.consult-herbalist{

padding:80px 0;

}

.consult-right{

padding:22px;

}

.consult-right h2{

font-size:30px;

}

.doctor-header{

flex-direction:column;

text-align:center;

}

.doctor-header h3{

font-size:22px;

}

.consult-cta{

padding:30px 20px;

}

.consult-cta h3{

font-size:28px;

}

.consult-btn{

width:100%;

}

.help-bubble{

display:none;

}

.company-card img{

width:130px;

}

}

/*=========================================
        HAIR ASSESSMENT FORM
=========================================*/

.hair-assessment{

margin-top:45px;

background:#ffffff;

padding:40px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

border:1px solid rgba(91,141,44,.10);

}

.assessment-header{

text-align:center;

margin-bottom:35px;

}

.assessment-header h3{

font-size:32px;

margin:15px 0;

color:#222;

}

.assessment-header p{

color:#666;

line-height:1.8;

max-width:650px;

margin:auto;

}

.assessment-group{

margin-bottom:30px;

}

.group-title{

display:block;

font-size:18px;

font-weight:600;

margin-bottom:15px;

color:#222;

}

.problem-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.problem-grid label{

display:flex;

align-items:center;

gap:12px;

background:#f8faf5;

padding:15px 18px;

border-radius:15px;

cursor:pointer;

transition:.3s;

border:2px solid transparent;

font-size:15px;

font-weight:500;

}

.problem-grid label:hover{

background:#eef7e7;

border-color:#5b8d2c;

transform:translateY(-3px);

}

.problem-grid input{

width:18px;

height:18px;

accent-color:#5b8d2c;

cursor:pointer;

}

.radio-grid{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.radio-grid label{

display:flex;

align-items:center;

gap:10px;

background:#f8faf5;

padding:14px 20px;

border-radius:15px;

cursor:pointer;

transition:.3s;

border:2px solid transparent;

font-weight:500;

}

.radio-grid label:hover{

background:#eef7e7;

border-color:#5b8d2c;

transform:translateY(-3px);

}

.radio-grid input{

accent-color:#5b8d2c;

}

.hair-assessment select{

width:100%;

padding:16px 18px;

border:2px solid #e5e5e5;

border-radius:15px;

font-size:15px;

font-family:inherit;

outline:none;

transition:.3s;

background:#fff;

}

.hair-assessment select:focus{

border-color:#5b8d2c;

}

.hair-assessment textarea{

width:100%;

height:140px;

padding:18px;

border:2px solid #e5e5e5;

border-radius:18px;

font-family:inherit;

font-size:15px;

resize:vertical;

outline:none;

transition:.3s;

}

.hair-assessment textarea:focus{

border-color:#5b8d2c;

}

.assessment-btn{

width:100%;

padding:18px;

background:linear-gradient(135deg,#25D366,#1ebc59);

color:#fff;

font-size:17px;

font-weight:600;

border:none;

border-radius:50px;

cursor:pointer;

transition:.35s;

box-shadow:0 18px 35px rgba(37,211,102,.30);

}

.assessment-btn:hover{

transform:translateY(-5px);

box-shadow:0 25px 45px rgba(37,211,102,.40);

}

/* Selected Checkbox */

.problem-grid input:checked + span{

color:#5b8d2c;

font-weight:600;

}

/* Mobile */

@media(max-width:991px){

.problem-grid{

grid-template-columns:1fr;

}

}

@media(max-width:600px){

.hair-assessment{

padding:25px;

}

.assessment-header h3{

font-size:26px;

}

.radio-grid{

flex-direction:column;

gap:12px;

}

.radio-grid label{

width:100%;

}

}

/* Doctor Name */

.doctor-name{

position:relative;

z-index:2;

text-align:center;

margin-top:20px;

}

.doctor-name h3{

font-size:26px;

font-weight:700;

color:#222;

margin-bottom:8px;

}

.doctor-name p{

font-size:18px;

font-weight:600;

color:#5b8d2c;

margin-bottom:8px;

}

.doctor-name span{

display:block;

font-size:17px;

color:#666;

font-weight:500;

line-height:1.6;

}
/* ================= CONTACT PAGE ================= */


.contact-hero{

padding:180px 0 100px;

text-align:center;

background:#fafaf7;

}


.contact-hero span{

display:inline-block;

background:#eef7e7;

color:#5b8d2c;

padding:10px 25px;

border-radius:30px;

font-weight:600;

}



.contact-hero h1{

font-size:55px;

margin:25px 0;

font-weight:800;

}



.contact-hero p{

max-width:700px;

margin:auto;

color:#666;

font-size:18px;

line-height:1.8;

}







.contact-section{

padding:80px 0;

}



.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

}







.contact-info h2,
.contact-form h2{

font-size:32px;

margin-bottom:30px;

}





.contact-card{

display:flex;

align-items:center;

gap:20px;

background:white;

padding:25px;

border-radius:20px;

margin-bottom:20px;

box-shadow:0 10px 30px rgba(0,0,0,.07);

}



.contact-card i{

font-size:30px;

color:#5b8d2c;

}



.contact-card h3{

margin-bottom:5px;

}



.contact-card p{

color:#666;

}









.contact-form{

background:white;

padding:40px;

border-radius:30px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}




.contact-form input,
.contact-form textarea{

width:100%;

padding:15px 20px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:15px;

font-family:inherit;

font-size:15px;

}



.contact-form button{

width:100%;

padding:16px;

border:none;

border-radius:40px;

background:#5b8d2c;

color:white;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}



.contact-form button:hover{

transform:translateY(-3px);

}







.map-section{

padding:40px 0 80px;

}



.map-box{

height:250px;

background:#eef7e7;

border-radius:30px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}





.footer{

background:#111;

color:white;

padding:30px 0;

text-align:center;

}






@media(max-width:900px){


.contact-grid{

grid-template-columns:1fr;

}



.contact-hero h1{

font-size:38px;

}


}
/* ================= CONSULT FORM ================= */


.herbal-consultation .form-text{

color:#666;

line-height:1.7;

margin-bottom:25px;

}




.herbal-consultation select{

width:100%;

padding:15px 20px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:15px;

font-family:inherit;

background:white;

font-size:15px;

}



.herbal-consultation button i{

margin-right:8px;

}

/* ================= TOP IMAGE BANNER ================= */


/* ================= TOP IMAGE BANNER ================= */

.top-banner-image{

width:100%;

overflow:hidden;

padding-top:100px; /* banner ko neeche lane ke liye */

}


.top-banner-image img{

width:100%;

height:auto;

display:block;

object-fit:cover;

}



@media(max-width:768px){

.top-banner-image{

padding-top:60px;

}


.top-banner-image img{

width:100%;

height:auto;

object-fit:cover;

}

}

/* ================= REDUCE MOBILE SECTION SPACING ONLY ================= */

@media(max-width:600px){

.hero,
.about,
.products,
.checkout,
.benefits,
.why-us,
.reviews,
.faq,
.consult-herbalist,
.contact-section,
.map-section{

    padding-top:30px;
    padding-bottom:30px;

}

.product-page{

    padding-top:0px;
    padding-bottom:50px;

}

}