/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Questrial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #004488;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  gap: 1rem;
}

.nav-menu ul {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #0077cc;
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #004488;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links a {
    padding: 1rem;
    text-align: center;
    width: 100%;
  }

  .hamburger {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url('images/Hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  background-color: #0077cc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #005da3;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.content-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* About Us Section */
#about {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  flex: 1 1 300px;
}

.about-content p {
  flex: 2 1 400px;
  font-size: 1.2rem;
  text-align: left;
}

/* Products Section */
#products {
  background-color: #e8f3ff;
  padding: 4rem 2rem;
  text-align: center;
}

#products h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #004488;
}

#products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

#products .product-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  max-width: 100%;
  text-align: left;
}

#products .product-item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 1rem;
}

#products .product-item strong {
  font-size: 1.3rem;
  color: #004488;
  display: block;
  margin-bottom: 0.5rem;
}

#products .product-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

/* Industries Section */
.industries-section {
  background-color: #f3ffe8;
  padding: 4rem 2rem;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.industry-item {
  flex: 1 1 calc(30% - 1rem);
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 1rem;
}

.industry-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.industry-item strong {
  display: block;
  font-size: 1.2rem;
  color: #004488;
  margin-bottom: 0.5rem;
}

.industry-item p {
  padding: 0.5rem;
  font-size: 1rem;
  color: #555;
}

/* Our Commitment Section */
#commitment {
  background-color: #e8f3ff;
  padding: 4rem 2rem;
  text-align: center;
}

#commitment p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  background-color: #004488;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-section li {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-form {
  background-color: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #0077cc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005da3;
}

/* Footer Styles */
footer {
  padding: 2rem 0;
  background-color: #002a5c;
  color: #fff;
  text-align: center;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

footer ul a {
  color: #fff;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

footer ul a:hover {
  background-color: #0077cc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .industry-grid {
    flex-direction: column;
    align-items: center;
  }

  .industry-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  #products .products-grid {
    grid-template-columns: 1fr;
  }
}
