  body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding-top: 40px;
        }

        :root {
  --color-gold: #cca34b;
  --color-beige: #cca34b;
  --color-black: #000000;
  --color-white: #ffffff;
}
        
        .navbar {
            background-color: #f0fdf4;
            /* light green */
            padding: 0.8rem 2rem;
        }

        .navbar-nav .nav-link {
            color: #0c0c0c;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s;
        }

        /* Hover underline effect */
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            left: 0;
            bottom: -3px;
            background-color: #4ade80;
            transition: 0.3s;
            display: none;
        }


        /* Centered logo */
        .navbar .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0c0c0c;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
        }

        /* Right icons */
        .navbar-icons .nav-link {
            color: #0c0c0c;
            position: relative;
            margin-left: 1rem;
        }

        .navbar-icons .nav-link .badge {
            position: absolute;
            top: -5px;
            right: -10px;
            font-size: 0.7rem;
            background-color: #4ade80;
            color: #fff;
            padding: 2px 6px;
            border-radius: 50%;
        }

        /* Dropdown hover for desktop */
        @media (min-width: 992px) {
            .navbar-nav .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
        }

        /* Dropdown icon right next to text */
        .navbar-nav .dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            /* space between text and arrow */
        }

        /* Mobile responsive adjustments */
        @media (max-width: 991px) {
            .navbar-nav {
                text-align: center;
            }

            .navbar-icons {
                justify-content: center;
                margin-top: 0.5rem;
            }

            .navbar .logo {
                position: relative;
                left: 0;
                transform: none;
                margin: 0 auto 10px;
            }
        }

        /* Section padding */
        section {
            position: relative;
        }

        /* Image wrapper for scroll animation */
        .image-wrapper {
            overflow: hidden;
        }

        #scroll-img {
            transition: transform 0.3s ease-out;
            will-change: transform;
        }

/* slider  */

    :root {
      --dot: 10px;
      --accent: #111;
    }
    * { box-sizing: border-box; }
 
    .slider {
      width: 100%;
      max-width: 1200px;
      margin: 30px auto;
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0,0,0,.15);
    }
    .track {
      display: flex;
      transition: transform .5s ease;
      will-change: transform;
    }
    .slide {
      min-width: 100%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }
    .slide-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 1100px;
    }
    .slide-content img {
      width: 100%;
      max-height: 380px;
      object-fit: cover;
      border-radius: 12px;
    }
    .text h1 {
      margin: 0 0 12px;
      font-size: clamp(22px, 3vw, 38px);
      font-weight: 700;
      color: #111;
      line-height: 1.2;
    }
    .text p {
      margin: 0 0 20px;
      font-size: clamp(14px, 2vw, 18px);
      color: #555;
      line-height: 1.6;
    }
    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 50px;
      background: #111;
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all .3s ease;
    }
    .btn:hover {
      background: #333;
      transform: translateY(-2px);
    }

    /* Arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: #ffffffc9;
      color: #000;
      font-size: 22px;
      cursor: pointer;
      display: grid;
      place-items: center;
      box-shadow: 0 2px 8px rgba(0,0,0,.15);
    }
    .arrow:hover { background: #fff; }
    .prev { left: 10px; }
    .next { right: 10px; }

    /* Dots */
    .dots {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 14px;
      display: flex;
      gap: 10px;
      padding: 6px 12px;
      background: #ffffffb8;
      border-radius: 999px;
      box-shadow: 0 2px 8px rgba(0,0,0,.08);
    }
    .dot {
      width: var(--dot); 
      height: var(--dot);
      border-radius: 50%;
      background: #bbb;
      border: 0;
      cursor: pointer;
    }
    .dot[aria-current="true"] { background: var(--accent); }

    /* Responsive */
    @media (max-width: 900px) {
      .slide-content { grid-template-columns: 1fr; text-align: center; }
      .slide-content img { max-height: 300px; }
    }
    @media (max-width: 500px) {
      .text h1 { font-size: 20px; }
      .text p { font-size: 14px; }
      .btn { padding: 10px 22px; font-size: 14px; }
      .arrow { width: 36px; height: 36px; font-size: 18px; }
    }

