 * {

      margin: 0;
      padding: 0;
      box-sizing: border-box;

    }

    body {

      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      background: #f5f6f7;
  /* padding-top: 70px; */
    }

    /* =========================
       NAVBAR
    ========================== */

    .navbar {

      padding: 10px 0;
      position: absolute;
       top: 35px !important;
      left: 0;
      width: 100%;
      z-index: 999;
      background: #6d971b;

    }

    .nav-link {

      color: white !important;
      margin-left: 18px;
      font-weight: 500;
      transition: 0.3s;

    }

    .nav-link:hover {

      color: #1d4024 !important;

    }

    .navbar-toggler {

      border: none;
      background: white;
      padding: 5px 10px;

    }

    /* =========================
       HERO SECTION
    ========================== */

    .banner {

      padding-top: 100px;
      height: 100vh;

      background:
        linear-gradient(rgba(0, 0, 0, 0.45),
          rgba(0, 0, 0, 0.45)),
        url('./assets/banner/banner.jpg') center/cover no-repeat;

      position: relative;

      display: flex;
      align-items: center;
      justify-content: center;

      text-align: center;
      overflow: hidden;

      padding-left: 20px;
      padding-right: 20px;

    }

    .banner-content {

      max-width: 850px;
      color: white;
      position: relative;
      z-index: 2;

    }

    .banner h1 {

      font-size: 62px;
      font-weight: 700;
      line-height: 1.3;

    }

    .banner h1 span {

      color: #acc957;

    }

    .banner p {

      font-size: 18px;
      margin-top: 22px;
      margin-bottom: 35px;
      color: #f1f1f1;

    }

    /* =========================
       BUTTON
    ========================== */

    .btn-main {

      display: inline-block;
      background: #c08c41;
      color: white;
      padding: 14px 38px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
      box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2);

    }

    .btn-main:hover {

      background: #1d4024;
      transform: translateY(-3px);
      color: white;

    }

    /* =========================
       FLOATING LEAVES
    ========================== */

    .leaf {

      position: absolute;
      width: 120px;
      z-index: 1;

      opacity: 0.9;
      pointer-events: none;

      animation:
        leafFloat 5s ease-in-out infinite;

      mix-blend-mode: multiply;

      filter:
        drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));

    }

    .leaf1 {

      top: 80px;
      left: 70px;
      transform: rotate(-20deg);

    }

    .leaf2 {

      top: 120px;
      right: 80px;
      width: 140px;
      transform: rotate(20deg);
      animation-delay: 1s;

    }

    .leaf3 {

      bottom: 260px;
      left: 100px;
      width: 100px;
      transform: rotate(30deg);
      animation-delay: 2s;

    }

    .leaf4 {

      bottom: 240px;
      right: 120px;
      width: 90px;
      transform: rotate(-30deg);
      animation-delay: 3s;

    }

    @keyframes leafFloat {

      0% {

        transform:
          translateY(0px) rotate(0deg);

      }

      50% {

        transform:
          translateY(-12px) rotate(5deg);

      }

      100% {

        transform:
          translateY(0px) rotate(0deg);

      }

    }

    /* =========================
       FALLING LEAF
    ========================== */

    .falling-leaf {

      position: absolute;
      top: 0;
      right: 2%;
      width: 90px;

      z-index: 9999;
      pointer-events: none;

      mix-blend-mode: multiply;

      filter:
        drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));

    }
    /*home page carousle */
    .carousel-item{
    position: relative;
}

.carousel-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* .carousel-item img{
    display: block;
} */

.carousel-item{
    height: 90vh;
    min-height: 500px;
}

.carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption{
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h4{
    font-size: 3rem;
    font-weight: 700;
}
@media (max-width: 992px){

    .carousel-item{
        height: 70vh;
        min-height: 450px;
    }

    .carousel-caption h4{
        font-size: 2rem;
    }
}

@media (max-width: 768px){

    .carousel-item{
        height: 60vh;
        min-height: 350px;
    }

    .carousel-caption{
        display: block !important;
        bottom: 50%;
        transform: translateY(50%);
        padding: 0 20px;
    }

    .carousel-caption h4{
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .carousel-caption .btn-main{
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px){

    .carousel-item{
        height: 50vh;
        min-height: 300px;
    }

    .carousel-caption h4{
        font-size: 1.2rem;
    }
}

    /* =========================
       PATCH SLIDER
    ========================== */

    .patch-wrapper {

    position: relative;
    width: 72%;
    height: 230px;
    margin: -110px auto -105px;
    background: #355c3b;
    border-radius: 31px;
    overflow: hidden;
    z-index: 5;
    display: flex;
    align-items: center;

    }

    .continuous-slider {

      display: flex;
      align-items: center;
      gap: 30px;

      width: max-content;

      animation:
        scrollSlider 18s linear infinite;

      padding-left: 30px;

    }

    /* SLIDE IMAGE WRAPPER */

    .slide-image {
      flex-shrink: 0;
      background: transparent !important;
      padding: 0 !important;
      box-shadow: none !important;
    }

    /* IMAGE */

    .slide-image img {
      background: transparent !important;
      mix-blend-mode: multiply;
      filter: contrast(1.05);
    }

    /* HOVER */

    .slide-image img:hover {
      transform: scale(1.08);
    }

    @keyframes scrollSlider {

      from {

        transform: translateX(0);

      }

      to {

        transform: translateX(-50%);

      }

    }

    .patch-wrapper:hover .continuous-slider {

      animation-play-state: paused;

    }

    .slide-image {

      flex-shrink: 0;

    }

    .slide-image img {

      width: 220px;
      height: 220px;

      object-fit: cover;

      border-radius: 30px;

      /* box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25); */

      transition: 0.4s ease;

    }

    .slide-image img:hover {

      transform: scale(1.08);

    }

    /* =========================
       CATEGORY SECTION
    ========================== */

    .category-section {

      padding: 13% 40px 52px;
      background: #f5f3ee;
      text-align: center;
    }

    @media(max-width:768px) {
      .section-title {
        padding-top: 100px;
      }

      /* .section-subtitle{
     padding-top:10px;
  } */
    }

    .section-title {

      font-size: 48px;
      font-weight: 700;
      color: #1d4024;
      margin-bottom: 18px;

    }

    .section-subtitle {

      /* max-width: 650px; */

      margin: auto;

      color: #777;

      font-size: 18px;
      line-height: 1.8;

      margin-bottom: 70px;

    }

    .category-row {

      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 38px;

    }

    .category-item {

      width: 180px;
      transition: 0.4s;
      display: flex;
      flex-direction: column;
      align-items: center;

    }

    .category-item:hover {

      transform: translateY(-8px);

    }

    .category-img {

      width: 180px;
      height: 180px;

      border-radius: 50%;
      overflow: hidden;

      margin: auto;

      box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.1);

      margin-bottom: 18px;

      background: #fff;

    }

    .category-img img {

      width: 100%;
      height: 100%;

      object-fit: cover;
      transition: 0.4s;

    }

    .category-item:hover img {

      transform: scale(1.08);

    }

    .category-item p {

      font-size: 15px;
      color: #555;
      font-weight: 500;
      line-height: 1.6;
      text-align: center;

    }

    /* =========================
       OFFER SECTION
    ========================== */

    .offer-section {

      padding: 90px 0;
      background: #fff;

    }

    .offer-card {

      border-radius: 104px;

      padding: 35px;

      position: relative;
      overflow: hidden;

      min-height: 220px;

      box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);

      transition: 0.3s;

    }

    .offer-card:hover {

      transform: translateY(-8px);

    }

    .light-green {

      background: #4B5320;
      color: white;

    }

    .dark-green {

      background: #2f5b25;
      color: white;

    }

    .light-gray {

      background: #7E8C54;
      color: white;

    }

    .offer-text {

      font-size: 16px;
      font-weight: 600;
      line-height: 1.8;

      max-width: 220px;

    }

    .offer-img {

      position: absolute;

      right: 20px;
      bottom: 15px;

      width: 130px;

    }

    /* card section */
    .tea-section {
      padding: 100px 0;
      background: #f5f5f3;
      position: relative;
      overflow: hidden;
    }

    /* LEFT LEAF */

    .left-leaf {
      position: absolute;
      /*left: -30px;*/
      top: 140px;
      width: 230px;
      z-index: 0;
      opacity: 0.95;
    }

    /* RIGHT OUTLINE LEAF */

    /*.right-leaf {*/
    /*  position: absolute;*/
    /*  right: -20px;*/
    /*  top: 66%;*/
    /*  width: 260px;*/
    /*  opacity: 0.08;*/
    /*  z-index: 0;*/
    /*}*/

    /* HEADING */

    .sub-title {
      color: #d28b6c;
      font-size: 22px;
      font-weight: 500;
    }

    .main-title {
      font-size: 52px;
      font-weight: 700;
      color: #111;
      margin-top: 10px;
    }

    /* CARD */
    /* OUTSIDE CONTENT WRAPPER */
    .tea-info {
      padding: 15px 5px 0;
    }

    /* keep spacing clean */
    .tea-info .tea-title {
      margin-top: 12px;
    }

    /* optional: align nicely */
    .tea-info .price-rating {
      margin-top: 10px;
      margin-bottom: 12px;
    }

    /* button full width under text */
    .tea-info .cart-btn {
      width: 63%;
    }

    /* SECTION */
    .tea-section {
      padding: 45px 0;
      background: #f5f5f5;
      position: relative;
      z-index: 1;
    }

    /* LEFT LEAF */
    .left-leaf {
      position: absolute;
      /* left: 0; */
      top:9px;
      width: 260px;
      z-index: -1;
      opacity: 0.15;
      animation: leftLeafMove 5s ease-in-out infinite;
    }

    /* RIGHT LEAF */
    .right-leaf {
       position: absolute;
  right: -10px;
  top: 77%;
  width: 179px;
  opacity: 0.15;
  z-index: -1;
  animation: rightLeafMove 6s ease-in-out infinite;
    }
/* Laptop */
@media (max-width: 1366px) {
  .right-leaf {
    width: 160px;
    right: -5px;
    top: 72%;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .right-leaf {
    width: 120px;
    right: 0;
    top: 75%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .right-leaf {
    display: none;
  }
}
    /* HEADING */
    .sub-title {
      color: #cf8666;
      font-size: 22px;
      font-weight: 500;
    }

    .main-title {
      font-size: 55px;
      font-weight: 700;
      color: #111;
      margin-top: 10px;
    }

    /* CARD */
    .tea-card {
      text-align: center;
    }

    /* EGG / OVAL IMAGE BOX */
    .egg-img-box img {
      width: 70%;
      height: 70%;
      object-fit: contain;

      border-radius: 53px;
    }

    /* IMAGE STYLE */
    .egg-img-box img {
      width: 100%;
      height: 70%;
      object-fit: contain;
      transition: 0.4s ease;
    }

    /* HOVER EFFECT */
    .tea-card:hover .egg-img-box img {
      transform: scale(1.08);
    }

    /* TEXT SECTION */
    .tea-info {
      padding-top: 15px;
    }

    .tea-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* PRICE */
    .price-rating {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 18px;
    }

    .price-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .old-price {
      color: #a7a7a7;
       text-decoration: line-through; 
      font-size: 18px;
      font-weight: 600;
    }

    .new-price {
      font-size: 24px;
      font-weight: 700;
      color: #b07a19;
    }

    .rating {
      color: #777;
      font-size: 18px;
    }

    .rating i {
      color: #f4c542;
    }

    .cart-btn {
      width: 100%;
      height: 40px;
      border-radius: 40px;
      border: 1.5px solid #999;
      background: transparent;

      font-size: 16px;
      font-weight: 500;
      color: #777;

      position: relative;
      overflow: hidden;
      cursor: pointer;

      transition: 0.3s ease;
      isolation: isolate;
      /* 🔥 IMPORTANT FIX */
    }

    /* CURTAIN LAYER */
    .cart-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #329f25;

      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.5s ease;

      z-index: -1;
      /* 🔥 keeps it behind text */
    }

    /* OPEN FROM CENTER */
    .cart-btn:hover::before {
      transform: scaleX(1);
    }

    /* TEXT STAYS VISIBLE */
    .cart-btn:hover {
      color: #fff;
      border-color: #329f25;
    }

    .wellness-section {
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .image-wrapper {
      position: relative;
    }

    .main-img {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .main-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .small-img {
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 220px;
      border-radius: 12px;
      overflow: hidden;
      border: 8px solid #f5f5f5;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .small-img img {
      width: 100%;
      display: block;
    }

    .experience-box {
      position: absolute;
      bottom: -60px;
      left: 20px;
      background: #f5f5f5;
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .experience-box h2 {
      color: #c08c41;
      font-size: 52px;
      margin: 0;
      font-weight: 700;
    }

    .section-subtitle {
      color: #c08c41;
      font-weight: 500;
      margin-bottom: -10px;
    }

    .section-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 25px;
      /* color: #111; */
    }

    .section-text {
      color: #777;
      line-height: 1.9;
      margin-bottom: 35px;
      font-size: 16px;
      text-align: justify;
    }

    .custom-btn {
      background: #c08c41;
      color: #fff;
      border: none;
      padding: 14px 35px;
      border-radius: 40px;
      font-weight: 500;
      transition: 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .custom-btn:hover {
      background: #1d4024;
      color: #fff;
    }

    /* Decorative dots */
    .dots {
      position: absolute;
      width: 100px;
      height: 100px;
      background-image: radial-gradient(#d59b81 2px, transparent 2px);
      background-size: 12px 12px;
      z-index: -1;
    }

    .dots.one {
      left: -20px;
      bottom: 20px;
    }

    .dots.two {
      right: 120px;
      top: 20px;
    }

    /* RESPONSIVE */
    @media(max-width:768px) {

      .main-title {
        font-size: 38px;
      }

      .left-leaf {
        width: 140px;
      }

      .right-leaf {
        width: 160px;
      }

    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:991px) {

      .banner h1 {

        font-size: 42px;

      }

      .patch-wrapper {

        width: 95%;
        height: 220px;
        border-radius: 100px;

      }

      .slide-image img {

        width: 180px;
        height: 180px;

      }

      .category-section {

        padding-top: 150px;

      }

      .tea-image-box {
        height: 220px;
      }

      .tea-image-box img {
        width: 180px;
        height: 180px;
      }

      .new-price {
        font-size: 30px;
      }

      .wellness-section {
        padding: 60px 0 120px;
      }

      .small-img {
        width: 180px;
        right: 0;
      }

      .section-title {
        font-size: 36px;
        margin-top: -60px;
      }
    }

    @media(max-width:576px) {

      .banner {

        height: 90vh;

      }

      .banner h1 {

        font-size: 30px;

      }

      .banner p {

        font-size: 15px;

      }

      .btn-main {

        padding: 12px 28px;

      }

      .patch-wrapper {

        height: 180px;
        border-radius: 90px;

      }

      .slide-image img {

        width: 120px;
        height: 120px;

      }

      .continuous-slider {

        gap: 18px;

      }

      .section-title {

        font-size: 32px;

      }

      .section-subtitle {

        font-size: 15px;

      }

      .category-img {

        width: 95px;
        height: 95px;

      }

      .category-item {

        width: 95px;

      }

      .offer-card {

        border-radius: 30px;

      }

      .leaf {

        width: 70px;

      }

      .leaf2 {

        width: 90px;

      }

      .falling-leaf {

        width: 60px;

      }

      .small-img {
        width: 140px;
        bottom: -20px;
      }

      .experience-box {
        bottom: -80px;
        left: 0;
        padding: 8px 15px;
      }

      .experience-box h2 {
        font-size: 40px;
      }

      .section-title {
        font-size: 30px;
      }
    }

    .beauty-section {
      padding: 80px 0;
      background: #fff;
    }

    .image-grid {
      position: relative;
      max-width: 500px;
      margin: auto;
    }

    .shape-border {
      position: absolute;
      width: 120px;
      height: 120px;
      border: 8px solid #1f5b3d;
      border-right: none;
      border-bottom: none;
      border-radius: 40px 0 0 0;
      top: -15px;
      left: -15px;
      z-index: 1;
    }

    .grid-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      position: relative;
      z-index: 2;
    }

    .grid-wrapper img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-radius: 28px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .badge-circle {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 90px;
      height: 90px;
      background: #1f5b3d;
      border: 6px solid #d6a34d;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      z-index: 5;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .content-box {
      padding-left: 30px;
    }

    .subtitle {
      color: #666;
      font-size: 14px;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .main-title {
      font-size: 48px;
      line-height: 1.2;
      font-weight: 700;
      color: #222;
      margin-bottom: 20px;
    }

    .main-title span {
      color: #d6a34d;
    }

    .description {
      color: #777;
      line-height: 1.8;
      margin-bottom: 30px;
      max-width: 500px;
    }

    .stats-box {
      background: #1f5b3d;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      color: #fff;
      max-width: 500px;
    }

    .play-btn {
      width: 90px;
      height: 90px;
      background: #d6a34d;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
      flex-shrink: 0;
    }

    .stat {
      flex: 1;
      text-align: center;
      padding: 18px 10px;
    }

    .stat h3 {
      font-size: 28px;
      margin-bottom: 5px;
      font-weight: 700;
    }

    .stat p {
      margin: 0;
      font-size: 13px;
      opacity: 0.8;
    }

    .signature {
      margin-top: 25px;
      font-family: cursive;
      font-size: 28px;
      color: #444;
    }

    @media (max-width:991px) {
      .content-box {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
      }

      .description {
        margin: auto auto 30px;
      }

      .stats-box {
        margin: auto;
      }

      .main-title {
        font-size: 38px;
      }
    }

    @media (max-width:576px) {
      .grid-wrapper img {
        height: 150px;
      }

      .main-title {
        font-size: 30px;
      }

      .play-btn {
        width: 70px;
        height: 70px;
        font-size: 22px;
      }

      .stat h3 {
        font-size: 22px;
      }
    }

    .cta-section {
      padding: 120px 20px;

      background:
        linear-gradient(rgb(66 87 28), rgb(80 95 53 / 46%)),
        url('assets/banner-bgleaf.png') center/cover no-repeat;

      position: relative;
      overflow: hidden;
    }

    /* CONTENT */

    .cta-content {
      max-width: 850px;
      margin: auto;
      color: #fff;
    }

    .cta-content h2 {
      font-size: 58px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 25px;
      color: #fff;
    }

    .cta-content p {
      font-size: 18px;
      line-height: 1.9;
      color: #f1f1f1;
      margin-bottom: 40px;
    }

    /* BUTTON */

    .cta-btn {
      display: inline-block;
      padding: 15px 42px;
      background: #c08c41;
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 17px;
      transition: .4s ease;
    }

    .cta-btn:hover {
      background: #a8752f;
      color: #fff;
      transform: translateY(-4px);
    }

    /* RESPONSIVE */

    @media(max-width:991px) {

      .cta-content h2 {
        font-size: 42px;
      }

    }

    @media(max-width:576px) {

      .cta-section {
        padding: 90px 15px;
      }

      .cta-content h2 {
        font-size: 30px;
      }

      .cta-content p {
        font-size: 15px;
      }

      .cta-btn {
        padding: 13px 30px;
        font-size: 15px;
      }

    }

    .achievement-section {
      padding: 45px 0;

      /* BACKGROUND IMAGE + OVERLAY */

      background:


        url('assets/banner/benfit-banner.jpg') center/cover no-repeat;

      position: relative;
      overflow: hidden;
    }

    /* BACKGROUND PATTERN */

    .achievement-section::before {
      content: "";
      position: absolute;
      inset: 0;



      background-size: 40px 40px;
      opacity: .5;
    }

    /* LEFT CONTENT */

    .achievement-left {
      position: relative;
      z-index: 2;
    }

    .small-title {
      color: #c08c41;
      font-size: 20px;
      font-weight: 500;
      display: block;
      margin-bottom: -35px;
      margin-left: 49px;
    }

    .achievement-left h2 {
      font-size: 20px;
      font-weight: 600;
      /* line-height:1.3; */
      color: #1d4024;
      
    }

    /* GRID */

    .achievement-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      position: relative;
      z-index: 2;
    }

    /* BOX */

    .achievement-box {
      background: #fff;
      border: 1px solid #f0ddd4;
      border-radius: 8px;
      padding: 24px 28px;

      display: flex;
      align-items: center;
      gap: 24px;

      transition: .4s ease;

      box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
    }

    .achievement-box:hover {
      transform: translateY(-6px);
    }

    /* ICON */

    .icon-box {
      width: 78px;
      height: 78px;
      background: #1d4024;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      color: #fff;
      flex-shrink: 0;
      /*box-shadow: 0 8px 18px rgba(208, 145, 120, .3);*/
    }

    /* TEXT */

    .achievement-text {
      padding-left: 24px;
      border-left: 1px solid #ececec;
    }

    .achievement-text h3 {
      font-size: 30px;
      font-weight: 700;
      color: #c08c41;
      margin-bottom: 4px;
    }

    .achievement-text p {
      margin: 0;
      color: #777;
      font-size: 16px;
    }

    /* RESPONSIVE */

    @media(max-width:991px) {

      .achievement-left {
        text-align: center;
        margin-bottom: 30px;
      }

      .achievement-left h2 {
        font-size: 42px;
      }

    }

    @media(max-width:768px) {

      .achievement-grid {
        grid-template-columns: 1fr;
      }

    }

    @media(max-width:576px) {

      .achievement-section {
        padding: 70px 15px;
      }

      .achievement-left h2 {
        font-size: 32px;
      }

      .small-title {
        font-size: 17px;
      }

      .achievement-box {
        padding: 20px;
        gap: 18px;
      }

      .icon-box {
        width: 65px;
        height: 65px;
        font-size: 28px;
      }

      .achievement-text {
        padding-left: 18px;
      }

      .achievement-text h3 {
        font-size: 32px;
      }

      .achievement-text p {
        font-size: 16px;
      }

    }

    /* LEFT LEAF ANIMATION */

    @keyframes leftLeafMove {

      0% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-15px) rotate(5deg);
      }

      100% {
        transform: translateY(0) rotate(0deg);
      }

    }

    /* RIGHT LEAF ANIMATION */

    @keyframes rightLeafMove {

      0% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(15px) rotate(-6deg);
      }

      100% {
        transform: translateY(0) rotate(0deg);
      }

    }

    /* =========================
   BLOG SECTION
========================= */

    .blog-section {
      padding: 100px 0;
      background: #f7f5f0;
    }

    /* TITLE */

    .blog-main-title {
      font-size: 52px;
      font-weight: 700;
      color: #1d4024;
      margin-bottom: 15px;
    }

    .blog-subtitle {
      /* max-width:650px; */
      margin: auto;
      /* color:#777;   */
      font-size: 17px;
      line-height: 1.8;
    }

    /* CARD */

    .blog-card {
      position: relative;
      overflow: hidden;
      border-radius: 35px;
      /*height: 450px;*/
      cursor: pointer;

      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    /* IMAGE */

    .blog-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;

      transition: 0.6s ease;
    }

    /* OVERLAY */

    .blog-overlay {
      position: absolute;
      inset: 0;

      background:
        linear-gradient(to top,
          rgba(0, 0, 0, 0.85),
          rgba(0, 0, 0, 0.15));

      display: flex;
      align-items: flex-end;

      padding: 35px;

      opacity: 0;

      transition: 0.5s ease;
    }

    /* CONTENT */

    .blog-content {
      transform: translateY(60px);
      transition: 0.5s ease;
    }

    .blog-date {
      display: inline-block;
      color: #d8b15a;
      font-size: 14px;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .blog-content h3 {
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 15px;
    }

    .blog-content p {
      color: #eee;
      line-height: 1.8;
      font-size: 15px;
      margin-bottom: 25px;
    }

    /* BUTTON */

    .blog-btn {
      display: inline-block;
      padding: 12px 30px;
      background: #acc957;
      color: #fff;
      text-decoration: none;
      border-radius: 40px;
      font-weight: 600;

      transition: 0.4s ease;
    }

    .blog-btn:hover {
      background: #d28b6c;
      color: #fff;
    }

    /* HOVER EFFECT */

    .blog-card:hover img {
      transform: scale(1.12);
    }

    .blog-card:hover .blog-overlay {
      opacity: 1;
    }

    .blog-card:hover .blog-content {
      transform: translateY(0);
    }

    /* RESPONSIVE */

    @media(max-width:991px) {

      .blog-main-title {
        font-size: 40px;
      }

      .blog-card {
        height: 400px;
      }

    }

    @media(max-width:576px) {

      .blog-section {
        padding: 70px 15px;
      }

      .blog-main-title {
        font-size: 30px;
      }

      .blog-card {
        height: 350px;
        border-radius: 25px;
      }

      .blog-content h3 {
        font-size: 22px;
      }

    }

    .chat-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #123524;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 24px;
    }

    .chat-popup {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 350px;
      height: 500px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      display: none;
      flex-direction: column;
    }

    .chat-header {
      background: #123524;
      color: #fff;
      padding: 18px;
      font-weight: 600;
    }

    .chat-body {
      flex: 1;
      padding: 20px;
      overflow-y: auto;
    }

    .bot-message {
      background: #f1f1f1;
      padding: 12px 16px;
      border-radius: 12px;
      width: fit-content;
    }

    .chat-footer {
      display: flex;
      padding: 15px;
      gap: 10px;
      border-top: 1px solid #eee;
    }

    .chat-footer input {
      flex: 1;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 10px;
    }

    .chat-footer button {
      padding: 12px 18px;
      border: none;
      background: #123524;
      color: #fff;
      border-radius: 10px;
    }

    /* =========================
   FOOTER
========================= */

    .custom-footer {
      background: #1d4024;
      color: #fff;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    /* CONTAINER */

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* TOP */

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;

      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-heading h2 {
      font-size: 42px;
      line-height: 1.3;
      font-weight: 700;
    }

    /* NEWSLETTER */

    .newsletter-form {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 15px;
      max-width: 650px;
    }

    .newsletter-form input {
      flex: 1;
      height: 62px;
      border: none;
      border-radius: 50px;
      padding: 0 25px;
      outline: none;
      font-size: 16px;
    }

    .newsletter-form button {
      height: 62px;
      padding: 0 35px;
      border: none;
      border-radius: 50px;

      background: #d28b6c;
      color: #fff;

      font-weight: 600;
      cursor: pointer;

      transition: .4s ease;
    }

    .newsletter-form button:hover {
      background: #b87458;
    }

    /* MAIN */

    .footer-main {
      padding: 30px 0;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 40px;
    }

    /* LOGO */

    .footer-logo h3 {
      color: #acc957;
      font-size: 34px;
      margin-bottom: 20px;
    }

    /* TEXT */

    .footer-col p {
      color: #ddd;
      line-height: 1.9;
      margin-bottom: 25px;
    }

    /* TITLES */

    .footer-col h4 {
      font-size: 24px;
      margin-bottom: 25px;
      color: #fff;
    }

    /* LINKS */

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 15px;
    }

    .footer-col ul li a {
      color: #ddd;
      text-decoration: none;
      transition: .3s ease;
    }

    .footer-col ul li a:hover {
      color: #acc957;
      padding-left: 5px;
    }
.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.footer-links a:hover{
    color:#acc957;
}
    /* CONTACT */

    .contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #ddd;
    }

    .contact-info i {
      color: #fff;
      margin-top: 5px;
    }

    /* SOCIAL */

    .social-icons {
      display: flex;
      gap: 14px;
    }

    .social-icons a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);

      display: flex;
      align-items: center;
      justify-content: center;

      color: #fff;
      text-decoration: none;

      transition: .4s ease;
    }

    .social-icons a:hover {
      background: #acc957;
      transform: translateY(-5px);
    }

    /* BLOG */

    .blog-item {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
    }

    .blog-item img {
      width: 85px;
      height: 85px;
      object-fit: cover;
      border-radius: 15px;
    }

    .blog-item span {
      color: #acc957;
      font-size: 14px;
      font-weight: 500;
    }

    .blog-item p {
      margin-top: 8px;
      margin-bottom: 0;
      line-height: 1.6;
      font-size: 15px;
    }

    /* BOTTOM */

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      text-align: center;
      padding: 22px 15px;
    }

    .footer-bottom p {
      margin: 0;
      color: #ddd;
    }

    /* RESPONSIVE */

    @media(max-width:991px) {

      .footer-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
      }

      .footer-heading h2 {
        font-size: 34px;
      }

    }

    @media(max-width:576px) {

      .custom-footer {
        padding-top: 60px;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }

      .newsletter-form {
        flex-direction: column;
        width: 100%;
      }

      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
      }

      .footer-heading h2 {
        font-size: 28px;
      }

    }

    /* specialized section */

    .wellness-section-1 {
      background: #1d4024;
      padding: 30px 20px;
      color: #ffffff;
    }

    .wellness-title {
      text-align: center;
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      /* margin-bottom: 24px; */
    }

    .wellness-title span {
      color: #6dd38c;
    }

    .feature-box {
      text-align: center;
      position: relative;
      padding: 10px 25px;
      height: 100%;
    }

    .feature-box::after {
      content: "";
      position: absolute;
      top: 15px;
      right: 0;
      width: 1px;
      height: 70px;
      background: rgba(255, 255, 255, 0.25);
    }

    .feature-box.last::after {
      display: none;
    }

    .feature-icon {
      font-size: 52px;
      color: #d7f5df;
      margin-bottom: 18px;
      display: inline-block;
    }

    .feature-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0;
      line-height: 1.5;
    }

    @media(max-width:991px) {

      .wellness-title {
        font-size: 2.2rem;
      }

      .feature-box {
        margin-bottom: 40px;
      }

      .feature-box::after {
        display: none;
      }
    }

    @media(max-width:576px) {

      .wellness-title {
        font-size: 1.8rem;
      }

      .feature-title {
        font-size: 1rem;
      }

      .feature-icon {
        font-size: 42px;
      }
    }

    /* end  */

    @media (max-width: 768px) {

      .prd-title {
        font-size: 28px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        /* line-height: 1.1; */

      }
    }

    .certificate-section {
      background: linear-gradient(to right, #f8fbff, #eef4ff);
    }

    .certificate-title {
      font-weight: 700;
      color: #1e293b;
      position: relative;
      display: inline-block;
    }

    .certificate-title::after {
      content: '';
      width: 70%;
      height: 4px;
      background: #0d6efd;
      position: absolute;
      left: 15%;
      bottom: -10px;
      border-radius: 20px;
    }

    .certificate-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      transition: 0.4s ease;
      box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
      /* height:100%; */
    }

    .certificate-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .certificate-img {
      overflow: hidden;
    }

    .certificate-img img {
      width: 100%;
      height: 240px;
      /* object-fit:contain; */
      transition: 0.4s ease;
    }

    .certificate-card:hover img {
      transform: scale(1.05);
    }

    .certificate-content {
      padding: 25px;
      text-align: center;
    }

    .certificate-content h5 {
      font-weight: 700;
      margin-bottom: 15px;
      color: #0f172a;
    }

    .certificate-content p {
      color: #64748b;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .btn-primary {
      padding: 10px 22px;
      font-weight: 600;
    }

    /* .testimonial-section {
      padding: 70px 0;
    } */

    .section-title {
      color: #1d4024;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    /* .section-subtitle{
      color:#6c757d;
      margin-bottom:50px;
    } */

   .testimonial-section{
    background:#202820;
    padding:80px 20px;
    overflow:hidden;
    position:relative;
}

