* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    padding: 0;
    background: #ddd; 
  }
  
  
  
.top-bar {
    background-color: #b38140;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }
    .contact, .address {
        margin: 5px 0;
    }
}

  
  

  .banner {
    position: relative;
    width: 100%;
    height: 85vh; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 60px; /* Push it down below the navbar and top-bar */

  }
  
   .banner__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 0;
  }
  
  .banner__content {
    position: absolute;
    z-index: 1;
    text-align: center;
    color: #8e1717;
    background: rgba(232, 216, 196, 1.0); /* Optional: for better text visibility */
    padding: 20px;
    border-radius: 5px;
  }
  
  .banner__content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .banner__content p {
    font-size: 1.2rem;
  }
  
  .banner__button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #FFFFFF;
    background-color: #8e1717;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .banner__button:hover {
    background-color: #C7B7A3;
    transform: translateY(-3px);
  }
  
  .banner__button:active {
    transform: translateY(1px);
  }
  
 /* Featured Section */
.featured-section {
  padding: 10px 20px;
  background: #FFFFFF;
  text-align: center;
  
}

.featured-section h2 {
  margin-bottom: 10px;
  font-size: 32px;
  color: #8e1717;
  border: 2px solid #8e1717; /* Border around the text */
  display: inline-block; /* Ensure the border fits the text tightly */
  padding: 10px 20px; /* Add some padding for better appearance */
  border-radius: 10px;
 
}




.slider-container {
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: auto;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product-card {
  min-width: 25%; /* Each product takes up 25% of the slider's width */
  box-sizing: border-box;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #8e1717;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1000;
  padding: 5px;
  
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* about us */
.about-us {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
 
  
}

.about-us__container {
  display: flex;
  justify-content: center;
 
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us__content {
  flex: 1;
  text-align: left;
  padding: 0 20px;
}

.about-us__content h2 {
  font-size: 36px;
  color: #8e1717;
  margin-bottom: 20px;
}

.about-us__content p {
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.about-us__button {
  display: inline-block;
  background-color: #8e1717;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.about-us__button:hover {
  background-color: #C7B7A3;
}

.about-us__image {
  flex: 1;
  text-align: center;
}

.about-us__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Product Categories Section */
.product-categories {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.product-categories h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #8e1717;
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.category-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  text-align: left;
}

.category-card img {
  width: 100%;
  height: 250px;
  display: block;
}

.category-content {
  padding: 20px;
}

.category-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #8e1717;
}

.category-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.category-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8e1717;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.category-button:hover {
  background-color: #C7B7A3;
  transform: translateY(-3px);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



.newsletter {
  background-color: #8e1717;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.newsletter__content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 18px;
  margin-bottom: 30px;
}

.newsletter__form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter__form input[type="email"] {
  padding: 15px;
  border-radius: 25px;
  border: 2px solid transparent; /* Updated border to show focus effect */
  flex-grow: 1;
  max-width: 400px;
  min-width: 250px;
  transition: border-color 0.3s ease; /* Transition for smooth effect */
}

.newsletter__form input[type="email"]:hover {
  outline: none;
  border-color: #C7B7A3; /* Highlight border color when focused */
  transform: translateY(-3px);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter__form button {
  padding: 15px 30px;
  background-color: #C7B7A3;
  border: none;
  border-radius: 25px;
  color: #8e1717;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter__form button:hover {
  background-color: #E8D8C4;
  transform: translateY(-3px);
}

.newsletter__form button:active {
  transform: translateY(1px);
}

.contact {
  background-color: #f5f5f5;
  color: #333;
  padding: 60px 20px;
  text-align: center;
}

.contact__content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #8e1717;
}

.contact p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.contact__info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact__details, .contact__form {
  flex: 1;
  min-width: 320px;
  max-width: 48%;
}

.contact__details {
  text-align: left;
}

.contact__details h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #8e1717;
}

.contact__details p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #8e1717;
}

.contact__details iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: 0;
  margin-top: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact__form h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #8e1717;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 2px solid #ccc;
  transition: border-color 0.3s ease;
  font-size: 16px;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #8e1717;
  outline: none;
}

.contact__form button {
  padding: 15px 30px;
  background-color: #8e1717;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.contact__form button:hover {
  background-color: #C7B7A3;
  transform: translateY(-3px);
}

.contact__form button:active {
  transform: translateY(1px);
}
  /* Footer Container */
.footer {
    background-color: #862828;
    color: #f4d488;
    padding: 50px 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-radius: 80px 80px 0 0;
    text-align: center;
}

/* Left Section */
.footer-sec {
    max-width: 250px;
    text-align: left;
    color: #f4d488;
}

.footer-sec img.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}


