body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

header {
  background-color: #2e0202;
  color: white;
  padding: 20px;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

nav li {
  cursor: pointer;
}

.hero {
  height: 100vh;
  background-image: url('Images/herobg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* ✅ dark overlay for text clarity */
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
}


.hero-text button {
  background-color: #00c853;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.featured-products {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.featured-products h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  color: #002244;
  margin-bottom: 40px;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  background-color: #f0f0f0;
  padding: 20px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-image {
  background-color: #cfd8dc;
  height: 150px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #607d8b;
  font-size: 14px;
}

.product-card h3 {
  font-size: 20px;
  color: #002244;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.product-card button {
  background-color: #00c853;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
}

.about {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-image {
  background-color: #cfd8dc;
  width: 300px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #607d8b;
  font-size: 14px;
}

.about-text {
  max-width: 500px;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: #002244;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}
/* Existing styles above remain unchanged */

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

.advantages h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  color: #002244;
  margin-bottom: 40px;
}

.advantage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.advantage-card {
  background-color: #f0f0f0;
  width: 180px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.advantage-icon {
  font-size: 32px;
  color: #00c853;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 16px;
  color: #333;
}


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

.applications h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  color: #002244;
  margin-bottom: 40px;
}

.application-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.application-card {
  background-color: #ffffff;
  width: 180px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.application-icon {
  font-size: 32px;
  color: #00c853;
  margin-bottom: 10px;
}

.application-card p {
  font-size: 16px;
  color: #333;
}


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

.catalog h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  color: #002244;
  margin-bottom: 40px;
}

.catalog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.catalog-card {
  background-color: #f0f0f0;
  width: 200px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.catalog-image {
  background-color: #cfd8dc;
  height: 120px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #607d8b;
  font-size: 14px;
}

.catalog-card h3 {
  font-size: 18px;
  color: #002244;
}
.support {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.support h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  color: #002244;
  margin-bottom: 30px;
}

.support-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  color: #333;
}

.support-list li {
  margin-bottom: 15px;
}
.support {
  padding: 60px 20px;
  background-image: url('images/supportbg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

.support::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 34, 68, 0.7); /* blue overlay */
  z-index: 0;
}

.support h2,
.support-list {
  position: relative;
  z-index: 1;
  color: white; /* ✅ ensures all text is white */
}

.support h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.support-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.support-list li {
  margin-bottom: 15px;
}
.contact {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  color: #002244;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #00c853;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.contact-info {
  max-width: 300px;
  text-align: left;
  font-size: 16px;
  color: #333;
}

.map-placeholder {
  background-color: #cfd8dc;
  height: 150px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #607d8b;
  font-size: 14px;
  border-radius: 4px;
}
.footer {
  background-color: #002244;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #00c853;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.footer-social span {
  margin: 0 8px;
  font-size: 18px;
  color: #ffffff;
}

.footer-copy {
  margin-top: 15px;
  font-size: 14px;
  color: #cccccc;
}
/* Button hover effect */
button:hover {
  background-color: #009624;
  transition: background-color 0.3s ease;
}

/* Product card hover effect */
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Footer link hover */
.footer-links a:hover {
  text-decoration: underline;
  color: #ffffff;
  transition: color 0.3s ease;
}
