
.page-banner{
background: linear-gradient(135deg,#1b8f3a,#39b56b);
padding:100px 0;
text-align:center;
position:relative;
color:#fff;
overflow:hidden;
}

/* background circles */
.page-banner:before{
content:"";
position:absolute;
width:300px;
height:300px;
background:rgba(255,255,255,0.08);
border-radius:50%;
top:-120px;
left:-120px;
}

.page-banner:after{
content:"";
position:absolute;
width:260px;
height:260px;
background:rgba(255,255,255,0.08);
border-radius:50%;
bottom:-120px;
right:-120px;
}

.banner-inner{
position:relative;
z-index:2;
}

/* heading */
.banner-inner h1{
font-size:48px;
font-weight:700;
margin-bottom:20px;
color:#fff;
}

/* breadcrumb */
.breadcrumb-box{
display:inline-block;
padding:10px 25px;
background:rgba(255,255,255,0.15);
border-radius:30px;
font-size:16px;
backdrop-filter:blur(6px);
}

.breadcrumb-box a{
color:#fff;
text-decoration:none;
font-weight:500;
}

.breadcrumb-box span{
margin:0 8px;
color:#d7f5dd;
}

.page-banner{
background: linear-gradient(135deg,#1b8f3a,#39b56b);
padding:15px 0;
color:#fff;
position:relative;
}

.banner-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.25);
}

.banner-content{
position:relative;
z-index:2;
}

