  .modal-lg {
        max-width: 900px;
    }

    .product-gallery {
        position: relative;
    }

    .main-image {
        width: 100%;
        height: 400px;
        overflow: hidden;
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .thumbnails-container {
        position: relative;
        margin-top: 15px;
    }

    #thumbnailGallery {
        scrollbar-width: thin;
        scrollbar-color: #dee2e6 #ffffff;
    }

    #thumbnailGallery::-webkit-scrollbar {
        height: 6px;
    }

    #thumbnailGallery::-webkit-scrollbar-track {
        background: #ffffff;
    }

    #thumbnailGallery::-webkit-scrollbar-thumb {
        background-color: #dee2e6;
        border-radius: 3px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
        border: 2px solid #dee2e6;
        border-radius: 4px;
        cursor: pointer;
        transition: border-color 0.2s;
    }

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail.active {
        border-color: #dc3545;
    }

    .product-details {
        height: 100%;
        padding: 20px;
    }

    .product-title {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .product-description {
        color: #6c757d;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .main-image {
            height: 300px;
        }

        .product-details {
            padding: 15px 0;
        }
    }
    .ecommerce-links {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
}

.ecommerce-link {
    display: inline-block;
    padding: 8px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.2s, background-color 0.2s;
}

.ecommerce-link:hover {
    transform: translateY(-2px);
    background-color: #e9ecef;
}

.ecommerce-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Update modal content max-height for scrolling if needed */
.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}
.scrollbar-hidden::-webkit-scrollbar {
    height: 6px;
}

.scrollbar-hidden::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollbar-hidden::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.thumbnail-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #dee2e6 #ffffff;
}

.thumbnail-wrapper::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-wrapper::-webkit-scrollbar-track {
    background: #ffffff;
}

.thumbnail-wrapper::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
    border-radius: 20px;
}

.thumbnail-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}

.thumbnail-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 991.98px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .main-image-container {
        max-height: 300px;
    }
    
    .product-details {
        padding-top: 1rem;
    }
}












/*----------------------video---------------------*/

/* Make the video container responsive */
  .video-container {
    position: relative;
    padding-bottom: 177.78%; /* Aspect ratio 9:16 (height / width = 16 / 9) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
  }
  
  .video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #video-section {
    background-color: #f8f9fa;
    padding: 40px 0;
  }
  
  
  
  
  
  /*------------Tesimonial----------------------*/
  
  
  
   .testimonial-container {
    background: #ffffff;
      max-width: 800px;
      margin: auto;
    }

    .swiper {
      width: 100%;
      padding: 20px 0;
    }

    .swiper-slide {
      
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-content {
      font-size: 1rem;
      color: #555;
    }

    .testimonial-author {
      margin-top: 15px;
      font-size: 1rem;
      font-weight: bold;
      color: #333;
    }

    .swiper-pagination-bullets {
      margin-top: 15px;
    }
  


    /* -------------------------Career Page --------------------- */

    .apply-box {
        max-width:600px;
        padding:20px;
        background-color:#fff;
        margin:0 auto;
        margin-top: 50px;
        border-radius:50px;
        box-shadow: 4px 3px 5px rgba(1,1,1,0.1);
      }
      
      .title_small {
        font-size: 20px;
        color:orangered;
      }
      
      .form_container {
        margin-top:20px;
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
        gap:20px;
      }
      
      .form_control {
        display:flex;
        flex-direction:column;
      }
      
      .textarea_control {
        grid-column: 1 / span 2;
      }
      
      .textarea_control textarea {
        width: 100%;
      }
      
      label {
        font-size: 15px;
        margin-bottom: 5px;
      }
      
      input,select,textarea{
        padding: 6px 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 15px;
      }
      
      input:focus, textarea:focus,select:focus {
        outline-color:red;
      }
      
      .button_container {
        display:flex;
        justify-content:flex-end;
        margin-top:20px;
      }
      
      .button_container button {
        background:orangered;
        border:transparent solid 2px;
        padding: 5px 10px;
        color:#fff;
        border-radius: 10px;
        transition: 0.3s ease-in;
        cursor: pointer;
      }
      
      @media screen and (max-width: 550px) {
        .textarea_control {
          grid-column: 1 / span 1;
        }
      }
  
  