.testimonial-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("assets/banner/testimonial.jpg");
    background-size:cover;
    opacity:.15;
}

.testimonial-header{
    text-align:center;
    position:relative;
    z-index:2;
    margin-bottom:70px;
}

.testimonial-header span{
    color:#fff;
    font-size:12px;
    letter-spacing:2px;
}

.testimonial-header h2{
    color:#f5b335;
    font-size:42px;
    margin:10px 0;
}

.testimonial-header p{
    color:#ddd;
    max-width:650px;
    margin:auto;
    line-height:1.7;
}

.testimonial-slider{
    position:relative;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    padding-top:50px; /* ADD THIS */

}

.testimonial-track{
 display:flex;
    gap:30px;
    will-change:transform;
}

.testimonial-card{
    flex:0 0 calc(33.333% - 20px);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.25);
    border-radius:20px;
    padding:40px 25px 25px;
    text-align:center;
    position:relative;
}

.testimonial-card img{
    width:70px;
    height:70px;
    border-radius:50%;
    border:4px solid #f5b335;
    position:absolute;
    top:-35px;
    left:50%;
    transform:translateX(-50%);
}

.testimonial-card p{
    color:#ddd;
    font-size:14px;
    line-height:1.7;
    margin-top:15px;
}

.testimonial-card h4{
    color:#f5b335;
    margin-top:15px;
}