.banner-title{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.breadcrumb{
font-size:18px;
}

.breadcrumb a{
color:#fff;
text-decoration:none;
}

.about-img{
transition:0.4s;
}

.about-img:hover{
transform:scale(1.05);
}

.founder-box{
background:#f7f7f7;
border-left:5px solid #2f8f3a;
transition:0.3s;
}

.founder-box:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* ── product view home  ── */
.product-slider .owl-dots {
  display: none !important;
}
.page-section {
  padding: 70px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.page-section:nth-child(even) { background: #f7f5f0; }
.page-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0db14b, #f37021, #0db14b);
  background-size: 200% 100%;
  animation: gradShift 4s linear infinite;
}
@keyframes gradShift { 0%{background-position:0%} 100%{background-position:200%} }

.section-title {
  text-align: center;
  font-size: 34px; font-weight: 700;
  margin-bottom: 40px; color: #1c1c1c;
}
.section-title span {
  position: relative; display: inline-block; padding-bottom: 10px;
}
.section-title span::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 55px; height: 3px;
  background: linear-gradient(90deg, #0db14b, #f37021);
  border-radius: 2px; transition: width 0.4s ease;
}
.section-title:hover span::after { width: 100%; }

/* CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1), box-shadow 0.4s;
  position: relative;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.13);
}

/* BADGE */
.save-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, #0db14b, #0a8f3c);
  color: #fff; padding: 5px 12px;
  font-size: 11px; font-weight: 700;
  border-radius: 20px; z-index: 3;
  box-shadow: 0 4px 10px rgba(13,177,75,0.4);
}

/* WISHLIST */
.wish-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #ccc; z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer; border: none;
  transition: color 0.2s, transform 0.2s;
}
.wish-btn:hover, .wish-btn.active { color: #f37021; }
.wish-btn:hover { transform: scale(1.15); }

/* IMAGE — FULL FILL FIX */
.product-image {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7f2, #e8f5ee);
  display: block;
  padding: 0;        /* ← important: no padding */
}
.product-image a {
  display: block;
  width: 100%; height: 100%;
}
.product-image img {
  width: 100%;           /* ← full width */
  height: 100%;          /* ← full height */
  object-fit: cover;     /* ← fill karo, center se crop */
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}
.product-card:hover .product-image img { transform: scale(1.08); }

/* HOVER CART */
.hover-cart {
  position: absolute;
  bottom: -54px; left: 0; right: 0;
  text-align: center; padding: 0 14px;
  transition: bottom 0.35s cubic-bezier(.23,1,.32,1);
  z-index: 4;
}
.product-card:hover .hover-cart { bottom: 12px; }
.cart-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #f37021; color: #fff;
  padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 6px 18px rgba(243,112,33,0.45);
  transition: background 0.2s;
}
.cart-btn:hover { background: #d65e16; color: #fff; }

/* CONTENT */
.product-content {
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.product-title {
  font-size: 14px; font-weight: 500;
  min-height: 40px; margin-bottom: 8px;
  line-height: 1.5; color: #222; text-align: center;
}
.product-title a { color: inherit; text-decoration: none; }
.product-title a:hover { color: #0db14b; }

.rating {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 12px; color: #f5a623; margin-bottom: 8px;
}
.rating span { color: #aaa; font-size: 11px; }

.price { display: flex; align-items: baseline; gap: 7px; justify-content: center; }
.new-price { font-size: 18px; font-weight: 700; color: #0db14b; }
.old-price { text-decoration: line-through; font-size: 13px; color: #bbb; }

/* OWL DOTS */
.product-slider .owl-nav { display: none !important; }
.product-slider .owl-dots { text-align: center; margin-top: 28px; }
.product-slider .owl-dots .owl-dot span {
  width: 8px; height: 8px; background: #ddd;
  border-radius: 50%; display: block; margin: 0 4px;
  transition: background 0.2s, width 0.3s;
}
.product-slider .owl-dots .owl-dot.active span {
  background: #0db14b; width: 24px; border-radius: 4px;
}

/* SCROLL REVEAL */
.featured-products {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.featured-products.visible { opacity: 1; transform: translateY(0); }
.owl-item .product-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.owl-item.active .product-card { opacity: 1; transform: translateY(0); }


/* ── product view home  ── */

/* ── REVEAL ── */
[data-reveal]{opacity:0;transition:opacity .75s ease,transform .75s ease;}
[data-reveal="up"]{transform:translateY(40px);}
[data-reveal="left"]{transform:translateX(-48px);}
[data-reveal="right"]{transform:translateX(48px);}
[data-reveal].in{opacity:1;transform:none;}
[data-d="1"]{transition-delay:.1s;}[data-d="2"]{transition-delay:.22s;}
[data-d="3"]{transition-delay:.34s;}[data-d="4"]{transition-delay:.46s;}

/* ── TESTIMONIAL ── */
.testi-sec{padding:90px 0 70px;background:#fff;position:relative;overflow:hidden;}
.testi-sec::before{content:'\201C';font-family:Georgia,serif;font-size:360px;line-height:1;color:rgba(13,177,75,.04);position:absolute;top:-30px;left:10px;pointer-events:none;}
.sec-head{text-align:center;margin-bottom:52px;}
.eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:11px;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:#0db14b;margin-bottom:12px;}
.eyebrow::before,.eyebrow::after{content:'';width:22px;height:2px;background:#0db14b;border-radius:2px;}
.sec-head h2{font-size:42px;font-weight:700;color:#1a1a1a;line-height:1.2;}
.sec-head h2 em{font-style:italic;color:#0db14b;}
.rating-row{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:16px;}
.rating-num{font-size:52px;font-weight:700;color:#1a1a1a;line-height:1;}
.r-stars{color:#f5a623;font-size:20px;letter-spacing:2px;}
.r-count{font-size:12px;color:#888;margin-top:3px;}
.testi-card{background:#faf8f3;border-radius:20px;padding:30px 26px 26px;border:1px solid #e8e0d4;position:relative;transition:transform .35s ease,box-shadow .35s ease;height:100%;}
.testi-card:hover{transform:translateY(-8px);box-shadow:0 20px 48px rgba(0,0,0,.09);}
.q-icon{font-size:58px;line-height:.55;color:#0db14b;opacity:.22;display:block;margin-bottom:10px;}
.t-stars{color:#f5a623;font-size:13px;margin-bottom:12px;letter-spacing:2px;}
.t-text{font-size:16px;line-height:1.8;color:#555;font-style:italic;margin-bottom:20px;}
.t-line{width:32px;height:2px;background:#0db14b;border-radius:2px;margin-bottom:16px;}
.t-author{display:flex;align-items:center;gap:11px;}
.t-av{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:700;color:#fff;flex-shrink:0;box-shadow:0 4px 12px rgba(0,0,0,.15);}
.t-name{font-size:14px;font-weight:600;color:#1a1a1a;}
.t-loc{font-size:11px;color:#999;margin-top:2px;}
.t-badge{margin-left:auto;background:#e8f5ee;color:#0db14b;font-size:10px;font-weight:600;padding:4px 9px;border-radius:20px;display:flex;align-items:center;gap:4px;white-space:nowrap;}
.testi-slider .owl-dots{text-align:center;margin-top:32px;}
.testi-slider .owl-dot span{width:8px;height:8px;background:#ddd;border-radius:50%;display:block;margin:0 4px;transition:background .2s,width .3s;}
.testi-slider .owl-dot.active span{background:#0db14b;width:26px;border-radius:4px;}
.testi-slider .owl-nav{display:none;}
.t-controls{display:flex;justify-content:center;gap:12px;margin-top:24px;}
.t-ctrl{width:44px;height:44px;border-radius:50%;border:1.5px solid #e0d9ce;background:#fff;color:#333;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;}
.t-ctrl:hover{background:#0db14b;border-color:#0db14b;color:#fff;}

/* ── VIDEO SECTION ── */
.video-sec{padding:90px 0;background:#1a1a1a;position:relative;overflow:hidden;}
.video-sec::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 10% 60%,rgba(13,177,75,.18) 0%,transparent 55%),radial-gradient(ellipse at 88% 30%,rgba(243,112,33,.1) 0%,transparent 50%);pointer-events:none;}
.vid-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;position:relative;z-index:2;}
.vid-text h2{font-size:44px;font-weight:700;color:#fff;line-height:1.18;margin-bottom:16px;}
.vid-text h2 em{font-style:italic;color:#0db14b;}
.vid-text p{font-size:15px;line-height:1.82;color:rgba(255,255,255,.58);margin-bottom:12px;}
.vid-text p strong{color:rgba(255,255,255,.85);font-weight:500;}
.vid-feats{display:flex;flex-wrap:wrap;gap:9px;margin:22px 0 30px;}
.vid-feat{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.11);color:rgba(255,255,255,.75);font-size:12px;padding:6px 13px;border-radius:20px;transition:background .2s;}
.vid-feat:hover{background:rgba(13,177,75,.2);border-color:rgba(13,177,75,.3);}
.vid-feat i{color:#0db14b;font-size:11px;}
.vid-cards{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.vid-card{border-radius:14px;overflow:hidden;position:relative;cursor:pointer;box-shadow:0 8px 28px rgba(0,0,0,.35);transition:transform .35s ease,box-shadow .35s ease;}
.vid-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.45);}
.vid-card.big{grid-column:1/-1;border-radius:18px;}
.vid-card video{width:100%;display:block;aspect-ratio:16/9;object-fit:cover;}
.vid-overlay{position:absolute;inset:0;background:rgba(0,0,0,.28);display:flex;align-items:center;justify-content:center;transition:background .3s;}
.vid-card:hover .vid-overlay{background:rgba(0,0,0,.12);}
.play-ring{width:56px;height:56px;background:rgba(255,255,255,.95);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#0db14b;font-size:18px;padding-left:3px;box-shadow:0 6px 22px rgba(0,0,0,.28);transition:transform .3s,box-shadow .3s;}
.vid-card.big .play-ring{width:68px;height:68px;font-size:22px;}
.vid-card:hover .play-ring{transform:scale(1.12);}
.vid-label{position:absolute;bottom:12px;left:14px;color:#fff;font-size:11px;font-weight:500;background:rgba(0,0,0,.5);backdrop-filter:blur(4px);padding:4px 10px;border-radius:20px;}
.vid-card.big .vid-label{font-size:13px;bottom:16px;left:16px;}
.vid-dur{position:absolute;top:10px;right:10px;background:rgba(0,0,0,.6);color:#fff;font-size:11px;padding:3px 8px;border-radius:4px;}
.vid-modal{display:none;position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.94);align-items:center;justify-content:center;}
.vid-modal.open{display:flex;}
.vid-modal-box{width:92%;max-width:960px;position:relative;animation:mIn .35s ease;}
@keyframes mIn{from{opacity:0;transform:scale(.9);}to{opacity:1;transform:scale(1);}}
.vid-modal-close{position:absolute;top:-46px;right:0;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);color:#fff;font-size:20px;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,transform .2s;}
.vid-modal-close:hover{background:rgba(255,255,255,.25);transform:rotate(90deg);}
@media(max-width:900px){.vid-grid{grid-template-columns:1fr;gap:44px;}.sec-head h2,.vid-text h2{font-size:32px;}}
@media(max-width:600px){.testi-sec,.video-sec{padding:60px 0;}.vid-cards{grid-template-columns:1fr;}.vid-card.big{grid-column:1;}}


.bulk {
  padding: 60px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.facility_box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
}

.facility_box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.facility_box .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0db14b, #0a7c4a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility_box .icon i {
  color: #fff;
  font-size: 28px;
}

/* TEXT */
.facility_box h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.facility_box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width:768px){
  .facility_box {
    margin-bottom: 20px;
  }
}