  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #fff;
    background: #000;
  }

  .hero {
    position: relative;
    height: 100vh;
    background: url('images/banner.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .lead-form input, 
  .lead-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }

  .lead-form button {
    background: linear-gradient(90deg, #ff0057, #ff7b00);
    padding: 14px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
  }

  .lead-form button:hover {
    opacity: 0.9;
  }

  .benefits {
    padding: 50px 20px;
    background: #111;
  }

  .benefits h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
  }

  .benefit {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }

  .benefit img {
    width: 300px;
    margin-bottom: 15px;
  }

  footer {
    padding: 20px;
    background: #000;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    
  }


  /* bottom click to action icons  */
  .whatsapp-btn, .call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 15px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.call-btn {
  bottom: 70px; /* so it doesn't overlap WhatsApp button */
  background: #ff4d4d;
}

.whatsapp-btn:hover, .call-btn:hover {
  transform: scale(1.05);
}


/* offer section  */
.special-offer {
  background: #ffe5b4;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.special-offer h2 {
  color: #d9534f;
  margin-bottom: 10px;
}
.countdown {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
  color: #ff0000;
}
.order-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
}
.order-btn:hover {
  background: #1da851;
}


