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

body{
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
}

/* ===============================
   HEADER – FINAL
================================ */

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 20px;

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

  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}

/* LOGO */
.logo{
  display: flex;
  align-items: center;
}

.logo img{
  height: 42px;
  width: auto;
}

/* DESKTOP NAV */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a{
  text-decoration: none;
  font-weight: 600;
  color: #222;
  font-size: 15px;
}

/* DESKTOP ACTIONS */
.actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn{
  padding: 8px 18px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.whatsapp{ background:#25d366; }
.call{ background:#1f7a5a; }

/* ===============================
   MOBILE MENU ICON
================================ */

.menu-toggle{
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===============================
   MOBILE MENU PANEL
================================ */

.mobile-menu{
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  padding: 20px 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);

  transform: translateY(-120%);
  transition: transform 0.35s ease;
  z-index: 999;
}

.mobile-menu a{
  text-decoration: none;
  font-weight: 600;
  color: #222;
  font-size: 16px;
}

.mobile-actions{
  display: flex;
  gap: 14px;
}

.mobile-menu.active{
  transform: translateY(0);
}

/* ===============================
   MOBILE VIEW
================================ */

@media (max-width:768px){

  .header{
    height: 64px;
    padding: 0 14px;
  }

  .logo img{
    height: 34px;
  }

  /* hide desktop items */
  .nav,
  .actions{
    display: none;
  }

  /* show menu icon */
  .menu-toggle{
    display: block;
  }

  .mobile-menu{
    top: 64px;
  }
}


/* ===============================
   HERO – NO CROP + NO BLACK SIDES (FINAL)
================================ */

.hero{
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 72px;
  overflow: hidden;
  background: #000;
}

/* SLIDER */
.hero-slider{
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
}

/* SLIDE */
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active{
  opacity: 1;
}

/* 🔥 BLUR BACKGROUND FROM IMAGE */
.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  backdrop-filter: blur(26px) brightness(0.7);
  background: rgba(0,0,0,0.25);
  z-index:0;
}

/* 🔥 MAIN IMAGE (SAFE – NO CUT) */
.hero-slide img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:fill;       /* ❌ never crop */
  object-position:center;
  display:block;
}

/* DARK OVERLAY */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
  z-index:1;
}

/* CONTENT */
.hero-content{
  position:absolute;
  inset:0;
  z-index:2;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;

  text-align:center;
  color:#fff;
  padding:0 20px 60px;
}

.hero-content h1{
  font-size:48px;
  margin-bottom:16px;
  text-shadow:0 4px 20px rgba(0,0,0,.6);
}

.hero-btn{
  padding:14px 36px;
  background:#25d366;
  color:#000;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .hero{
    padding-top:64px;
  }

  .hero-slider{
    height:calc(100vh - 64px);
  }

  .hero-content h1{
    font-size:28px;
  }
}


/* ===============================
   BRAND STRIP – FINAL FIX
================================ */

.brand-strip{
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;

  background: #1f7a5a;
  color: #fff;
  text-align: center;

  padding: 28px 40px;
  font-weight: 600;
}

/* Brand strip items */
.brand-strip div{
  font-size: 15px;
  letter-spacing: .5px;
}

/* MOBILE */
@media(max-width:768px){
  .brand-strip{
    padding: 22px 16px;
    gap: 14px;
  }

  .brand-strip div{
    font-size: 14px;
  }
}


/* ===============================
   CATEGORY SECTION – PREMIUM FINAL (POLISHED)
================================ */

.category-section{
  padding: 110px 40px 100px;
  position: relative;

  /* 🔥 Premium soft gradient */
  background: linear-gradient(
    180deg,
    #f3fbf7 0%,
    #ffffff 45%,
    #f3fbf7 100%
  );
  overflow: hidden;
}

/* subtle premium pattern (VERY light) */
.category-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(31,122,90,0.08) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  opacity: 0.25;
  pointer-events: none;
}

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

.category-section h2{
  position: relative;
  text-align: center;
  margin-bottom: 16px;

  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #1f7a5a;
  z-index: 1;
}

/* underline accent */
.category-section h2::after{
  content:"";
  display:block;
  width:72px;
  height:4px;
  background:#25d366;
  margin:16px auto 0;
  border-radius:2px;
}

/* ===============================
   SUBTITLE
================================ */