.footer-sec p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    
   
}

/* Contact Info and Dots Wrapper */
.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0 20px;
}

/* Adding white border on each side of contact-wrapper */
.contact-wrapper::before,
.contact-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #ffffff;
    border-radius: 2px;
}

.contact-wrapper::before {
    left: -15px;
}

.contact-wrapper::after {
    right: -15px;
}

/* Dot Sections */
.dots {
    display: flex;
    gap: 0px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.yellow {
    background-color: #f4d488;
    border: 1px solid;
}

.orange {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.white {
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    text-align: center;
}

.contact-info p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

/* Right Section - Certifications */
.certification-info {
    max-width: 250px;
    text-align: center;
    color: #f4d488;
}

.certification-info h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: bolder;
}

.certification-info p {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
   
}

.certification-images {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.certification-images img {
    width: 90px;
    height: auto;
}

.footer-bottom {
background-color: #D2B260; /* Beige background */
color: #7C111E;
text-align: center;
padding: 10px 0;
margin-top: 0px;
font-size: 14px;
bottom: 0px;

}

.footer-bottom ul {
list-style: none;
padding: 0;
margin: 10px 0 0;
display: flex;
justify-content: center;
gap: 10px;
}

.footer-bottom ul li a {
color: #7C111E;
text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-wrapper::before,
    .contact-wrapper::after {
        display: none;
    }

    .footer-sec, .contact-info, .certification-info {
        max-width: 100%;
        margin: 10px 0;
    }

    .certification-images img {
        width: 50px;
    }
}




  @media (max-width: 768px) {
   
  
   
  

 


  .banner {
    height: 40vh; /* Adjust the height for smaller screens */
  }
  .banner__content h1 {
    font-size: 2rem;
  }
  .banner__content p {
    font-size: 1rem;
  }
  .banner__button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  


  .testimonials__container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter__form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter__form input[type="email"] {
    max-width: 100%;
  }

  .newsletter__form button {
    width: 100%;
  }

  .contact__info {
    flex-direction: column;
    align-items: center;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
  }
  
  .footer__container > div {
    text-align: center;
  }
 
}

@media (max-width: 480px) {
  .about-us__container {
    display: flex;
    justify-content: center;
   flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 430px) {
   
  
   
  

  .about-us__container {
    display: flex;
    justify-content: center;
   flex-direction: column;
    align-items: center;
  }
  .about-us__image {
    
    text-align: center;
  }
  .banner {
    height: 40vh; /* Adjust the height for smaller screens */
  }
  .banner__content h1 {
    font-size: 1.8rem;
  }
  .banner__content p {
    font-size: 0.8rem;
  }
  .banner__button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  
  .featured-section h2 {
   
    font-size: 26px;
   
   
  }
  
  .about-us__content h2 {
    font-size: 26px;
    
  }
  
  .about-us__content p {
    font-size: 16px;
    line-height: 1.6;
    
  }
  
  .product-categories h2 {
    font-size: 26px;
    margin-bottom: 40px;
   
  }
  
  .category-content h3 {
    font-size: 20px;
  
  }

  .newsletter h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .newsletter p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .contact h2 {
    font-size: 26px;
    
  }
  
  .contact p {
    font-size: 16px;
   
  }
  


}
/* Media query for screens with max-width: 768px (tablets, small devices) */
@media (max-width: 768px) {
  .product-card {
    min-width: 50%; /* Display two products per view */
  }
}

/* Media query for screens with max-width: 430px (smaller mobile devices) */
@media (max-width: 430px) {
  .product-card {
    min-width: 100%; /* Display one product per view */
  }

  .prev, .next {
    font-size: 1.5rem; /* Smaller navigation icons */
  }
}

/* Media query for screens with max-width: 390px (iPhones, very small devices) */
@media (max-width: 390px) {
  .product-card {
    min-width: 100%; /* Display one product per view */
  }

  .prev, .next {
    font-size: 1.3rem; /* Even smaller navigation icons for compact view */
  }
}