/* -------------------- Global Styles -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

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

/* -------------------- Hero Section -------------------- */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  color: #fff;
}

/* Video background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}

/* Overlay for text contrast */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Navbar stays at the top */
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.cta-btn {
  background: #25D366;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #128C7E;
}

/* Center hero content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  display: inline-block;
  background: #25D366;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #128C7E;
}

/* -------------------- Categories Section -------------------- */
.categories {
  text-align: center;
  padding: 3rem 1rem;
}

.categories h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #222;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.category-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  background: white;
}

.category-card:hover {
  transform: scale(1.05);
}

.category-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.category-card h3 {
  background: #25D366;
  color: white;
  padding: 1rem;
}

/* -------------------- Contact Section -------------------- */
.contact {
  text-align: center;
  padding: 3rem 1rem;
  background: #f5f5f5;
}

.contact-btn {
  display: inline-block;
  margin-top: 1rem;
  background: #25D366;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #128C7E;
}

/* -------------------- Floating WhatsApp Button -------------------- */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 100;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float i {
  margin-top: 13px;
}

/* -------------------- Footer -------------------- */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* -------------------- Animations -------------------- */
@keyframes slideIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