.category-subtitle{
  position: relative;
  text-align: center;

  max-width: 720px;
  margin: 0 auto 60px;

  font-size: 16px;
  line-height: 1.7;
  color: #555;
  z-index: 1;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media(max-width:768px){

  .category-section{
    padding: 90px 20px 80px;
  }

  .category-section h2{
    font-size: 30px;
  }

  .category-subtitle{
    font-size: 15px;
    margin-bottom: 48px;
  }
}


/* ===============================
   GRID
================================ */

.premium-grid{
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

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

.category-card{
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  overflow: hidden;

  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.category-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ===============================
   OVERLAY CONTENT
================================ */

.card-content{
  position: absolute;
  inset: 0;

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

  padding: 22px 18px;
  background: rgba(0,0,0,0.45);
  color: #fff;

  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;

  transition: background .3s ease;
}

/* PRODUCT NAME (TOP) */
.card-content span{
  font-size: 22px;
  margin-top: 10px;
}

/* CTA (BOTTOM) */
.card-content small{
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
  color: #25d366;
}

/* HOVER EFFECT */
.category-card:hover .card-content{
  background: rgba(0,0,0,0.18);
}

.category-card:hover .card-content small{
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 992px){
  .premium-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 576px){
  .premium-grid{
    grid-template-columns: 1fr;
  }

  .category-section{
    padding: 90px 20px;
  }
}



/* ===============================
   WHY / PROCESS / ABOUT
   PREMIUM BRAND THEME (FINAL)
================================ */

/* COMMON */
.why-section,
.process-section,
.about-section{
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

/* ===============================
   WHY SECTION (DARK TRUST)
================================ */

.why-section{
  background: linear-gradient(
    180deg,
    #0f2f25 0%,
    #143d30 50%,
    #0f2f25 100%
  );
}

.why-section h2{
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* WHY GRID */
.why-grid{
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 26px;
}

.why-grid div{
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  padding: 30px 26px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;

  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);

  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.why-grid div::before{
  content:"✔";
  display:block;
  font-size:20px;
  margin-bottom:14px;
  color:#25d366;
}

.why-grid div:hover{
  transform: translateY(-8px);
  background: rgba(37,211,102,0.18);
  box-shadow: 0 22px 50px rgba(0,0,0,0.5);
}

/* ===============================
   PROCESS SECTION (CLEAN & STRONG)
================================ */

.process-section{
  background: #ffffff;
}

.process-section h2{
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 800;
  color: #1f7a5a;
}

/* PROCESS GRID */
.process-grid{
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 26px;
}

.process-grid div{
  background: linear-gradient(
    135deg,
    #1f7a5a,
    #25d366
  );
  color: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform .35s ease, box-shadow .35s ease;
}

.process-grid div:hover{
  transform: translateY(-8px);
  box-shadow: 0 32px 60px rgba(0,0,0,0.35);
}

/* ===============================
   ABOUT SECTION (🔥 BUYER CONVERSION)
================================ */

.about-section{
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f1f7f5 100%
  );
  text-align: center;
}

/* ABOUT TITLE */
.about-section h2{
  font-size: 40px;
  font-weight: 800;
  color: #1f7a5a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 34px;
  position: relative;
}

/* underline accent */
.about-section h2::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#25d366;
  margin:18px auto 0;
  border-radius:2px;
}

/* ABOUT CONTENT CARD */
.about-section p{
  max-width: 960px;
  margin: 40px auto 0;
  padding: 44px 48px;

  background: #ffffff;
  border-radius: 24px;

  font-size: 16.8px;
  line-height: 2;
  color: #333;

  border-left: 6px solid #25d366;

  box-shadow: 0 35px 70px rgba(0,0,0,0.1);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* subtle hover trust feel */
.about-section p:hover{
  transform: translateY(-6px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.14);
}

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

@media(max-width:768px){

  .why-section,
  .process-section,
  .about-section{
    padding: 90px 20px;
  }

  .why-section h2,
  .process-section h2{
    font-size: 30px;
  }

  .about-section h2{
    font-size: 32px;
  }

  .about-section p{
    padding: 30px 24px;
    font-size: 15.5px;
    line-height: 1.8;
  }
}

/* ===============================
   TESTIMONIALS – PREMIUM
================================ */

.testimonials{
  padding:110px 40px;
  background:
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    #ffffff;
  background-size:24px 24px;
  position:relative;
  overflow:hidden;
}

/* HEADER */
.testi-head{
  text-align:center;
  margin-bottom:60px;
}

.testi-tag{
  display:inline-block;
  padding:6px 18px;
  border:2px solid #ff2fa0;
  color:#ff2fa0;
  font-weight:700;
  border-radius:6px;
  margin-bottom:14px;
}

.testi-head h2{
  font-size:34px;
  font-weight:800;
  color:#1f2937;
}

/* SLIDER */
.testi-slider{
  max-width:900px;
  margin:auto;
  position:relative;
}

/* CARD */
.testi-card{
  display:none;
  border:1.5px solid #4ea3ff;
  padding:38px 34px;
  border-radius:10px;
  background:#fff;
  text-align:center;
  animation:fade 1s ease;
}

.testi-card.active{
  display:block;
}

@keyframes fade{
  from{opacity:0; transform:translateY(12px);}
  to{opacity:1; transform:translateY(0);}
}

/* USER */
.testi-user{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.testi-user img{
  width:28px;
  height:28px;
}

.testi-user h4{
  font-size:18px;
  font-weight:700;
}

/* STARS */
.testi-stars{
  color:#fbbc04;
  font-size:20px;
  margin-bottom:14px;
}

/* TEXT */
.testi-card h5{
  font-size:17px;
  font-weight:700;
  color:#1f7a5a;
  margin-bottom:12px;
}

.testi-card p{
  font-size:15px;
  line-height:1.7;
  color:#444;
}

/* MOBILE */
@media(max-width:768px){
  .testimonials{
    padding:80px 20px;
  }

  .testi-head h2{
    font-size:26px;
  }

  .testi-card{
    padding:28px 22px;
  }
}


/* ===============================
   CONTACT SECTION – WHATSAPP FORM
================================ */

.contact-section{
  background: linear-gradient(
    180deg,
    #0f2f25 0%,
    #143d30 100%
  );
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.contact-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37,211,102,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(37,211,102,0.10), transparent 45%);
  pointer-events:none;
}

/* TITLE */
.contact-section h2{
  position: relative;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  z-index:1;
}

/* SUBTITLE */
.contact-sub{
  position: relative;
  max-width: 620px;
  margin: 0 auto 45px;
  color: #d8e6df;
  font-size: 16px;
  z-index:1;
}

/* FORM WRAPPER */
.contact-form{
  position: relative;
  max-width: 520px;
  margin: auto;
  padding: 36px 32px;

  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(8px);

  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  z-index:1;
}

/* INPUTS */
.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;

  border-radius: 12px;
  border: none;
  outline: none;

  font-size: 14.5px;
  font-family: inherit;
}

/* TEXTAREA */
.contact-form textarea{
  resize: none;
}

/* SUBMIT BUTTON */
.contact-form button{
  width: 100%;
  padding: 14px;

  border-radius: 30px;
  border: none;

  background: #25d366;
  color: #000;

  font-weight: 700;
  font-size: 15px;
  cursor: pointer;

  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-form button:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37,211,102,0.45);
}

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

@media(max-width:768px){
  .contact-section{
    padding: 90px 16px;
  }

  .contact-section h2{
    font-size: 30px;
  }

  .contact-form{
    padding: 28px 22px;
  }
}
/* ===============================
   FOOTER – RAJAI BAGS
================================ */

.footer-main{
  background:#f6f6f6;
  padding:60px 40px 0;
  color:#333;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:40px;
}

/* BRAND */
.footer-col.brand img{
  height:48px;
  margin-bottom:16px;
}

.footer-col.brand p{
  font-size:14px;
  line-height:1.7;
  color:#555;
}

/* HEADINGS */
.footer-col h4{
  font-size:18px;
  margin-bottom:14px;
  color:#1f7a5a;
}

/* LINKS */
.footer-col ul{
  list-style:none;
}

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

.footer-col ul li a{
  text-decoration:none;
  color:#333;
  font-size:14px;
}

.footer-col ul li a:hover{
  color:#25d366;
}

/* CONTACT */
.footer-col p{
  font-size:14px;
  margin-bottom:10px;
}

.footer-col a{
  color:#1f7a5a;
  text-decoration:none;
}

/* MAP */
.footer-col.map iframe{
  width:100%;
  height:220px;
  border-radius:12px;
  border:0;
}

/* BOTTOM */
.footer-bottom{
  margin-top:40px;
  padding:16px 0;
  text-align:center;
  background:#111;
  color:#aaa;
  font-size:13px;
}

/* MOBILE */
@media(max-width:992px){
  .footer-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:576px){
  .footer-main{
    padding:40px 20px 0;
  }

  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-col.map iframe{
    height:200px;
  }
}


/* ===============================
   FLOATING CONTACT – ALL DEVICES (FINAL)
================================ */

.float-contact{
  position: fixed;
  left: 14px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

/* TOGGLE BUTTON (ARROW / CLOSE) */
.float-toggle{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #fff;

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

  font-size: 22px;              /* 🔥 cleaner icon */
  cursor: pointer;

  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: background .3s ease, transform .3s ease;
}

.float-toggle:hover{
  background:#000;
  transform: scale(1.05);
}

/* ACTION CONTAINER (DEFAULT SHOW) */
.float-actions{
  display: flex;
  gap: 10px;
  margin-left: 10px;

  opacity: 1;                   /* 🔥 default visible */
  transform: translateX(0);
  pointer-events: auto;

  transition: opacity .3s ease, transform .3s ease;
}

/* HIDE STATE (when NOT active) */
.float-contact:not(.active) .float-actions{
  opacity: 0;
  transform: translateX(-12px);
  pointer-events: none;
}

/* BUTTONS */
.float-btn{
  padding: 14px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  white-space: nowrap;
  transition: transform .25s ease;
}

.float-btn:hover{
  transform: translateY(-2px);
}

.float-btn.whatsapp{
  background: #25d366;
}

.float-btn.call{
  background: #1f7a5a;
}

/* MOBILE – TOUCH FRIENDLY */
@media(max-width:768px){
  .float-btn{
    padding: 14px 20px;
    font-size: 14px;
  }
}





/* ===============================
   PRICE BADGE – COMPACT VERSION
================================ */

.card-content .price{
  display: inline-block;

  background: #1f7a5a;        /* dark green */
  color: #ffffff;

  padding: 6px 14px;          /* 🔥 smaller padding */
  border-radius: 22px;        /* 🔥 compact curve */

  font-size: 15px;            /* 🔥 smaller text */
  font-weight: 700;
  letter-spacing: 0.4px;

  border: 2px solid #ffffff;

  box-shadow: 0 6px 16px rgba(0,0,0,0.30);
  text-transform: uppercase;
}

