

    .form-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        display: flex;
        /* This line added */
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* Center vertically */
    }

    .form-box {
        background: white;
        padding: 30px;
        width: 90%;
        max-width: 500px;
        border-radius: 10px;
        position: relative;
    }

    .form-box h2 {
        text-align: center;
    }

    .form-box input,
    .form-box textarea {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        font-size: 16px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .form-box button[type="submit"] {
        background: green;
        color: white;
        font-size: 16px;
        padding: 12px;
        border: none;
        border-radius: 5px;
        width: 100%;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        color: #333;
        cursor: pointer;
    }
    .tb-h2{
        color: black;
        font-weight: 600;
    }
    .th{
        color: black;
    }


/* slider */

    .container-wrapper {
      display: flex;
      justify-content: center;
      padding: 20px;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      width: 100%;
    }

    .left-side {
      flex: 1;
      min-width: 300px;
      padding: 10px;
    }

    .slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 8px;
    }

    .slider-container img {
      display: none;
      width: 100%;
      height: auto;
    }

    .slider-container img:first-child {
      display: block;
    }

    .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      font-size: 24px;
      padding: 10px 14px;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
    }

    .arrow-left {
      left: 10px;
    }

    .arrow-right {
      right: 10px;
    }

    .right-side {
      flex: 1;
      min-width: 300px;
      padding: 10px;
    }
    .right-side h2{
      color: #333;
      font-weight: 700;
    }

    h2 {
      margin-top: 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 15px;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 8px 12px;
      text-align: left;
      color: #000000;
    }

    th {
      background-color: #f5f5f5;
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .btn-group a:hover{
      color: #fff;
    }
    .btn {
      padding: 10px 16px;
      border: none;
      border-radius: 5px;
      color: white;
      font-size: 16px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .btn.whatsapp {
      background-color: #db0030 !important;
    }

    .btn.order {
      background-color: green !important;
    }

    .btn.call {
      background-color: #0e406d  !important;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        margin-top: 5px;
        gap: 10px;
        justify-content: center;
      }
      .container-wrapper {
      justify-content: center;
      display: flex;
      padding: 1px;
    }
    }
/* end slider */



/* related-image */
    .product-cards-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 20px 10px;
    }
    .hii {
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 4px;
  color: #333;
  text-align: left !important;
}
    .product-card {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      background: #fff;
      flex: 1 1 calc(100% - 20px);
      max-width: 100%;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .product-card img {
      width: 100%;
      display: block;
      border-radius: 8px;
      transition: transform 0.5s ease;
      transform-origin: center center;
      transform: scale(1);
    }

    .product-card:hover img {
      transform: scale(1.1);
    }

    .product-name {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #FF4136;
      padding: 12px;
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      z-index: 2;
    }

    .view-detail {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 10px 20px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 3;
    }
     .view-detail:hover{
      color: #FF4136;
     }
     .product-name{
      color: #fff;
     }

    .product-card:hover .view-detail {
      opacity: 1;
    }
    .product-name:hover {
  transform: scaleY(1.8);
  color: #fff;
/* margin-bottom:12px; */
}

    @media (min-width: 768px) {
      .product-card {
        flex: 1 1 calc(50% - 20px);
      }
    }

    @media (min-width: 992px) {
      .product-card {
        flex: 1 1 calc(33.333% - 20px);
      }

    }
    /* end related product */



