/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #003366;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #002147;
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

/* Navigation */
nav {
  background-color: #003366;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  background-color: #003366;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00aced;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #003366, #0055aa);
  color: white;
  padding: 100px 20px;
  text-align: center;
  box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
}

/* Content Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section:nth-child(even) {
  background-color: #eaf2fb;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #002147;
}

/* Products Section */
#products {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

#products h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #002147;
}

.product-gallery {
  display: flex;
  justify-content: space-around; /* Space between products */
  align-items: center; /* Align items vertically */
  gap: 20px; /* Space between products */
  flex-wrap: nowrap; /* Prevent wrapping to a new line */
  overflow-x: auto; /* Allow horizontal scrolling if needed */
}

.product {
  flex: 0 0 auto; /* Prevent shrinking or growing */
  max-width: 200px;
  text-align: center;
}

.product img {
  width: 150px; /* Fixed width for all images */
  height: 150px; /* Fixed height for all images */
  object-fit: cover; /* Ensure images fit within the dimensions */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #002147;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
