:root {
    --green: #01863e;
    --black: #0000;
    --white: #fff;
    --text-color: #0d0a0b;
    --paragraph-text-color: #666666;
  }

  body {
    font-family: 'Epilogue', sans-serif;
    font-weight: 400;
  }
  .font-dm {
    font-family: 'DM Serif Display', serif;
  }
  .btn {
    background-color: var(--green);
    color: var(--white);
    border-radius: 8px;
    font-size: 15px;
    padding: 9px 15px;
    border: 1px solid var(--green);
    font-family: 'Epilogue', sans-serif;
    transition: 0.3s ease-in-out;
  }
  .btn:hover {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
  }
  section {
    padding: 100px 0;
  }
  figure {
    margin-bottom: 0;
  }
  .container {
    max-width: 1400px;
    margin-inline: auto;
  }
  .row {
    display: flex;
    align-items: center;
  }
  header {
    padding: 20px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
  }
  .header--scrolled {
    background-color: var(--white);
    transition: 0.3s ease-in-out;
  }
  .header--scrolled .logo img{
   width: 80px;
  }
  header .logo {
    margin-right: 50px;
    width: fit-content;
  }
  .logo img{
  width: 115px;
  }

  header ul {
    display: flex;
    align-items: center;
  }
  header ul li {
    list-style: none;
    margin-right: 25px;
  }
  header ul li a {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    padding: 5px;
  }
  header ul li a.active {
    color: var(--green);
    font-weight: 600;
  }
  header ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--green);
    transition: 0.3s ease-in;
  }
  header ul li a:hover::before,
  header ul li a.active::before {
    width: 100%;
  }
  .hero {
    position: relative;
    padding: 0;
  }
  .hero .content {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 900px;
    width: 100%;
  }

  .hero .content h1 {
    font-family: 'DM Serif Display', serif;
    max-width: 600px;
    margin-inline: auto;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .hero .content h1 span {
    color: var(--green);
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    font-weight: 400;
    margin: 0;
  }
  .hero .content p {
    margin-bottom: 25ppx;
  }
  .hero .content .btn svg {
    fill: var(--white);
    width: 20px;
    height: 20px;
  }
  .hero .content .btn:hover svg {
    fill: var(--green);
  }
  .why-choose-us .content,
  .about-us .content {
    padding-left: 130px;
  }

  .content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 44px;
    font-weight: 400;
    margin: 0 40px 20px 0;
  }
  .content span {
    font-size: 18px;
    color: var(--green);
    margin: 0 50px 16px 0;
    display: flex;
    font-weight: 500;
  }
  .our-brands {
    background-color: #fff9b3;
  }
  .our-brands .arrows {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    height: 30px;
  }
  .our-brands .swiper-button-prev {
    left: 0;
  }
  .our-brands .swiper-button-next,
  .our-brands .swiper-button-prev {
    background-color: var(--green);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    position: relative !important;
  }
  .our-brands .swiper-button-prev:after,
  .our-brands .swiper-button-next:after {
    font-size: 14px;
    color: var(--white);
  }

  .brand-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
   .brand-images img:hover {
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .brand-images img {
      transition: 0.3s ease;
      border-radius: 15px;
    }
  .accordion {
    width: 100%;
  }

  .accordion-item {
    background-color: #fff;
    color: #111;
    border: 0;
    border-bottom: 2px solid var(--green);
  }

  .accordion-item:last-of-type {
    border-radius: 0 !important;
  }

  .accordion-item-header {
    padding: 1rem 3rem 1rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
  }

  .accordion-item-header::after {
    content: '\002B';
    font-size: 2rem;
    position: absolute;
    right: 1rem;
  }

  .accordion-item-header.active::after {
    content: '\2212';
  }

  .accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .accordion-item-body-content {
    padding: 0 1rem 1rem;
    line-height: 1.5rem;
    font-size: 14px;
    font-weight: 300;
  }
  .image-section {
    background-image: url(/asstes/images/bg-img1.png);
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2em;
  }
  .why-choose-us .image-section .card {
    border-radius: 15px;
    border: 0;
    overflow: hidden;
    justify-content: space-between;
  }
  .why-choose-us .image-section .card .text {
    padding: 25px 25px 0;
  }
  .why-choose-us .image-section .card h5 {
    font-family: 'DM Serif Display', serif;
    font-size: 30px;
    margin-bottom: 15px;
  }
  .why-choose-us .image-section .card p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .why-choose-us .image-section .card:nth-child(1) {
    background-color: #aafff2;
  }
  .why-choose-us .image-section .card:nth-child(1) h5 {
    color: #018e42;
  }
  .why-choose-us .image-section .card:nth-child(2) {
    background-color: #f8ffd2;
  }
  .why-choose-us .image-section .card:nth-child(3) {
    background-color: #efff97;
  }
  .why-choose-us .image-section .card:nth-child(4) {
    background-color: #ffcfd8;
  }
  footer {
    background-color: #fff9b3;
    padding-top: 70px;
  }
  footer .counter-section {
    background-color: var(--green);
    border-radius: 25px;
    padding: 35px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 70px;
  }
  footer .counter-section .counter-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
  }
  footer .counter-section .counter-item img {
    width: 90px;
    height: 90px;
    background-color: #fff9b3;
    border-radius: 10px;
    padding: 25px;
  }
  footer .counter-section .counter-item .counter {
    font-size: 44px;
    font-weight: 700;
  }
  footer .counter-section .counter-item span {
    font-size: 44px;
    font-weight: 700;
    display: flex;
    line-height: 1;
  }
  footer .footer-section {
    padding-bottom: 30px;
    border-bottom: 1px solid #018e42;
  }
  footer .logo {
    margin-bottom: 20px;
  }
  footer p {
    font-size: 14px;
    margin-right: 100px;
  }
  footer .contact-details {
    padding-top: 50px;
  }
  .product-list .contact-details h6,
  footer .contact-details h6 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    margin-bottom: 25px;
  }
  .product-list svg,
  footer svg {
    min-width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--white);
    fill: var(--green);
    margin-right: 8px;
  }
  .contact-details p {
    margin-bottom: 10px;
  }
  .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .social-icons a {
    transition: 0.3s;
    text-decoration: none;
  }
  .social-icons a:hover svg {
    background-color: #01863e30;
  }

  footer .copy-right {
    font-size: 14px;
    color: #333333;
    padding: 20px 0;
    text-align: center;
  }

  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox */
  input[type="number"] {
    -moz-appearance: textfield;
  }
   .mobile-sticky{
          position: sticky;
          top: 0;
          background-color: #fff;
          z-index: 999;
      }

          .table-fixed-header-body table {
              table-layout: fixed;
              width: 100%;
          }
    
          .table-fixed-header-body th,
          .table-fixed-header-body td {
              padding: 0.75rem;
              vertical-align: middle;
              text-align: center;
                word-wrap: break-word;
           
          }
                   .table-fixed-header-body .item-row td:nth-child(1){
word-wrap: normal;
                   }
                   .table-fixed-header-body td{
word-wrap: break-word;
                   }
    
          /* Optional: prevent scrollbar from overlapping last column */
          .tbody-container {
              overflow-y: auto;
              max-height: 400px;
              /* adjust as needed */
          }
    
          /* .tbody-container::-webkit-scrollbar {
              width: 8px;
          } */
  @media screen and (max-width: 768px) {
    #review-btn{
        margin-bottom: 0 !important;
    }
    .mobile-sticky {
            top: -48px;
    }
       .why-choose-us .row,
    .about-us .row {
      flex-direction: column-reverse;
    }
    .logo img{
            width: 80px;
  }
  .header--scrolled .logo img{
  width: 70px;
  }
      .tbody-container {
      max-height: 100% !important;
      margin-bottom: 50px;
      }

  #review-btn {
          position: fixed !important;
          bottom: 20px;
          left: 0;
          right: 10px;
          width: 300px;
          left: 50%;
          transform: translate(-50%);
  }
    section {
      padding: 50px 0;
    }
    .hero img {
      height: 100vh;
      object-fit: cover;
    }
    .hero .content h1,
    .hero .content h1 span {
      font-size: 30px;
      justify-content: center;
    }
    .hero .content {
      padding: 0 15px;
    }

    .why-choose-us .content,
    .about-us .content {
      padding-left: 0;
      margin-bottom: 20px;
    }
    .content {
      margin-bottom: 20px;
    }
    .content h2 {
      font-size: 28px;
      margin-right: 0;
    }
    .content span {
      font-size: 16px;
      margin-right: 0;
    }
    p {
      font-size: 14px;
    }
    .brand-images {
      gap: 10px;
    }
    .brand-images img {
      width: 100px;
      height: 100px;
      transition: 0.3s ease;
    }

    .why-choose-us .image-section .card h5 {
      font-size: 24px;
    }
    .image-section {
      gap: 1em;
      background-image: none;
    }
    footer {
      padding-top: 50px;
    }
    footer .counter-section {
      padding: 20px 15px;
      border-radius: 15px;
      gap: 15px;
      grid-template-columns: repeat(auto-fit, minmax(117px, 1fr));
      margin-bottom: 50px;
    }
    footer .counter-section .counter-item {
      flex-direction: column;
    }
    footer .counter-section .counter-item p {
      margin: auto;
      margin-bottom: 10px;
    }
    footer .counter-section .counter-item span {
      justify-content: center;
    }
    footer p {
      margin-right: 0;
    }
    footer .footer-section {
      padding-bottom: 15px;
    }
    .product-list header .logo {
      margin-left: 0 !important;
      margin-right: 15px !important;
    }
    .product-list .contact-details p {
      display: flex;
      align-items: center;
    }
    .product-list header {
      padding: 15px !important;
      margin-top: 15px !important;
    }
    /*.btn {*/
    /*  width: 100%;*/
    /*}*/
    .btn span {
      justify-content: center;
    }
  }

  .product-list header .logo {
    width: 135px;
    margin-left: 30px;
  }
  .product-list header {
    background-color: #fff9b3;
    margin-top: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 30px;
  }
  .search {
    position: relative;
  }
  .search svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 10px !important;
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
  }
  table {
    overflow: hidden;
    border-radius: 5px;
  }
  table thead {
    background-color: #ceffcb;
    font-family: 'DM Serif Display', serif;
    font-weight: 300;
  }
  table thead th {
    background-color: #ceffcb !important;
    font-family: 'DM Serif Display', serif;
    font-weight: 300;

  }
  table td {
    vertical-align: middle;
    font-size: 14px;
    text-align: center;
  }
  table td input {
    background-color: #f0f0f0;
    font-size: 14px;
  }
  select:focus,
  input:focus {
    box-shadow: none !important;
    border-color: var(--green) !important;
  }
  .modal label {
    font-size: 14px;
  }
  .btn-close:focus {
    box-shadow: none !important;
  }
  .modal-content {
    border-radius: 25px !important;
    padding: 15px !important;
  }
  .modal-content input {
    font-size: 14px;
  }
  .total-price {
    font-size: 14px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  .total-price span {
    font-size: 32px;
  }

  .tbody-container{
  max-height: 630px;
      height: auto;
      overflow: auto;

  }

  #review-btn{
      position: sticky;
      bottom: 20px;
          margin-bottom: 10px;
  }
