body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #222;
}

header {
  background: #003366;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
}

.navbar-logo {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.navbar-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #ff9900;
}

.hero {
  background: linear-gradient(90deg, rgba(0,51,102,0.7) 60%, rgba(0,85,165,0.7) 100%), url('/ProductImages/ab-475620.webp') center/cover no-repeat;
  color: #fff;
  padding: 5rem 2rem 4rem 2rem;
  text-align: center;
  min-height: 60vh;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,51,102,0.3);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #e67c00;
}

.home-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
}

.home-gallery img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.home-gallery img:hover {
  transform: scale(1.05);
}

.home-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}

footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  font-size: 1rem;
  margin-top: 3rem;
}
