/* GLOBAL SETTINGS */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f5faff;
  color: #222;
  line-height: 1.6;
}



/* HEADER */
header {
  background-color: #00a8e8;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 1.7rem;
  letter-spacing: 1px;
  font-weight: 600;
}



/* NAVBAR */
nav {
  background-color: #00334e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

nav .logo {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #00a8e8;
}

.highlight {
  background-color: #00a8e8;
  padding: 8px 18px;
  border-radius: 25px;
}



/* NEW HERO SECTION (IMAGE LEFT + TEXT RIGHT) */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 70px 50px;
  background: white;
}

.hero-left img {
  width: 330px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-right {
  max-width: 650px;
}

.hero-right h2 {
  font-size: 2.3rem;
  color: #00334e;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-right p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 25px;
}

.hero-right .explore-btn {
  background-color: #007bb8;
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-right .explore-btn:hover {
  background-color: #005f8f;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-left img {
    width: 70%;
  }

  .hero-right h2 {
    font-size: 1.6rem;
  }
}



/* PRODUCTS SECTION */
.products {
  text-align: center;
  padding: 60px 20px;
  background-color: #eef7fa;
}

.products h3 {
  font-size: 1.9rem;
  color: #00334e;
  margin-bottom: 40px;
  font-weight: 600;
}

.product-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.product {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  width: 270px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.product button {
  margin-top: 15px;
  background-color: #00a8e8;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.product button:hover {
  background-color: #007bb8;
}



/* WHY CHOOSE US */
.why {
  padding: 60px 20px;
  text-align: center;
}

.why h3 {
  color: #00334e;
  font-size: 1.9rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.why ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.why li {
  font-size: 1.15rem;
  margin-bottom: 12px;
  padding-left: 5px;
  color: #333;
}



/* QUALITY ASSURANCE */
.quality {
  background-color: #e3f5ff;
  padding: 40px 0;
  text-align: center;
}

.quality h3 {
  font-size: 1.9rem;
  color: #00334e;
  margin-bottom: 25px;
  font-weight: 600;
}

marquee img {
  height: 95px;
  width: 130px;
  margin: 0 30px;
  border-radius: 12px;
  border: 2px solid #00a8e8;
  padding: 5px;
  background: white;
}



/* CONTACT SECTION */
.contact {
  text-align: center;
  padding: 55px 20px;
  background: white;
}

.contact h3 {
  font-size: 1.9rem;
  color: #00334e;
  font-weight: 600;
}

.contact p {
  font-size: 1.1rem;
  margin: 8px 0;
  color: #444;
}



/* FOOTER */
footer {
  background-color: #00334e;
  color: white;
  text-align: center;
  padding: 22px 0;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}



/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  nav {
    padding: 12px 20px;
  }

  .hero img {
    max-width: 180px;
  }

  .product-list {
    flex-direction: column;
    align-items: center;
  }

  header {
    font-size: 1.4rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .products h3,
  .why h3,
  .quality h3,
  .contact h3 {
    font-size: 1.6rem;
  }
}
