    .custom-box {
      border: 2px solid #2c5462;
      /* Blue border */
      border-radius: 10px;
      color: white;
      background-color: #2c5462;
      /* Light blue background */
      padding: 20px;
    }

    .custom-box select,
    input {
      padding: .8rem !important;
    }

    .custom-btn {
      background-color: #fdab21;
      color: white;
      width: 100%;
      border-radius: 20px;
      transition: all 0.3s ease-in-out;
    }

    .custom-btn:hover {
      background-color: black;
      color: white;
      width: 100%;
    }

    .custom-btn i {
      margin-left: 5px;
    }

    /* Image styling */
    .section-image {
      /*object-fit: cover;*/
      width: 100%;
      height: 100%;
      border-radius: 10px;
      border: #fdab21 solid 5px;
    }

    /* Content Box Styling */
    .section-content-box {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
    }

    /* Badge Styling */
    .section-badge {
      background-color: #2c5462;
      color: white;
      padding: 0.9rem;
      border-radius: 50px 50px 50px 50px;
      display: inline-block;
    }

    /* Subheading Styling */
    .section-subheading {
      margin-top: 1rem;
    }

    /* Title Styling */
    .section-title {
      margin-top: 1rem;
    }


    /* Paragraph with Vertical Line */
    .paragraph-with-line {
      display: flex;
      border-left: #fdab21 solid 3px;
      align-items: flex-start;
      padding-left: 10px;
    }

    .paragraph-with-line p {
      margin-bottom: 0;
      line-height: 1.5;
    }

    .section-content-box a {
      background-color: #fdab21;
      color: white;
      border-radius: 20px;
      padding: 0.6rem;
      transition: all 0.3s ease-in-out;
    }

    .section-content-box a:hover {
      background-color: black;
      color: white;
      /* width: 100%; */
    }

    .section-content-box a i {
      margin-left: 5px;
    }

    .review-icon {
      width: 50px;
      height: 50px;
      background-color: #fdab21;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .review-icon i {
      color: white;
      font-size: 18px;
    }

    .review-card {
      border: 2px solid black;
      border-radius: 10px;
      background-color: #fff;
    }

    .review-text {
      height: 120px;
      /* Adjust height as needed */
      overflow-y: auto;
      padding-right: 10px;
    }

    /* Scrollbar Styling (WebKit Browsers) */
    .review-text::-webkit-scrollbar {
      width: 6px;
    }

    .review-text::-webkit-scrollbar-track {
      background: transparent;
    }

    .review-text::-webkit-scrollbar-thumb {
      background-color: #fdab21;
      border-radius: 3px;
    }


    .reviewer-pic img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid #fdab21;
      object-fit: cover;
    }

    .swiper-pagination-bullet {
      background: #000 !important;
      opacity: 1 !important;
    }

    .swiper-pagination-bullet-active {
      background: #fdab21 !important;
    }

    .swiper-pagination {
      position: relative !important;
      /* prevents it from overlapping slides */
      margin-top: 20px;
      text-align: center;
    }

    .feature-section {
      border: 2px solid black;
      border-radius: 5px;
    }

    .feature-card {
      /* border: 2px solid black; */
      border-radius: 10px;
      background-color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }


    .feature-icon {
      width: 60px;
      height: 60px;
      background-color: #fdab21;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .section-label {
      background-color: #000;
      display: inline-block;
      font-weight: bold;
      border-radius: 5px;
    }

    .choose-card {
      border: 2px solid #000;
      background-color: #fff;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      transition: 0.3s ease;
    }

    .choose-card:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .choose-icon {
      width: 50px;
      height: 50px;
      background-color: #fdab21;
      border-radius: 50%;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 20px;
    }

    .faq-item {
      background-color: #f5f5f7;
      padding: 15px 20px;
      border-radius: 8px;
      width: 100%;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      /* Smooth shadow */
    }

    .faq-question {
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .faq-item:hover .faq-question {
      color: #fdab21;
    }

    .faq-item:hover .toggle-icon {
      color: #fdab21;
    }

    .toggle-icon {
      font-size: 20px;
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      margin-top: 10px;
      color: #555;
    }

    .custom-black-section {
      background-color: #000;
    }

    .black-card {
      background-color: #111;
      /* border: 2px solid #333; */
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s ease;
    }

    .black-card:hover {
      transform: translateY(-5px);
    }

    .fixed-img {
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
      width: 100px;
    }

    .text-highlight {
      color: #fdab21;
      /* Golden Yellow */
    }

    .popular-products {
      background-color: #000;
    }

    .product-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      /* Ensures image stays within the box */
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .image-box {
      position: relative;
      width: 100%;
      height: 200px;
      /* Fixed height for the image box */
      overflow: hidden;
      margin-bottom: 15px;
      /* Space between image and heading */
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Ensures the image covers the box without distortion */
      border: 4px solid #fff;
      /* White border around the image */
      border-radius: 8px;
    }

    .product-title {
      font-size: 1.2rem;
      font-weight: 600;
    }

    @media screen and (max-width: 768px) {
      .product-card {
        margin-bottom: 20px;
        /* Space for smaller screens */
      }
    }

    .step-img {
      /* width: 60px; */
      height: 60px;
      /* border-radius: 50%; */
      object-fit: cover;
      flex-shrink: 0;
    }

    .order-img {
      max-width: 400px;
      height: auto;
    }

    .section-title {
      font-size: 2rem;
      font-weight: bold;
    }

    .section-description {
      color: #666;
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .why-point {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .bullet-circle {
      flex-shrink: 0;
      /* prevents shrinking */
      width: 30px;
      height: 30px;
      border: 4px solid #fdab21;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 6px !important;
      /* aligns with top of text */
    }

    .inner-circle {
      width: 10px;
      height: 10px;
      background-color: #fdab21;
      border-radius: 50%;
    }