body {
            font-family: 'Arial', sans-serif;
            background-color: #f6f1eb; /* Light beige color */
            margin: 0;
            padding: 0;
            width: 100vw; /* Ensure the body takes the full viewport width */
            overflow-x: hidden; /* Prevent horizontal scrollbar */
        }

        .navbar {
            background-color: #f6f1eb; /* Tan color */
            padding: 1rem; /* Add some padding for a cleaner look */
            width: 100%; /* Ensure full width */
        }

        .navbar-brand {
            font-family: 'Berkshire Swash', cursive;
            font-size: 2rem; /* Adjusted font size */
            color: black;
            display: flex;
            align-items: center;
        }
        @media (max-width:320px)
        {
            .navbar-brand
            {
                font-size:1rem;
            }
        }
         @media (max-width:375px)
        {
            .navbar-brand
            {
                font-size:1.5rem;
            }
        }

        .navbar-brand img {
            max-width: 50px; /* Set max width for logo */
            margin-right: 10px; /* Space between logo and text */
        }
        
        .navbar-brand span {
            color: #494d2d; 
            font-family: 'Arial', sans-serif;
        }

        /* Adjust font size and style for nav links */
        .nav-link {
            font-size: 1.1rem; /* Slightly larger */
            font-family: 'Arial', sans-serif;
            color: #494d2d; /* Tan color for links */
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: blue; /* Blue hover effect */
        }

        /* Space between navbar items */
        .navbar-nav .nav-item {
            margin-left: 1rem; /* Add space between nav items */
        }

        /* Button for Contact Us */
        .contact-btn {
            background-color: #603F26; 
            color: #fff;
            border: none;
            padding: 0.5rem 1rem;
            font-size: 1.1rem;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .contact-btn:hover {
            background-color: white;
            color: black;
        }

        /* Carousel Styling */
        .carousel-item img {
            width: 100%;
            height: 500px;
            object-fit: cover; /* Ensures image covers the space without distortion */
        }

        /* Ensure image adapts properly to smaller screens */
        @media (max-width: 768px) {
            .carousel-item img {
                height: auto;
                object-fit: contain; /* Show the entire image within the space */
            }
        }

        /* Prevent overflow issues */
        html, body {
            overflow-x: hidden; /* Disable horizontal scrolling */
        }
		
		
		/* About Us Section */
#about-us {
    background-color: #f6f1eb;
}

.about-video-wrapper video {
    width: 100%;                /* Ensures the video is responsive and fills the container width */
    max-height: 350px;           /* Sets a maximum height for larger screens */
    object-fit: cover;           /* Ensures the video covers the container without distortion */
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .about-video-wrapper video {
        height: auto;       /* Allows the video to adjust its height on smaller screens */
        object-fit: contain; /* Ensures the entire video is shown within the smaller container */
            width: 100%;                /* Ensures the video is responsive and fills the container width */
    max-height: 250px;           /* Sets a maximum height for larger screens */
    object-fit: cover;           /* Ensures the video covers the container without distortion */
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    }
}
@media (max-width: 320px) {
    .about-video-wrapper video {
        height: 200px !important;/* Allows the video to adjust its height on smaller screens */
       
        object-fit: contain; /* Ensures the entire video is shown within the smaller container */
    }
}

.about-text-wrapper {
    color: #494d2d;
    animation: fadeInUp 1s ease-out;
}

#about-us h2 {
    color: #603F26;
    font-family: 'Berkshire Swash', cursive;
}

.about-text-wrapper p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
}

.about-text-wrapper a {
    background-color: #603F26;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.about-text-wrapper a:hover {
    background-color: #fff;
    color: #603F26;
    border: 2px solid #603F26;
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #about-us .row {
        text-align: center;
    }
    #about-us .col-lg-6 {
        margin-bottom: 1.5rem;
    }
}
.why-choose-us {
    background-color: #f9f9f9;
    padding: 30px 0 80px;
    text-align: center;
    color: #603F26;
    position: relative;
}

