@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: url("https://images.unsplash.com/photo-1558611848-73f7eb4001a1")
    no-repeat center center/cover;
  color: white;
  text-align: center;
}

/* Dark Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

/* HERO */
.hero {
  padding: 90px 20px;
}

.hero h1 {
  font-size: 55px;
  font-weight: 700;
  text-shadow: 0px 0px 25px red;
}

.hero p {
  font-size: 20px;
  color: #ddd;
}

/* BUTTONS Neon Glow */
.hero-buttons .btn {
  display: inline-block;
  margin: 12px;
  padding: 14px 22px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: 0.4s;
  box-shadow: 0px 0px 15px rgba(255,255,255,0.3);
}

.btn:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0px 0px 25px white;
}

.call { background: limegreen; }
.whatsapp { background: #25D366; }
.location { background: dodgerblue; }
.insta { background: #E1306C; }

/* SECTION */
.section {
  padding: 70px 20px;
}

/* Glassmorphism Cards */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  padding: 30px;
  width: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0px 20px 40px rgba(0,0,0,0.6);
  transition: 0.4s;
}

.card:hover {
  transform: rotateY(10deg) scale(1.08);
}

/* BMI Box */
.bmi-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 20px;
  width: 320px;
  margin: auto;
}

.bmi-box input {
  padding: 12px;
  margin: 10px 0;
  width: 90%;
  border-radius: 10px;
  border: none;
  outline: none;
}

.bmi-box button {
  padding: 12px 25px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  background: red;
  color: white;
  box-shadow: 0px 0px 15px red;
  transition: 0.3s;
}

.bmi-box button:hover {
  transform: scale(1.08);
}

/* Slider */
.slider img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  margin-top: 25px;
  box-shadow: 0px 0px 25px rgba(255,0,0,0.5);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  width: 340px;
  margin: auto;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 20px;
}

form input, textarea {
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
}

form button {
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: red;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  box-shadow: 0px 0px 15px red;
}

form button:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 25px;
  background: rgba(0,0,0,0.8);
  margin-top: 40px;
}
/* ✅ MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons .btn {
    display: block;
    width: 85%;
    margin: 12px auto;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 85%;
  }

  .slider img {
    width: 90%;
  }

  form {
    width: 90%;
  }

  .bmi-box {
    width: 90%;
  }
}
