* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  border-bottom: 3px solid #5a5756;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #666;
}

.logo span strong {
  color: #333;
}

.navbar {
  display: flex;
  gap: 20px;
}
/* General Navbar Styles */
  
  /* Dropdown container */
  .dropdown {
    position: relative;
  }
  
  /* Dropdown link */
  .dropdown-toggle {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid white;
    transition: all 0.4s ease;
  }
  
  /* Dropdown menu (hidden by default) */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e3d9d9;
    min-width: 160px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  /* Dropdown links */
  .dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect for dropdown links */
  .dropdown-menu a:hover {
    background-color: #444;
  }
  
  /* Display the dropdown menu when hovering over the Products link */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* Optional: Change Products link appearance on hover */
  .dropdown-toggle:hover {
    background-color: #444;
  }
  

.navbar a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  background-color: #5a5756;
  color: white;
}
/* About Section */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #f8f9fa; /* Light background for better readability */
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  
  .about-text {
    flex: 1;
    padding: 20px;
    text-align: left;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
  }
  
  .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
/* Warehouse Section */
#warehouse {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff; /* Contrast background for variety */
  }
  
  .warehouse-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  
  .warehouse-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .warehouse-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .warehouse-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .warehouse-text {
    flex: 1;
    padding: 20px;
    text-align: left;
  }
  
  .warehouse-text h3 {
    font-size: 1.5 rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .warehouse-text p {
    font-size: 1.5 rem;
    line-height: 1.7;
    color: #555;
  }
   
  footer {
    background-color: #0b1114;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column; /* Stack the contact info and social section */
    align-items: center; /* Center everything */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centering the Contact Us section */
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column; /* Stack contact details vertically */
    align-items: center; /* Center align contact details */
}

.contact-details p {
    margin: 5px 0; /* Add margin for spacing */
    font-size: 1rem;
    text-align: center; /* Center text in contact details */
}

.contact-details a {
    color: #ffffff;
    text-decoration: underline;
}
.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  border-top: 1px solid #555; /* Adds a subtle line above the Rights Reserved section */
  padding-top: 10px;
}

/* Footer Social Section */
.footer-social {
    margin-top: 20px; /* Add spacing above social section */
    text-align: center; /* Center the Follow Us section */
}

.footer-social h3 {
    margin-bottom: 10px; /* Add spacing below heading */
    font-size: 1.5rem;
}

.footer-social ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-social ul li img:hover {
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        align-items: center;
        margin-top: 20px;
    }
}
  
  