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

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #000;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.3–0.6) for brightness */
  z-index: 5;
}


.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.hero-content h3 {
  margin-top: 10px;
  font-weight: 400;
  color: #ccc;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: 2px solid #973f91;
  background: linear-gradient(90deg, #973f91, #c3398e, #ea5870, #fbbd04);
}

/* DESC + VIDEO */
.desc-video {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  gap: 50px;
  flex-wrap: wrap;
}

.desc-text {
  flex: 1;
}

.desc-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.desc-video-container {
  flex: 1;
}

.desc-video-container video {
  width: 100%;
  border-radius: 10px;
}

/* VIDEO REEL */
.reel-section {
  padding: 50px 0;
  position: relative;
}

.video-reel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 0 10%;
}

.video-card {
  min-width: 250px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  cursor: pointer;
  position: relative;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* MODAL */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.video-modal video {
  width: 50%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

/* IMPORTANCE */
.importance {
  text-align: center;
  padding: 80px 15%;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 10% 80px 10%;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* PLACEMENT */
.placement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px 10%;
  flex-wrap: wrap;
}

.placement-img {
  flex: 1;
  max-width: 45%; /* ✅ Image takes less than half of the container */
}

.placement-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.placement-text {
  flex: 1;
  max-width: 45%; /* ✅ Text takes similar space */
}

.placement-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.placement-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
}

/* BANNER */
.banner img {
  width: 100%;
  object-fit: cover;
  height: 20px;
  margin-top: 50px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #333;
}

.footer .socials {
  margin-bottom: 15px;
}

.footer .socials a img {
  width: 30px;
  margin: 0 10px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.footer .socials a img:hover {
  filter: brightness(1) invert(0);
}
/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  /* HERO */
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content h3 {
    font-size: 1.2rem;
  }
  .cta-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  /* DESC + VIDEO */
  .desc-video {
    padding: 60px 5%;
    gap: 30px;
  }

  .desc-text h2 {
    font-size: 1.5rem;
  }

  /* VIDEO REEL */
  .video-reel {
    padding: 0 5%;
  }

  /* GALLERY */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5% 60px 5%;
    gap: 10px;
  }

  /* PLACEMENT */
  .placement {
    gap: 40px;
    padding: 60px 5%;
  }

  .placement-text h2 {
    font-size: 1.5rem;
  }

  .placement-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* HEADER */
  .header {
    padding: 15px 20px;
  }
  .nav {
    display: none;
  }
  /* Optional: Add burger menu later */
  
  /* HERO */
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content h3 {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  /* DESC + VIDEO */
  .desc-video {
    flex-direction: column;
    padding: 50px 5%;
  }

  .desc-video-container {
    width: 100%;
  }

  /* VIDEO REEL */
  .video-card {
    min-width: 180px;
  }

  /* PLACEMENT */
  .placement {
    flex-direction: column;
    text-align: center;
  }
  .placement-img, .placement-text {
    max-width: 100%;
  }
  .placement-text {
    margin-top: 30px;
  }

  /* GALLERY */
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* HERO */
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content h3 {
    font-size: 0.9rem;
  }
  .cta-btn {
    padding: 6px 15px;
    font-size: 0.8rem;
  }

  /* IMPORTANCE */
  .importance {
    padding: 50px 5%;
    font-size: 1rem;
  }

  /* FOOTER */
  .footer .socials a img {
    width: 25px;
    margin: 0 5px;
  }
}
/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 10%;
  z-index: 9999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

.whatsapp-float img {
  width: 80px;
  height: 80px;
  cursor: pointer;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px; /* distance from icon */
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.whatsapp-float a:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Tooltip disappear delay */
.whatsapp-float a:hover .whatsapp-tooltip {
  animation: hideTooltip 2s forwards;
}

@keyframes hideTooltip {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 15px;
    bottom: 20%;
  }
  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 20px; /* Prevent text from touching edges */
}

.hero-logo {
  width: 350px;
  max-width: 50vw; /* scales on smaller screens */
  margin-bottom: 60px;
  height: auto;
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 80px;
}

.cta-btn {
  display: inline-block;
  background: #ff7b00;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  margin-bottom: 150px;
}

.cta-btn:hover {
  background: #e76b00;
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 120px;
    margin-bottom: 15px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero-logo {
    width: 100px;
  }

  .cta-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
