/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styling */
.navbar {
  background-color: #808080; /* Grey */
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.navbar .logo {
  height: 50px;
}

.navbar nav a,
.navbar .dropdown {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  color: #333;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #013a70;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero-section {
  background-color: #f8f9fa;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.text-section {
  flex: 1 1 500px;
  padding: 20px;
}

.text-section h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 10px;
}

.text-section p {
  font-size: 18px;
  color: #444;
}

.image-section {
  flex: 1 1 400px;
  padding: 20px;
  text-align: center;
}

.image-section img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
  .navbar,
  .navbar-collapse,
  .navbar-toggler,
  .dropdown-menu {
    background-color: #808080 !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .text-section h2 {
    font-size: 24px;
  }

  .text-section p {
    font-size: 16px;
  }

  .image-section {
    padding-top: 10px;
  }
}

/* Product Section */
.products {
  padding: 40px;
  background: #fff;
}

.product-card {
  display: inline-block;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  text-align: center;
}

.product-card img {
  width: 200px;
  height: auto;
}

.product-card:hover {
  transform: scale(1.05);
}

/* Footer Styling */
footer,
.footer,
.main-footer {
  background-color: #808080; /* Grey */
  color: white;
  padding: 20px;
  text-align: center;
}

.footer a,
footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover,
footer a:hover {
  text-decoration: underline;
}