.why-choose-us h2 {
    
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: #603F26;
    font-family: 'Berkshire Swash', cursive;
    
}



.why-choose-us p {
    font-size: 16px;
    color: black;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    color: #494d2d;
}

.why-choose-us .icon-box {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.why-choose-us .icon-box i {
    font-size: 50px;
    color: #603F26;
    margin-bottom: 15px;
}

.why-choose-us .icon-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-choose-us .icon-box p {
    font-size: 14px;
    color: #eee;
}

.image-container img {
    width: 100%;
    height: auto;
}
/* Our Products */body {
      background-color: #f7f7f7;
      font-family: 'Arial', sans-serif;
    }

    .product-section h2 {
      font-weight: bold;
      font-size: 36px;
      color: #333;
    }

    /* Slider container */
    .slider-container {
      overflow: hidden;
      width: 100%;
      position: relative;
      white-space: nowrap;
    }

    /* Inner container that holds all the modals */
    .slider-inner {
      display: flex;
      animation: scrollLeft 20s linear infinite; /* Move left to right */
    }

    @keyframes scrollLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    .product-card {
      position: relative;
      cursor: pointer;
      margin-right: 20px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      flex: 0 0 30%; /* Adjust to fit 3 cards per view */
    }

    .product-card:hover {
      transform: scale(1.05);
    }

    /* Video settings */
    .product-video {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .product-card:hover .overlay {
      opacity: 1;
    }

    .overlay .text {
      color: white;
      font-size: 24px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .modal-body {
      padding: 0;
    }

    /* Ensure all modal videos are responsive */
    .modal-body video {
      width: 100%;
      height: auto;
    }
    .products h2 {
    
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        color: #603F26;
        font-family: 'Berkshire Swash', cursive;
        
    }
    .modal-dialog {
        max-width: 50%;
        margin-left: 20%;
        
      }
      
      /* Make the video responsive */
      .modal-body {
        padding: 0;
      }
      
      #modalVideo {
        width: 100%;
        height: 100%;
      }
     /* Responsive adjustments */
     @media (max-width: 768px) {
        .slider-inner {
          flex-wrap: nowrap;
        }
        .product-card {
          flex: 0 0 45%; /* Show 2 cards per row */
        }
        .product-video {
          height: 380px; /* Adjust height for mobile */
        }
      }
  
      @media (max-width: 576px) {
        .product-card {
          flex: 0 0 100%; /* Show 1 card per row on small devices */
        }
        .product-video {
          height: 150px; /* Further adjust height for very small screens */
        }
      }
      @media (max-width: 320px) {
        .modal-dialog {
            max-width: 76%;
            margin-left: 12%;
        }
      }
      @media (max-width: 375px) {
        #modalVideo {
            width: 158%;
            height: 124%;
            margin-left: -31px;
        }
      }
  
      
    /* Footer  */
    .footer {
        position: relative;
        color: white;
        padding: 60px 0;
        background-color: rgba(0, 0, 0, 0.7);
        background-blend-mode: overlay;
        overflow: hidden;
      }
  
      .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/footer-bg.png') center center / cover no-repeat;
        opacity: 0.5;
        z-index: 0;
      }
  
      .footer-content {
        position: relative;
        z-index: 1;
      }
  
      .footer h4 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
      }
  
      .footer p {
        font-size: 18px;
        margin-bottom: 10px;
      }
  
      .footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
      }
  
      .footer a:hover {
        color: #ddd;
      }
  
      .footer .social-icons a {
        font-size: 24px;
        margin: 0 10px;
      }
  
      /* Animation */
      .footer-content {
        animation: fadeInUp 1.5s ease-out;
      }
  
      @keyframes fadeInUp {
        0% {
          opacity: 0;
          transform: translateY(30px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .footer h4 {
          font-size: 20px;
        }
  
        .footer p {
          font-size: 16px;
        }
      }
      .footer h4 {
    
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        color: #603F26;
       
        
    }