body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
 
 .top-bar {
  background-color: #00264d;
  color: white;
  padding: 16px 0;
  text-align: center;
}
 
.brand-name {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hero {
  position: relative;
  background-image: url('images/hero.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 500px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
 
.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark transparent overlay */
  padding: 40px;
  width: 100%;
}
 
.company-name {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}
 
.company-name span {
  color: #00c3ff; /* accent color */
}
 
.hero h1 {
  font-size: 28px;
  margin-top: 10px;
  font-weight: 600;
}
 
.hero p {
  margin-top: 10px;
  font-size: 16px;
}
 
.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #00c3ff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
 
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
 
.hero .btn {
  background: #0047ab;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}
 
.about,
.products,
.contact {
  padding: 3rem 5%;
  background: #fff;
}
 
.products {
  background: #f2f2f2;
}
 
.products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
 
.products .product img {
  width: 100%;
  height: auto;
}
 
.products .product p {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: bold;
}

.products .product-category h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: ##0047ab;
}
 
.contact {
  background: #fff;
}
 
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}
 
input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
 
button {
  background: #0047ab;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
 
.contact-details {
  margin-top: 2rem;
}
 
.contact-details i {
  margin-right: 0.5rem;
}
 
.social-icons {
  margin-top: 1rem;
}
 
.social-icons a {
  margin-right: 1rem;
  font-size: 1.25rem;
  color: #0047ab;
  text-decoration: none;
}
