/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #222;
  background: #fff;
  line-height: 1.6;

}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* Center the navbar */
}

/* Logo */
.logo img {
  height: 55px;
  width: auto;
}

/* Navigation links styling */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #b40000;
}

/* Hamburger menu styling */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: all 0.3s;
}

/* Mobile view - hide the nav links and show hamburger */
@media (max-width: 900px) {
  nav {
    display: none;  /* Hide navigation links by default */
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  nav.active {
    display: flex; /* Show the nav links when the hamburger is clicked */
  }
  
  .hamburger {
    display: flex; /* Show hamburger on mobile */
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
  }
}/* HERO SECTION */
.hero {
  background: #F2F0F0;
  padding: 80px 60px;
  border-bottom: 1px solid #eee;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 600px;
  height: auto;
  object-fit: contain;
}

/* Button */
.btn {
  background: #b40000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-outline:hover {
  background: #fff;
  color: #b40000;
}

/* ABOUT SECTION */
.about-section {
  background: #bfbfbf;
  padding: 80px 0;
  position: relative;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #b40000;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  gap: 40px;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}
.about-text p {
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 16px;
}
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 10px;
  background: #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* PRODUCTS */

.product-container {
  
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  gap: 40px;
}

.products {
  text-align: center;
  padding: 80px 20px;
align-items: center;
text-align: left;
}
.products h2 {
  color: #b40000;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
/* FEATURES */
.feature-container {
  
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  gap: 40px;
}

.features {
  background: #000000;  /* Red background for the section */
  color: #fff;
  padding: 80px 20px;
  text-align: left;
}

.features h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;

}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 items per row */
  gap: 40px;
  margin-top: 30px;

}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;  /* Space between icon and text */
  background: #000000;  /* Red background for each feature item */
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background-color: #000000;  /* Darker red on hover */
}

.feature-item i {
  font-size: 30px;  /* Icon size */
  color: #b40000;  /* White icons */
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;  /* White text */
}

.feature-item i,
.feature-text {
  flex-shrink: 0;  /* Prevent shrinking of icon and text */
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);  /* 2 items per row on smaller screens */
  }
}
@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;  /* 1 item per row on mobile screens */
  }
}

/* CERTIFICATIONS */
.certifications {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}
.certifications h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.certifications p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cert-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cert-item {
  background: #fff;
  border: 2px solid #b40000;  /* Red border */
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  color: #111;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cert-item:hover {
  background-color: #b40000;  /* Red background on hover */
  color: #fff;  /* White text on hover */
}
/* CTA */
.cta {
  background: #b40000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-buttons {
  margin-top: 30px;
}

/* FOOTER */
.footer-container {
  
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  
}

footer {
  background: #111;  /* Dark background */
  color: #ddd;  /* Light text color */
  
  text-align: left;

}

.footer-content {
  display: flex;
  flex-wrap: wrap;  /* Allow wrapping of content for smaller screens */
  justify-content: center;  /* Center the content horizontally */
  gap: 40px;  /* Space between sections */

  margin-bottom: 40px;
padding: 0 20px;
}

.footer-info, .footer-links, .footer-social {
margin-top: 40px;
  flex: 1;
  min-width: 200px;  /* Ensures the columns don't shrink too much */
  text-align: left;  /* Center-align text inside each section */
}

.footer-info h3 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.footer-info p {
  font-size: 16px;
  margin: 5px 0;
}

.footer-links h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #ddd;
  margin-top: 8px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #b40000;  /* Red on hover */
}

.footer-social h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.footer-social a {
  display: block;
  color: #ddd;
  margin-top: 8px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #b40000;  /* Red on hover */
}

.footer-copy {
  font-size: 14px;
  color: #777;
  margin-top: 40px;
  text-align: center;  /* Center the copyright text */
}

/* Red Stripe at the top */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #b40000;
}}/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  nav.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-image {
    justify-content: center;
    margin-bottom: 30px;
  }
  .hero-image img {
    width: 200px;
  }
  .hero-text h1 {
    font-size: 30px;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-section::before {
    width: 100%;
    height: 5px;
  }
  .about-image img {
    margin-top: 30px;
  }
}
