/* Header and Logo */
header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px; /* Adjust the height as needed */
  width: auto;
}


/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #2c3e50;
}

a {
  text-decoration: none;
  color: #3498db;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  margin: 10px 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #3498db;
  color: #fff;
}

.btn-primary:hover {
  background: #2980b9;
}

.btn-secondary {
  background: #2c3e50;
  color: #fff;
}

.btn-secondary:hover {
  background: #34495e;
}

/* Hero Section */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeIn 1.5s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeIn 2s ease-in-out;
}

.cta-buttons {
  animation: fadeIn 2.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Us Section */
.about {
  padding: 80px 0;
  text-align: center;
}

.about p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Services Section */
.services {
  padding: 80px 0;
  text-align: center;
  background: #f9f9f9;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border-color: #3498db;
}

.service-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  background: #3498db;
  padding: 20px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.service-item:hover i {
  background: #2980b9;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-item p {
  font-size: 1rem;
  color: #666;
}

/* Services Section - Colorful Icons */
.service-item:nth-child(1) i {
  background: #e74c3c; /* Red for Food Distribution */
}

.service-item:nth-child(2) i {
  background: #2ecc71; /* Green for Non-Food Distribution */
}

.service-item:nth-child(3) i {
  background: #f1c40f; /* Yellow for Import & Export */
}

.service-item:nth-child(4) i {
  background: #9b59b6; /* Purple for Private Labeling */
}

/* Why Choose Us Section */
.why-us {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.why-item i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 20px;
}

.why-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.why-item p {
  font-size: 1rem;
  color: #666;
}

/* Products Section */
.products {
  padding: 80px 0;
  text-align: center;
  background: #f9f9f9;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border-color: #3498db;
}

.product-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  background: #3498db;
  padding: 20px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.product-item:hover i {
  background: #2980b9;
}

.product-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.product-item p {
  font-size: 1rem;
  color: #666;
}

/* Products Section - Colorful Icons */
.product-item:nth-child(1) i {
  background: #e67e22; /* Orange for Food Products */
}

.product-item:nth-child(2) i {
  background: #1abc9c; /* Teal for Beverages */
}

.product-item:nth-child(3) i {
  background: #34495e; /* Dark Blue for Non-Food Essentials */
}

.product-item:nth-child(4) i {
  background: #8e44ad; /* Purple for Specialty Items */
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  position: relative;
  background: #3498db;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.testimonial-text::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20px;
  border-width: 10px;
  border-style: solid;
  border-color: #3498db transparent transparent transparent;
}

.client-info {
  text-align: left;
}

.client-name {
  font-weight: bold;
  color: #2c3e50;
  margin-top: 10px;
}

/* Map Section */
.map {
  padding: 80px 0;
  text-align: center;
}

.map iframe {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  text-align: center;
  background: #3498db;
  color: #fff;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #34495e;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #3498db;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .service-grid, .product-grid, .why-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer Contact Info */
.footer-contact {
  text-align: left;
}

.footer-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-contact p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact p i {
  margin-right: 10px;
  color: #3498db;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #34495e;
}
/* Thank You Section */
.thank-you {
  text-align: center;
  padding: 100px 0;
}

.thank-you h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.thank-you .btn-primary {
  margin-top: 20px;
}