      
         .col:hover {
         transform: translateY(-5px);
         box-shadow: 0 6px 15px rgba(0,0,0,0.2);
         }
         .product-img {
         width: 100%;
         height: 302px;
         object-fit: cover;
         border-radius: 10px;
         }
         .product-info {
         padding: 15px;
         text-align: center;
         }
         .product-info h3 {
         font-size: 18px;
         margin-bottom: 8px;
         color: #333;
         }
         .product-info p {
         font-size: 16px;
         color: #555;
         margin-bottom: 12px;
         }
         .btn-cart {
         background: #ff6600;
         color: white;
         border: none;
         padding: 10px 18px;
         border-radius: 6px;
         cursor: pointer;
         transition: background 0.3s ease;
         }
         .btn-cart:hover {
         background: #e65c00;
         }
         /* Responsive Design */
         @media (max-width: 992px) {
         .col {
         width: 48%;
         }
         }
         @media (max-width: 576px) {
         .col {
         width: 100%;
         }
         }
     
      /*<!-- Product Section  -->*/
     
         .read-more-btn {
         display: inline-block;
         margin-top: 10px;
         padding: 8px 16px;
         background-color: #333;
         color: #fff;
         font-size: 14px;
         text-decoration: none;
         border-radius: 4px;
         transition: background-color 0.3s ease, transform 0.2s ease;
         }
         .read-more-btn:hover {
         background-color: orange;
         transform: scale(1.05);
         color: #fff;
         }
     
    /*Video Css */
     
         /* ===== Hero Section Styling ===== */
         .hero-section {
         position: relative;
         height: 100vh;
         width: 100%;
         overflow: hidden;
         display: flex;
         align-items: center;
         justify-content: center;
         color: #fff;
         }
         /* Background video */
       
         /* Dark overlay */
         .overlay {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         /* background: rgba(0, 0, 0, 0.5); */
         z-index: 1;
         }
         /* Text content */
         .hero-content {
         position: relative;
         z-index: 2;
         text-align: center;
         max-width: 800px;
         padding: 0 20px;
         }
         .hero-content h1 {
         font-size: 3rem;
         margin-bottom: 15px;
         font-weight: 700;
         }
         .hero-content p {
         font-size: 1.2rem;
         margin-bottom: 25px;
         line-height: 1.6;
         }
         .hero-btn {
         display: inline-block;
         padding: 12px 30px;
         background-color: orange;
         color: #fff;
         text-decoration: none;
         border-radius: 6px;
         font-weight: 600;
         transition: background-color 0.3s ease, transform 0.3s ease;
         }
         .hero-btn:hover {
         background-color: #ff6a00;
         transform: scale(1.05);
         }
         /* ===== Responsive Design ===== */
         @media (max-width: 768px) {
         .hero-content h1 {
         font-size: 2rem;
         }
         .hero-content p {
         font-size: 1rem;
         }
         }
         /* Top Header css  */
         @media (max-width: 768px) {
         .header-right-info.pull-right {
         display: none !important;
         }
         }
         
         /*New css */

.bg-video {
    position: absolute;
    top: 54%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the section */
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 60vh; /* Mobile view height */
    }
    .bg-video {
        object-fit: cover;
    }
}
