* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: #111;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.4s;
}
nav h1 {
  font-size: 20px;
  color: gold;
}
nav .part2 h4 {
  display: inline-block;
  margin-left: 20px;
}
nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}
nav a:hover {
  color: gold;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.cta-button {
  padding: 10px 20px;
  background: gold;
  color: #111;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}
.about, .shop-intro, .product-gallery, .contact-us {
  padding: 80px 40px;
  text-align: center;
}
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about img {
  max-width: 300px;
  border-radius: 10px;
}
.product-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.product-item {
  background: #222;
  padding: 15px;
  border-radius: 10px;
}
.product-item img {
  width: 100%;
  border-radius: 10px;
}
.product-info {
  margin: 10px 0;
  color: gold;
}
.whatsapp-button {
  background: gold;
  padding: 8px 12px;
  border-radius: 5px;
  color: #111;
  text-decoration: none;
}
.contact-us form {
  max-width: 400px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
}
.contact-us input, .contact-us textarea {
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: none;
}
.contact-us button {
  background: gold;
  border: none;
  padding: 10px;
  font-weight: bold;
}
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  /* color: #fff; */
}
.footer-links a {
    text-decoration: none;
    color: #787070;
}
.footer-links a:hover,
.footer-links a:active {
    color: gold;
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 999;
  text-decoration: none;
}
.bilalport  a {
   text-decoration: none;
    color: #169166;
}

.bilalport  a:hover{
    color: gold;
}
/* mob css */
/* Responsive Styles */
@media (max-width: 768px) {
  nav h1 {
    font-size: 16px;
  }
  .hero-content h1 {
    font-size: 28px;
    padding: 0 10px;
  }
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about img {
    margin-top: 20px;
    max-width: 80%;
  }
  .shop-intro img {
    width: 100%;
    border-radius: 10px;
  }
  .contact-us form {
    width: 100%;
    padding: 0 15px;
  }
  .map-container iframe {
    width: 100% !important;
    height: 300px !important;
  }
}

/* Navigation for mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background: gold;
  margin: 4px 0;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  nav .part2 {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
    text-align: right;
  }
  nav .part2 h4 {
    margin: 15px 0;
  }
  nav .part2.active {
    display: flex;
  }
}
