body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  background: #8abaeb;
  color: rgb(73, 229, 151);
  padding: 1rem 5rem;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.menu a {
  margin: 0 0.8rem;
  color: black;
  text-decoration: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1;
  max-height: 300px;
  overflow-y: auto;
  width: 220px;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hero {
  padding: 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #003366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 2rem;
}

.service-sub {
  background: #f9f9f9;
  margin-bottom: 1.5rem;
  border-left: 5px solid #2563eb;
  padding: 1rem;
}

.footer {
  text-align: center;
  padding: 1rem;
  background: #8abaeb;
  color: white;
}

form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

form button {
  background: #003366;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 24px;
  color: white;
  border: none;
  margin-right: 1rem;
}

.menu-links {
  display: flex;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }

  .menu-links a {
    padding: 1rem;
    border-bottom: 1px solid #444;
  }

  .menu.show .menu-links {
    display: flex;
  }
}

.product-img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.services-grid {
  background: #fbeeee;
  text-align: center;
  padding: 3rem 2rem;
}

.services-grid .subtitle {
  color: #555;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
  background: #fff;
}

.product-info h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.product-info a {
  color: #e60000;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}


.services-showcase {
  background-color: #fceeee;
  padding: 4rem 2rem;
  text-align: center;
}

.services-showcase .subtitle {
  margin-top: -1rem;
  color: #555;
  font-size: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h4 {
  margin: 0.75rem 0 0.25rem;
  font-size: 1.1rem;
}

.product-card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #333;
}

.about-section {
  background-color: #fff4f4;
  padding: 4rem 2rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-content {
  flex: 1 1 55%;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-tagline {
  font-size: 1.2rem;
  color: #e40000;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}

.hero-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 50%;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #e40000;
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #c30000;
}

.hero-image {
  flex: 1 1 45%;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}
.certificates-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.certificates-gallery img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.certificates-gallery img:hover {
  transform: scale(1.05);
}

.certificate-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  background-color: #f9f9f9;
}

.certificate-item img {
  max-width: 200px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.certificate-description h4 {
  margin: 0 0 8px 0;
  font-size: 1.1em;
}

.certificate-description p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* adds space between each menu link */
  align-items: center;
}

.menu-links a {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.menu-links a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}