body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
  }
  
  header {
    position:static;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    white-space:inherit;
    
  }

  header img{
    width: 100%;
    height: 15vh;
    object-fit: cover;
  }
  
  header h1 {
    font-size: 45px;
    color: white;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 25px;
    margin-bottom: 25px;
  }
nav{
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    /*background-color:rgb(15, 15, 15);*/
    background-color: black;
    margin:0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: whitesmoke;
}  

nav a{
    margin-left: 50px;
    margin-right: auto;
    color: white;
    text-decoration: none;
}

nav a:hover{
    text-decoration: underline;
    transform:scale(1.2);
    transition:step-start;
}

/*  .slider-container {
    position: relative;
  }
  
  .slide {
    display: none; /* Hide all slides initially 
  }
  
  .slide img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 600px;
  }
  
  .slider-container .show { /* Style for the active slide 
    display: block;
  }
  
  button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;  Transparent buttons 
    border: none; /* Remove borders 
    cursor: pointer; /* Indicate clickable elements 
  }
  
  #prevBtn {
    left: 10px;
  }
  
  #nextBtn {
    right: 10px;
  }
  
  /* Add some hover effects for better user experience 
  button:hover {
    opacity: 0.7; /* Semi-transparent on hover 
  }
*/

video {
    width :100%;
    height: 500px;
    object-fit: cover;

    /*background-color: black; */
}

.nav-bar{
    display:flex;

}

.search-box {
    margin-left: auto;
    margin-right:10px;
}
.search-box input[type="text"] {
    height: 25px; /* Adjust the value (in pixels) to your desired height */
}

#search{
    color:black;
    height: 30px; /* Adjust the value (in pixels) to your desired height */
    /* Other button styles */
  }

  
  /* Featured Products Section */
  /*.featured-products {
    margin:0;
    text-align: center;
    
    width:100%;
  }*/
  .featured-products {
    margin: 0;
    text-align: center;
    width: 100%; /* Set width to 100% */
    overflow-x:auto; /* Enable horizontal scrolling if needed */
    scrollbar-width: thin;
    scrollbar-color: transparent;
  }

  .featured-products::-webkit-scrollbar-track {
    background-color: #ddd; /* Track color for Webkit browsers */
  }
  
  .featured-products::-webkit-scrollbar-thumb {
    background-color: #aaa; /* Thumb color for Webkit browsers */
    border-radius: 5px; /* Rounded corners */
  }
  
h2 {
    margin-top:75px;
    color: white;
    font-size: 2.3em;
    text-align:center;
  }
  
  /*.product-container {
    
    display: flex; /* Arrange products horizontally 
    overflow-x: scroll; /* Enable horizontal scrolling 
    white-space: nowrap; /* Prevent line breaks between products 
    scroll-snap-type: x mandatory; /* Enable snapping to products 
    padding: 10px;
  }
  */

  .product-container {
    display: flex; /* Arrange products horizontally */
    margin-top: 40px;
  }


  /*.product-item {

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    text-decoration: none;
    scroll-snap-align: start; /* Align products to the left on scroll 
    width: 200px; /* Set product width 
    /* Add box styles here 
    border: 1px solid #ddd; /* Add a border for the box 
    padding: 10px; /* Add some padding inside the box 
    background-color: #fff; /* Set background color for the box 
  }
*/
.product-item {
    flex: 0 0 auto; /* Ensure each product item doesn't grow or shrink */
    margin-right: 35px; /* Remove margin to ensure full width */
    width:270px;
    border-radius: 5px;
    border: 1px solid #ddd; /* Add a border for the box */
    padding: 10px; /* Add some padding inside the box */
    background-color: #fff; /* Set background color for the box */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle drop shadow */
  }
  .product-item:hover{
    transform:scale(1.1);
    transition:transform 0.2s ease-in;
    
  }
  
  
  .product-item img {
    width: 100%; /* Set image width to fill product container */
    height: 300px; /* Set image height */
    object-fit: cover; /* Crop image to fit container */
  }
  
  .product-item p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:black;
    text-decoration: underline;
    margin-top: 5px;
    font-weight: bold;
    white-space: normal;
  }
  
  .product-item .price {
    color: #999;
    font-size: 0.9em;
    white-space: normal;

  }


/* Existing styles... (your previous CSS) */

.blogs {
    margin: 75px 0; /* Margin top and bottom */
    text-align: center; /* Optional: Center content horizontally */
  }
  
  .blogs h2 {
    color: white;
    font-size: 1.9em;
    margin-bottom: 30px; /* Margin bottom for spacing */
  }
  
  .blog-container {
    display: flex; /* Arrange blogs horizontally */
    flex-wrap: wrap; /* Allow items to wrap to multiple lines if needed */
    white-space: nowrap; /* Prevent line breaks between blogs */
  }
  
  .blog-item {
    flex: 0 0 auto; /* Ensure each product item doesn't grow or shrink */
    margin-left:25px;
    margin-right: 17px; /* Remove margin to ensure full width */
    margin-bottom: 25px;
    width:27.5%;
    height: 550px;
    border-radius: 5px;
    border: 1px solid #ddd; /* Add a border for the box */
    padding: 10px; /* Add some padding inside the box */
    background-color: #fff; /* Set background color for the box */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle drop shadow */
  }
  
  .blog-item img {
    width: 100%;
    height: 325px; /* Adjust image height as needed */
    object-fit: cover;
  }
  
  .blog-item h3 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    margin-top: 10px;
    margin-bottom: 5px;
    text-decoration: underline;
    font-size: 1.2em; /* Adjust heading size as needed */
    white-space:normal;
    color:black;
  }



  .blog-item h3:hover{
    color:blue;
  }
  
  .blog-item p {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 0.8em; /* Adjust paragraph size as needed */
    white-space:normal;
    line-height: 1.3; /* Adjust line spacing for readability */
}

.shop-for {
  display: flex;
  justify-content: space-between;
  margin-top:50px;

}

.shop-for-item {
  width: 50%; /* Adjust width as needed */
  padding:10px;
}

.shop-for-item img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
}


.footer {
  position: relative;
  background-color: black; /* Choose your desired background color */
  color: antiquewhite; /* Text color */
  padding: 20px;
  text-align: center;
  border-top: 5px double #777;
}

.footer h3 {
  margin-top: 0;
}

.about-us{
  flex:1;
  text-align:left;
}

.contact-us {
  flex: 1;
  text-align:right;

}

.trademark p {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  
}

.about-us p{
  margin-left:0;
  margin-bottom:30px;
}

.contact-us p {
  margin-bottom: 10px;
}

/*.about-us {
  border-right: 1px solid #777; /* Border between sections 
}

.contact-us {
  border-left: 1px solid #777; /* Border between sections 
}
*/
.us{
  display:flex;
}

.icon-text{
  margin-left:5px;
}