/* Main Section */
    .about-section {
      padding: 20px 0;
    }

    /* Left side image container */
    .image-stack {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-back {
      width: 100%;
      border-radius: 20px;
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .image-front {
      position: absolute;
      width: 60%; /* smaller on all screens */
      top: 85%;   /* adjusted for smaller size */
      left: 75%;
      transform: translate(-50%, -50%);
      z-index: 2;
      border-radius: 20px;
      transition: transform 0.3s ease;
      overflow: hidden;
    }

    /* Hover effects */
    .image-stack:hover .image-back {
      transform: scale(1.05);
    }

    .image-stack:hover .image-front {
      transform: translate(-50%, -50%) scale(1.05);
    }

    /* Play Button */
    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      color: #4CAF50;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      cursor: pointer;
      z-index: 3;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .play-btn:hover {
      background: #4CAF50;
      color: #fff;
      transform: translate(-50%, -50%) scale(1.1);
    }

    /* Right Side Content */
    .about-section h6 {
      color: #76c043;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .about-section h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .about-section p {
      color: #6c757d;
      font-size: 1rem;
      margin-bottom: 30px;
    }

    /* Features Section */
    .features {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .feature-box {
      text-align: center;
      max-width: 150px;
    }

    .feature-icon {
      background: #76c043;
      color: #fff;
      font-size: 30px;
      width: 70px;
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin: 0 auto 15px;
      transition: all 0.3s ease;
    }

    .feature-box:hover .feature-icon {
      background: #4CAF50;
      transform: scale(1.1);
    }

    .feature-box p {
      font-size: 0.95rem;
      margin: 0;
    }

    /* Learn More Button */
    .btn-main {
      background: #76c043;
      color: #fff;
      font-size: 18px;
      padding: 12px 30px;
      border-radius: 10px;
      border: none;
      transition: background 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-main:hover {
      background: #4CAF50;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .about-section {
        text-align: center;
        padding: 50px 20px;
      }

      .image-front {
        width: 55%; /* smaller on tablet */
        top: 70%;
        left: 70%;
      }

      .features {
        justify-content: center;
      }

      .about-section h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 575px) {
      .image-front {
        width: 80%; /* adjust for very small screens */
        top: 65%;
        left: 65%;
      }

      .about-section h2 {
        font-size: 1.6rem;
      }
    }


     /* Section Styling */
   .how-it-works {
  position: relative;
  background: #eaffe4 !important;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

/* Waves */
.how-it-works::before,
.how-it-works::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  background-size: cover;
  z-index: 1;
}
.how-it-works::before {
  top: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 150"><path fill="%23eaffe4" d="M0,64L80,80C160,96,320,128,480,138.7C640,149,800,139,960,117.3C1120,96,1280,64,1360,48L1440,32L1440,0L0,0Z"></path></svg>') no-repeat;
}
.how-it-works::after {
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 150"><path fill="%23eaffe4" d="M0,64L80,80C160,96,320,128,480,138.7C640,149,800,139,960,117.3C1120,96,1280,64,1360,48L1440,32L1440,150L0,150Z"></path></svg>') no-repeat;
}

/* Heading */
.how-it-works h6 {
  color: #6cc042;
  font-weight: 600;
  margin-bottom: 10px;
}
.how-it-works h2 {
  font-weight: 700;
  color: #12263f;
  margin-bottom: 15px;
}
.how-it-works p {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
}

/* Step Box (Circle with dotted 3D border) */
.step-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.4s ease;
}

/* Dotted Rotating Border */
.step-box::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 4px dotted #28a745;
  animation: rotateDots 6s linear infinite;
}

/* Icon Inside */
.step-box i {
  font-size: 2rem;
  color: #28a745;
  z-index: 2;
}

/* Hover Effect */
.step-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Rotate Border Animation */
@keyframes rotateDots {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

    /* Steps Container */
    .steps-container {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    /* SVG Center Line */
    .steps-container svg {
      position: absolute;
      top: 65px;
      left: 0;
      width: 100%;
      height: 50px;
      transform: translateY(-50%);
      z-index: 0;
    }

    .steps-container svg path {
      stroke: #6cc042;
      stroke-width: 2;
      stroke-dasharray: 6, 6;
      fill: none;
    }

    /* Step Box */
    .step-box {
      position: relative;
      background: #fff;
      border: 2px dashed #a7e49e;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .step-box i {
      font-size: 36px;
      color: #6cc042;
    }

    .step-box:hover {
      background: #6cc042;
      border-color: #6cc042;
      transform: scale(1.05);
    }

    .step-box:hover i {
      color: #fff;
    }

    /* Step Content */
    .step-content {
      text-align: center;
      max-width: 250px;
      z-index: 2;
    }

    .step-content p {
      margin-top: 10px;
      font-size: 0.95rem;
      color: #12263f;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .steps-container {
        flex-direction: column;
      }

      .steps-container svg {
        display: none;
      }

      .step-content {
        margin-bottom: 40px;
      }
    }


    .ingredients-section {
      padding: 60px 0;
    }

    .ingredient-item {
      text-align: center;
      margin-bottom: 30px;
    }

    .ingredient-item img {
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
      transition: transform 0.3s ease;
    }

    .ingredient-item img:hover {
      transform: scale(1.1);
    }

    .ingredient-item h6 {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .product-image img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    /* Swiper */
    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Responsive */
    @media(max-width: 991px) {
      .ingredients-section {
        text-align: center;
      }
    }


     .pro-section {
      padding: 100px 0;
       background: url('../img/bg-product-13-scaled.webp') no-repeat center center/cover;
    }

    .pro-title {
      font-weight: 700;
      font-size: 36px;
      margin-bottom: 10px;
    }

    .pro-subtitle {
      color: #666;
      margin-bottom: 50px;
    }

    .pro-box {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      transition: all 0.4s ease;
      position: relative;
    }

    .pro-box:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    .pro-img {
      position: relative;
      padding: 20px;
      text-align: center;
    }

    .pro-img img {
      max-height: 230px;
      transition: transform 0.4s ease;
    }

    .pro-box:hover .pro-img img {
      transform: scale(1.1) rotate(-3deg);
    }

    /* Floating icons */
    .pro-icons {
      position: absolute;
      top: 15px;
      right: 15px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .pro-box:hover .pro-icons {
      opacity: 1;
      transform: translateY(0);
    }

    .pro-icons a {
      background: #fff;
      color: #333;
      padding: 8px;
      border-radius: 50%;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .pro-icons a:hover {
      background: #4CAF50;
      color: #fff;
    }

    .pro-info {
      padding: 20px;
      text-align: center;
    }

    .pro-info h6 {
      font-size: 13px;
      color: #aaa;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .pro-info h5 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .pro-rating {
      color: #ffc107;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .pro-price {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #1b1b1b;
    }

    .pro-btn {
      display: inline-block;
      width: 100%;
      background: linear-gradient(135deg, #ff9800, #e65100);
      color: #fff;
      padding: 12px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    }

    .pro-btn:hover {
      background: linear-gradient(135deg, #e65100, #bf360c);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(230, 81, 0, 0.6);
    }






    .faq-section {
      padding: 80px 0;
      /* background: linear-gradient(135deg, #f0f4ff, #ffffff); */
    }

    .faq-title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #111;
    }

    .faq-img img {
      border-radius: 20px;
      width: 100%;
      height: auto;
      object-fit: cover;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
      transition: transform 0.5s ease;
    }

    .faq-img img:hover {
      transform: scale(1.05) rotate3d(1, 1, 0, 8deg);
    }

    /* Accordion 3D Style */
    .accordion-item {
      border-radius: 15px !important;
      margin-bottom: 15px;
      overflow: hidden;
      border: none;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      background: #fff;
    }

    .accordion-item:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .accordion-button {
      font-weight: 600;
      font-size: 16px;
      padding: 18px 20px;
      background: #fff;
      border: none;
      box-shadow: none !important;
      transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: #fff;
    }

    .accordion-body {
      padding: 18px 20px;
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-title {
        font-size: 28px;
      }

      .accordion-button {
        font-size: 15px;
      }
    }




    
    .footer-section {
      background: #f0fce7;
      padding: 60px 0 20px;
      color: #1c1c1c;
    }

    /* Newsletter */
    .footer-newsletter {
      margin-bottom: 40px;
      text-align: center;
    }

    .footer-newsletter h5 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #12372A;
    }

    .footer-newsletter p {
      color: #444;
      margin-bottom: 20px;
    }

    .newsletter-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .newsletter-form input {
      border: none;
      padding: 14px 15px;
      flex: 1;
      font-size: 15px;
      outline: none;
    }

    .newsletter-form button {
      background: #6fdd46;
      border: none;
      padding: 14px 25px;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      background: #5ac53d;
    }

    /* Footer Links */
    .footer-links h6 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #12372A;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links ul li a:hover {
      color: #6fdd46;
    }

    /* Social + Payment */
    .footer-bottom {
      border-top: 1px solid #ddd;
      margin-top: 30px;
      padding-top: 20px;
      text-align: center;
    }

    .footer-social a {
      margin: 0 8px;
      font-size: 18px;
      color: #333;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      color: #6fdd46;
    }

    .footer-payments img {
      height: 28px;
      margin: 0 6px;
    }

    .footer-copy {
      margin-top: 15px;
      font-size: 14px;
      color: #666;
    }




      .cube-toggle {
      text-align: center;
      cursor: pointer;
      font-weight: 600;
      margin: 20px;
      padding-bottom: 10px;

    }

    .cube-container {
      perspective: 1000px;
      margin: 40px auto;
      width: 100%;
      max-width: 500px;
      aspect-ratio: 16/9;
      position: relative;
      padding-bottom: 30px;
      
    }

    .cube-spinner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transform-origin: center;
      transition: all 1s ease-in-out;
    }

    .cube-face {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    .cube-face img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .cube-face img.transparency {
      opacity: 0.7;
    }

    /* Cube positioning */
    .cube-one { transform: translateZ(250px); }
    .cube-two { transform: rotateY(90deg) translateZ(250px); }
    .cube-three { transform: rotateY(180deg) translateZ(250px); }
    .cube-four { transform: rotateY(-90deg) translateZ(250px); }

    @media (max-width: 768px) {
      .cube-container { max-width: 350px; }
    }

    @media (max-width: 576px) {
      .cube-container { max-width: 280px; }
    }


    /* Parallax Scroll Effect */
.image-block img {
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Hover Tilt + Zoom */
.image-block:hover img {
  transform: scale(1.05) rotate3d(1, 1, 0, 3deg);
}



.Testimonial-set {
   height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f7;
    font-family: sans-serif;
}



 .tbox-wrap {
    width: 100%;
    max-width: 56rem;
    padding: 2rem;
  }

  .tgrid-wrap {
    display: grid;
    gap: 5rem;
  }

  .timg-holder {
    position: relative;
    width: 100%;
    height: 24rem;
    perspective: 1000px;
  }

  .tphoto {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .ttext-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .tname {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.25rem;
  }

  .trole {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
  }

  .tquote {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
  }

  .tarrows {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
  }

  .tbtn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .tbtn:hover {
    background-color: #00a6fb;
  }

  .tbtn svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #f1f1f7;
    transition: transform 0.3s;
  }

  .tbtn:hover svg {
    fill: #ffffff;
  }

  .tprev:hover svg {
    transform: rotate(-12deg);
  }

  .tnext:hover svg {
    transform: rotate(12deg);
  }

  @media (min-width: 768px) {
    .tgrid-wrap {
      grid-template-columns: 1fr 1fr;
    }
    .tarrows {
      padding-top: 0;
    }
  }



  /* counter  */
   /* Counter container */
    .counter-box {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      margin: 0 auto;
      max-width: 1200px;
    }

    /* Counter item */
    .counter-item {
      background: linear-gradient(135deg, #ff9a9e, #fad0c4);
      padding: 40px 20px;
      text-align: center;
      color: #fff;
      border-radius: 20px;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      perspective: 1000px;
    }

    /* Different gradient colors */
    .counter-item:nth-child(1) {
      background: linear-gradient(135deg, #ff512f, #dd2476);
    }
    .counter-item:nth-child(2) {
      background: linear-gradient(135deg, #24c6dc, #514a9d);
    }
    .counter-item:nth-child(3) {
      background: linear-gradient(135deg, #43e97b, #38f9d7);
    }
    .counter-item:nth-child(4) {
      background: linear-gradient(135deg, #f7971e, #ffd200);
    }

    /* Hover 3D effect */
    .counter-item:hover {
      transform: rotateY(10deg) rotateX(10deg) scale(1.05);
      box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    }

    /* Icons */
    .counter-icon {
      font-size: 50px;
      margin-bottom: 15px;
      display: block;
    }

    /* Number styling */
    .counter-item .odometer {
      font-size: 48px;
      font-weight: 800;
      display: inline-block;
    }

    /* Label styling */
    .counter-label {
      font-size: 20px;
      margin-top: 10px;
      font-weight: 600;
    }

    /* Plus sign */
    .odoplus {
      position: relative;
    }

    .odoplus::after {
      content: "+";
      position: absolute;
      top: 0;
      right: -20px;
      font-size: 22px;
      font-weight: bold;
    }







    /* about page  */
     /* ---------- Hero Section ---------- */
    .about-hero {
      position: relative;
      background: linear-gradient(135deg, #ff9a9e, #fad0c4);
      color: #fff;
      text-align: center;
      padding: 6rem 2rem;
      border-radius: 2rem;
      margin-bottom: 4rem;
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
      overflow: hidden;
    }
    .about-hero img {
      position: absolute;
      right: -50px;
      bottom: 0;
      width: 400px;
      max-width: 100%;
      border-radius: 1rem;
      transform: rotate(-5deg);
      animation: floatImg 6s ease-in-out infinite;
    }
    .about-hero h1 { font-weight: 800; font-size: 3rem; margin-bottom: 1rem; }
    .about-hero p { font-size: 1.2rem; max-width: 700px; margin: auto; }

    @keyframes floatImg {0%,100%{transform:translateY(0) rotate(-5deg);}50%{transform:translateY(-15px) rotate(-5deg);} }

    /* ---------- Section Titles ---------- */
    .section-title {
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 700;
      font-size: 2rem;
      color: #1e3a8a;
    }

    /* ---------- Card Styles ---------- */
    .about-card {
      background: linear-gradient(135deg, #fff7f0, #e0f7ff);
      border-radius: 1.5rem;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      padding: 2rem;
      height: 100%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .about-card img {
      width: 100px;
      margin-bottom: 1rem;
      transition: transform 0.5s ease;
    }
    .about-card:hover { transform: rotateY(8deg) rotateX(8deg) scale(1.05); box-shadow:0 25px 45px rgba(0,0,0,0.3);}
    .about-card:hover img { transform: scale(1.3) rotate(-5deg); }
    .about-card h5 { font-weight:700; margin-bottom:1rem; color:#0c0c0c;}
    .about-card p { color:#333; line-height:1.6; }

    /* ---------- Story Section ---------- */
    .story-section .story-item {
      background: #fff;
      border-radius: 2rem;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      display:flex;
      gap:2rem;
      align-items:center;
      overflow:hidden;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    .story-section .story-item img {
      width:200px;
      border-radius:1rem;
      transition: transform 0.5s ease;
    }
    .story-section .story-item:hover img { transform: scale(1.1) rotate(-2deg);}
    .story-section .story-item:hover { transform: translateY(-10px); box-shadow:0 25px 45px rgba(0,0,0,0.2); }

    /* ---------- Stats Section ---------- */
  
    /* ---------- Team Section ---------- */
    .team-member {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      text-align: center;
      position: relative;
    }
    .team-member:hover { transform: translateY(-10px) scale(1.05); box-shadow:0 25px 45px rgba(0,0,0,0.25);}
    .team-member img { width:100%; height:300px; object-fit:cover; transition: transform 0.5s ease;}
    .team-member:hover img { transform: scale(1.1);}
    .team-member h6 { margin:1rem 0 0.5rem; font-weight:700; color:#1e3a8a;}
    .team-member p { margin-bottom:1rem; color:#555; }

    /* ---------- CTA Section ---------- */
    .cta-section {
      background: linear-gradient(135deg,#f4bc4f,#c119d1);
      color:#fff;
      padding:4rem 2rem;
      border-radius:2rem;
      text-align:center;
      margin-bottom:5rem;
      transform-style: preserve-3d;
      animation: floatCTA 6s ease-in-out infinite;
    }
    .cta-section h2 { font-size:2.5rem; font-weight:800; margin-bottom:1rem; }
    .cta-section a { background:#fff; color:#c119d1; padding:0.8rem 2rem; border-radius:50px; font-weight:700; text-decoration:none; transition:all 0.4s; }
    .cta-section a:hover { background:#f4bc4f; color:#fff; transform:scale(1.1); }
    @keyframes floatCTA {0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}





    /* product page  */

      /* ---------- Banner ---------- */
    .shop-banner {
      background: linear-gradient(135deg, #ff9a9e, #fad0c4);
      border-radius: 1.5rem;
      padding: 4rem 2rem;
      text-align: center;
      margin-bottom: 3rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      animation: floatBanner 6s ease-in-out infinite;
    }

    .shop-banner h2 {
      font-weight: 800;
      color: #fff;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    @keyframes floatBanner {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    /* ---------- Filter Buttons ---------- */
    /* ---------- Filter Buttons ---------- */
    .filter-btns .btn {
      border-radius: 30px;
      margin: 5px;
      padding: 0.6rem 1.5rem;
      background: linear-gradient(135deg, #6a11cb, #2575fc);
      color: #fff;
      border: none;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .filter-btns .btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.3);
      transition: left 0.4s;
    }
    .filter-btns .btn:hover::after { left: 100%; }
    .filter-btns .btn:hover,
    .filter-btns .btn.active {
      background: linear-gradient(135deg, #ff6a00, #ee0979);
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    /* ---------- Product Card ---------- */
    .shop-card {
      border-radius: 1rem;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border: 2px dashed #ddd;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .shop-card:hover {
      transform: rotateY(8deg) rotateX(8deg) scale(1.03);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
      border-color: #ff6a00;
      animation: glowBorder 1.5s infinite alternate;
    }
    @keyframes glowBorder {
      from { box-shadow: 0 0 10px #ff6a00; }
      to { box-shadow: 0 0 25px #ee0979; }
    }
    .shop-card img {
      height: 250px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .shop-card:hover img { transform: scale(1.1) rotate(-2deg); }

    /* ---------- Rating Stars ---------- */
    .rating i {
      color: gold;
      text-shadow: 0 0 8px rgba(255,215,0,0.9);
      animation: starGlow 1.8s infinite alternate;
    }
    @keyframes starGlow { from {transform: scale(1);} to {transform: scale(1.2);} }

    /* ---------- Buttons ---------- */
    .shop-card .btn {
      border-radius: 30px;
      padding: 0.4rem 1.2rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .shop-card .btn::after {
      content: "";
      position: absolute;
      width: 0;
      height: 100%;
      top: 0;
      left: 0;
      background: rgba(255,255,255,0.3);
      transition: width 0.4s;
    }
    .shop-card .btn:hover::after { width: 100%; }

    /* ---------- Uniform Card Height ---------- */
    .product-item { display: flex; }
    .shop-card.h-100 { flex: 1; display: flex; flex-direction: column; width: 100%; }
    .card-body { flex: 1; display: flex; flex-direction: column; }
    .mt-auto { margin-top: auto; }

    /* Optional: Smooth fade animation */
    .product-item { transition: all 0.5s ease; }
    /* ---------- Why Choose Us ---------- */
.choose-section {
    background: linear-gradient(135deg, #fceabb, #f8b500);
    color: #0c0c0c;
    font-family: 'Poppins', sans-serif;
}

.choose-title {
    font-size: 2.5rem;
    position: relative;
}

.choose-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #0c0c0c;
    margin: 10px auto 0;
    border-radius: 2px;
}

.choose-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #0c0c0c;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 236, 179, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.choose-card:hover::before {
    top: -20%;
    left: -20%;
    width: 240%;
    height: 240%;
}

.choose-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: #ff4b2b; 
    color: #fff; 
}

.choose-icon {
    font-size: 3rem;
    color: #f8b500;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.choose-card:hover .choose-icon {
    transform: translateY(-10px) scale(1.2);
    color: #fff; 
}

.choose-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.choose-card:hover .choose-heading {
    color: #fff;
    transform: translateY(-5px);
}

.choose-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    transition: color 0.4s ease, transform 0.4s ease;
    text-align: center;
}

.choose-card:hover .choose-text {
    color: #fff;
    transform: translateY(-5px);
}

/* Ensure all cards same height */
.choose-row > .col-md-4 {
    display: flex;
}

.choose-row > .col-md-4 .choose-card {
    flex: 1;
}

/* Floating animation */
@keyframes floatUpDownUnique {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-card {
    animation: floatUpDownUnique 3s ease-in-out infinite;
}

.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

    /* ---------- Newsletter ---------- */
    .newsletter {
      background: linear-gradient(135deg, #43e97b, #38f9d7);
      color: #fff;
      padding: 3rem;
      border-radius: 1rem;
      text-align: center;
      margin-top: 4rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .newsletter input {
      border-radius: 30px;
      border: none;
      padding: 0.7rem 1rem;
      margin-right: 0.5rem;
    }

    .newsletter .btn {
      border-radius: 30px;
      padding: 0.7rem 1.5rem;
    }




    /* blog  */

    
    .wrap {
      max-width: 1200px;
      margin: 28px auto;
      padding: 0 20px;
    }

    header.site-hero {
      background: linear-gradient(135deg, rgba(46,125,50,0.95), rgba(76,175,80,0.9));
      color: white;
      padding: 48px 20px;
      border-radius: 22px;
      box-shadow: 0 12px 40px rgba(46,125,50,0.12);
      display: flex;
      gap: 24px;
      align-items: center;
      margin-bottom: 28px;
      position: relative;
      overflow: hidden;
    }
    header.site-hero h1{font-size:30px;margin:0 0 8px 0;font-weight:800;letter-spacing:-0.3px}
    header.site-hero p{margin:0;color:rgba(255,255,255,0.92);font-weight:500}
    .badge.header-line{display:inline-block;padding:8px 12px;background:rgba(255,255,255,0.12);border-radius:999px;font-weight:700;font-size:13px}
    .hero-art{margin-left:auto;width:220px;height:140px;border-radius:12px;overflow:hidden;flex-shrink:0;transform:rotate(-6deg) translateY(-6px);box-shadow: 0 10px 30px rgba(0,0,0,0.12);}
    .hero-art img{width:100%;height:100%;object-fit:cover;display:block;filter:contrast(1.02) saturate(1.05)}

    /* Layout: main posts + sidebar */
    .main-grid {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 32px;
      align-items: start;
    }

    /* Posts pagination section styling */
    .page-content {display:block;}
    .posts {display:grid;gap:20px;}
    .post-card {
      background: var(--card);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 8px 30px var(--shadow);
      transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.45s;
      display: flex;
      gap: 18px;
      padding: 18px;
      align-items: flex-start;
      margin-bottom: 10px;
    }
    .post-card:hover{transform: translateY(-8px) scale(1.01);box-shadow:0 20px 40px rgba(12,18,28,0.08);}
    .post-media {width:220px;flex-shrink:0;border-radius:12px;overflow:hidden;box-shadow:0 8px 20px rgba(0,0,0,0.06);}
    .post-media img{width:100%;height:140px;object-fit:cover;display:block;transition:transform .7s;}
    .post-card:hover .post-media img{transform:scale(1.12) rotate(-1deg);}
    .post-body{flex:1;display:flex;flex-direction:column;gap:8px;}
    .post-meta{font-size:13px;color:var(--muted);display:flex;gap:10px;align-items:center}
    .post-title{font-size:20px;margin:0;color:#0b3b14;font-weight:700}
    .post-excerpt{margin:0;color:#374151}
    .post-cta{margin-top:auto;display:flex;justify-content:flex-start;gap:12px;align-items:center}
    .btn-read{background:linear-gradient(90deg,var(--accent-2),#f49b2f);color:#071028;padding:10px 14px;border-radius:999px;font-weight:700;text-decoration:none;box-shadow:0 8px 24px rgba(244,188,79,0.12)}
    .post-tags{display:flex;gap:8px;flex-wrap:wrap}
    .post-tag{font-size:12px;padding:6px 10px;border-radius:999px;background:#f3f4f6;color:#374151}

    /* Sidebar */
    aside.sidebar{position:sticky;top:28px;}
    .card{background:#fff;border-radius:14px;padding:16px;box-shadow:0 10px 30px rgba(12,18,28,0.06);margin-bottom:18px;}
    .search-field{display:flex;gap:10px;align-items:center;}
    .search-field input{flex:1;padding:10px 12px;border-radius:10px;border:1px solid #eef2f7;font-size:14px;}
    .search-field button{padding:10px 12px;border-radius:10px;border:none;background:var(--accent-1);color:#fff;font-weight:700;cursor:pointer;}
    .category-list{display:flex;flex-wrap:wrap;gap:8px;}
    .category-list button{padding:8px 12px;border-radius:999px;border:1px solid #eef2f7;background:transparent;cursor:pointer;}
    .recent-item{display:flex;gap:12px;align-items:center;margin-bottom:12px;}
    .recent-thumb{width:64px;height:48px;border-radius:10px;overflow:hidden;flex-shrink:0;}
    .recent-thumb img{width:100%;height:100%;object-fit:cover;}
    .newsletter input{width:100%;padding:10px;border-radius:10px;border:1px solid #eef2f7;margin-bottom:10px;}
    .newsletter button{background:var(--accent-1);color:#fff;padding:10px 12px;border-radius:10px;border:none;width:100%;font-weight:700;}
    .pagination{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:10px;}
    .page-btn{padding:8px 12px;border-radius:10px;border:1px solid #eef2f7;background:white;cursor:pointer;}
    .page-btn.active{background:var(--accent-1);color:#fff;border-color:var(--accent-1);}
    footer.site-foot{text-align:center;color:var(--muted);margin:40px 0 80px;font-size:14px;}
    @media (max-width: 980px){
      .main-grid{grid-template-columns:1fr 320px;}
      .post-media{width:180px;}
    }
    @media (max-width: 820px){
      .site-hero{flex-direction:column;align-items:flex-start;}
      .hero-art{width:100%;height:140px;margin-left:0;transform:none;}
      .main-grid{grid-template-columns:1fr;}
      aside.sidebar{position:static;top:auto;}
      .post-card{flex-direction:column;}
      .post-media{width:100%;height:auto;}
      .post-media img{height:220px;}
    }
    .muted{color:var(--muted);}
    a.text-link{color:var(--accent-1);text-decoration:none;font-weight:700;}

    
    .social-section {
      background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fad390, #f6d365, #a1c4fd, #c2e9fb);
      background-size: 400% 400%;
      animation: gradientBG 12s ease infinite;
      border-radius: 25px;
      padding: 60px 25px;
      margin: 60px auto;
      max-width: 1250px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      overflow: hidden;
      position: relative;
    }

    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .social-section::before,
    .social-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      opacity: 0.2;
    }
    .social-section::before {
      width: 150px;
      height: 150px;
      background: #fff;
      top: -40px;
      right: -40px;
    }
    .social-section::after {
      width: 200px;
      height: 200px;
      background: #fff;
      bottom: -60px;
      left: -60px;
    }

    .insta-logo {
      filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.4));
    }

    .follow-btn {
      background: #e1306c;
      color: #fff;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(225,48,108,0.5);
      transition: 0.3s;
      text-decoration: none;
      letter-spacing: 1px;
    }

    .follow-btn:hover {
      background: #fff;
      color: #e1306c;
      box-shadow: 0 6px 18px rgba(225,48,108,0.7);
    }

    .media-box img,
    .media-box video {
      transition: transform 0.4s ease;
      border-radius: 20px;
      object-fit: cover;
      width: 100%;
    }

    .media-box img {
      max-height: 200px; /* images smaller */
    }

    .media-box video {
      max-height: 400px; /* bigger video height */
    }

    .media-box img:hover,
    .media-box video:hover {
      transform: scale(1.05);
    }

    .article-box {
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border-left: 6px solid #e1306c;
      border-radius: 18px;
      color: #333;
      line-height: 1.7;
    }

    .article-box h3 {
      font-size: 1.8rem;
      background: linear-gradient(90deg, #e1306c, #f77737, #f6d365);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .article-box p {
      font-size: 1rem;
      margin-bottom: 12px;
    }

    .article-box ul {
      padding-left: 18px;
    }

    .article-box ul li {
      margin-bottom: 6px;
    }