.testimonial-card.active{
    transform:scale(1.05);
    border-color:#fff;
}

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ffffff22;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:5;
    backdrop-filter:blur(5px);
}

.prev{
    left:-70px;
}

.next{
    right:-70px;
}

.nav-btn:hover{
    background:#f5b335;
}
.slider-container{
    overflow:hidden;
    padding-top:40px;
}
@media(max-width:991px){

    .testimonial-card{
        flex:0 0 calc(50% - 15px);
    }

    .testimonial-header h2{
        font-size:34px;
    }

    .prev{
        left:0;
    }

    .next{
        right:0;
    }
}

@media(max-width:768px){

    .testimonial-card{
        flex:0 0 100%;
    }

    .testimonial-header h2{
        font-size:28px;
    }
}
/* Extra Small Phones */
@media screen and (max-width:480px){

    .heading h2{
        font-size:38px;
    }

    .heading p{
        font-size:15px;
    }

    .testimonial-card{
        min-width:90vw;
        width:90vw;
        padding:50px 18px 25px;
    }

    .testimonial-card p{
        font-size:14px;
    }

    .testimonial-card h4{
        font-size:24px;
    }

    .testimonial-card img{
        width:65px;
        height:65px;
    }

    .nav-btn{
        width:42px;
        height:42px;
    }
}
    /* =========================
   CHATBOT
========================= */

    .chatbot-container {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 9999;
    }

    /* BUTTON */

    .chat-toggle {
      width: 65px;
      height: 65px;
      border: none;
      border-radius: 50%;
      background: #123524;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      position: fixed;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    }

    /* CHAT BOX */

    .chat-box {
      width: 340px;
      height: 500px;
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, .15);

      position: fixed;
      bottom: 80px;
      right: 81px;

      display: none;
      flex-direction: column;
    }

    /* HEADER */

    .chat-header {
      background: #123524;
      color: #fff;
      padding: 18px;
      font-size: 18px;
      font-weight: 600;
    }

    /* MESSAGES */

    .chat-messages {
      flex: 1;
      padding: 20px;
      overflow-y: auto;
      max-height: calc(100% - 130px);
      background: #f8f8f8;

      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* BOT */

    .bot-message {
      background: #e6f4ea;
      padding: 12px 15px;
      border-radius: 15px 15px 15px 5px;
      max-width: 80%;
      line-height: 1.5;
    }

    /* USER */

    .user-message {
      background: #123524;
      color: #fff;
      padding: 12px 15px;
      border-radius: 15px 15px 5px 15px;
      max-width: 80%;
      align-self: flex-end;
      line-height: 1.5;
    }

    /* INPUT */

    .chat-input-area {
      display: flex;
      padding: 15px;
      gap: 10px;
      border-top: 1px solid #eee;
    }

    .chat-input-area input {
      flex: 1;
      height: 45px;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 0 15px;
      outline: none;
    }

    .chat-input-area button {
      border: none;
      padding: 0 18px;
      border-radius: 10px;
      background: #123524;
      color: #fff;
      cursor: pointer;
      font-weight: 600;
    }

    /* MOBILE */
    @media(max-width:600px) {

      .chat-box {
        width: 90%;
        max-width: 341px;

        height: 450px;

        right: 28px;
        left: auto;

        bottom: 80px;

        border-radius: 20px;
      }

      .chat-toggle {
        width: 58px;
        height: 58px;

        right: 15px;
        bottom: 15px;
      }

    }
   
/* product page */
  /* PRODUCT CARD */
    .product-card {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      margin: 40px auto;
      /*max-width:1200px;*/
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* IMAGE SLIDER */
    .image-slider {
      position: relative;
      overflow: hidden;
      /*border-radius:15px;*/
      /*background:#fff;*/
    }

    .main-img {
      width: 100%;
      /*height:420px;*/
      object-fit: contain;
      /*border:1px solid #eee;*/
      /*border-radius:15px;*/
      /*background:#fff;*/
    }

    /* SLIDER BUTTONS */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border: none;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-size: 22px;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
      transition: .3s;
    }

    .image-slider:hover .slider-btn {
      opacity: 1;
      visibility: visible;
    }

    .prev-btn {
      left: 15px;
    }

    .next-btn {
      right: 15px;
    }

    /* THUMBNAILS */
    .thumb {
      width: 75px;
      height: 75px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: .3s;
    }

    .thumb.active {
      border-color: #198754;
    }

    /* TITLE */
    .title {
      font-size: 30px;
      font-weight: 700;
      color: #123524;
    }

    /* PRICE */
    .price {
      font-size: 28px;
      font-weight: 700;
      color: #b07a19;
    }

    /* MOVING BAR */
    .bar-wrapper {
      overflow: hidden;
      border: 1px dashed #198754;
      border-radius: 12px;
      background: #f8fff8;
      margin: 15px 0;
    }

    .bar-track {
      display: flex;
      width: max-content;
      animation: move 20s linear infinite;
    }

    .bar-item {
      flex-shrink: 0;
      padding: 10px 40px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: #198754;
      white-space: nowrap;
    }

    @keyframes move {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* FEATURES */
    .feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: #444;
      margin-bottom: 10px;
    }

    .feature i {
      color: #198754;
      font-size: 20px;
    }

    /* BUTTONS */
    .btn-cart {
      background: #198754;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 10px;
      transition: .3s;
    }

    .btn-cart:hover {
      background: #146c43;
    }

    .btn-buy {
      background: #c78d23;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 10px;
      transition: .3s;
    }

    .btn-buy:hover {
      background: #aa7418;
    }

    /* TABS */
    .nav-pills .nav-link {
      background: #e9ecef;
      color: #222 !important;
      border-radius: 8px;
    }

    .nav-pills .nav-link.active {
      background: #198754;
      color: #fff !important;
    }

    /* REVIEW CARD */
    .review-card {
      border: 1px solid #eee;
      border-radius: 12px;
    }
    /* MOBILE */
    @media(max-width:768px) {
      .slider-btn {
        opacity: 1;
        visibility: visible;
        width: 40px;
        height: 40px;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }

      .title {
        font-size: 24px;
      }
    }

    .product-details {
      padding: 80px 0;
      background: #fff;
    }

    .product-details h2 {
      text-align: center;
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 60px;
    }

    .product-details h3 {
      text-align: center;
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 25px;
      margin-top: 50px;
    }

    .product-details p {
      font-size: 18px;
      line-height: 1.9;
      color: #555;
      margin-bottom: 25px;
    }

    .product-details ul {
      padding-left: 30px;
      margin-bottom: 30px;
    }

    .product-details li {
      font-size: 18px;
      line-height: 2;
      color: #555;
    }

    .product-details .note {
      font-size: 18px;
      font-weight: 600;
      margin-top: 30px;
    }

    @media(max-width:768px) {
      .product-details h2 {
        font-size: 34px;
      }

      .product-details h3 {
        font-size: 26px;
      }

      .product-details p,
      .product-details li {
        font-size: 16px;
      }
    }

    .review-card {
      border-radius: 16px;
      transition: 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .avatar {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #28a745;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .ingredient-list {
      list-style: none;
      padding: 0;
    }

    .ingredient-list li {
      padding: 8px 12px;
      margin-bottom: 8px;
      background: #f8f9fa;
      /* border-left: 4px solid #28a745; */
      border-radius: 6px;
      font-size: 15px;
      transition: 0.3s;
      text-align: center;
    }

    .ingredient-list li:hover {
      background: #e9f7ef;
      transform: translateX(5px);
    }

    .section-subtitle {
      color: #c08c41;
      font-weight: 500;
      margin-bottom: -10px;
    }
 /* Announcement Bar */
.announcement-bar {
    height: 35px;
    background: #355c3b;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999;
}

.announcement-wrapper {
    width: 100%;
    overflow: hidden;
}

.announcement-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: announcement-scroll 20s linear infinite;
    font-size: 14px;
    font-weight: 600;
}

@keyframes announcement-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.announcement-gap {
    display: inline-block;
    width: 150px;
}
