* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0e1b3d;
  color: #fff;
  line-height: 1.6;
}

/* HEADER */
.header {
  text-align: center;
  padding: 40px 10%;
  background: #0b1633;
}

.header h1 {
  font-size: 48px;
  color: #f5d88a;
}

.header p {
  letter-spacing: 2px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
}

.hero-text {
  max-width: 50%;
}

.hero-text h2 {
  font-size: 40px;
  color: #f5d88a;
}

.hero-text p {
  margin: 20px 0;
}

.hero-img img {
  max-width: 350px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.contact p a{color:#fff !important; text-decoration: none;}
/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #f5d88a;
  color: #0e1b3d;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}
.hero{background:#000000;}
.btn.dark {
  background: #fff;
  color: #0e1b3d;
}
.distributor p{margin-bottom:25px;}
/* FEATURES */
.features {
  background: #fff;
  color: #333;
  padding: 70px 10%;
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature h3 {
  color: #0e1b3d;
  margin-bottom: 10px;
}

/* DETAILS */
.details {
  padding: 70px 10%;
  text-align: center;
}

.details ul {
  list-style: none;
  margin-top: 20px;
}

.details li {
  margin: 10px 0;
  font-size: 18px;
}

/* BENEFITS */
.benefits {
  background: linear-gradient(135deg, #13285c, #0e1b3d);
  padding: 70px 15%;
  text-align: center;
}

/* DISTRIBUTOR */
.distributor {
  background: #f5d88a;
  color: #0e1b3d;
  padding: 70px 10%;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 60px 10%;
  text-align: center;
}

/* FOOTER */
footer {
  background: #050b1d;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* GALLERY */
.gallery {
  background: #ffffff;
  color: #0e1b3d;
  padding: 80px 10%;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.slider {
  position: relative;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 27, 61, 0.8);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
}

.nav.prev {
  left: 15px;
}

.nav.next {
  right: 15px;
}

.nav:hover {
  background: #f5d88a;
  color: #0e1b3d;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-img {
    margin-top: 40px;
  }
}
