* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: #0b2c5d; */
  background: white;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  border-radius: 120px;
}

/* LINKS (Desktop) */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: black;
  text-decoration: none;
}

/* HAMBURGER (Hidden on desktop) */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: black;
  margin: 5px 0;
  border-radius: 2px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: whitesmoke;
    flex-direction: column;
    text-align: center;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .hamburger {
    display: block;
  }
}

nav a {
  /* color: white; */
  color: black;
  margin: 0 15px;
  text-decoration: none;
  position: relative;
}

nav a:hover{
  /* text-decoration: underline; */
  /* color:#F7B529; */
  color: blue;
  
}

nav a::after{
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  /* background: blue;  */
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

nav .btn {
  background: #d4af37;
  padding: 6px 12px;
  border-radius: 4px;
  color: #000;
}

.hero {
  background-color: rgb(37, 37, 108);
  /* background: url("AY_SULTANAH-removebg-preview.png") center/cover no-repeat;  */
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 42px;
}

.hero h2 {
  color: #ffd700;
}

.hero span {
  background: red;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.tagline {
  margin-top: 15px;
  font-weight: bold;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 10px;
  padding: 20px;
}

.image-row img {
  width: 100%;
  border-radius: 10px;
}

.info {
  background: #0b2c5d;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.products {
  padding: 40px 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
}

.product-card h3 {
  padding: 15px;
  background: #0b2c5d;
  color: white;
}

footer {
  background: #0b2c5d;
  color: white;
  text-align: center;
  padding: 20px;
}

.copy {
  font-size: 12px;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }
}