/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* HERO SECTION */
.hero {
  height: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, #007BFF, #00C6FF);
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* FORM */
.form-container {
  background: white;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  max-width: 380px;
  margin: 20px auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h3 {
  margin-bottom: 15px;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
}

form input:focus {
  outline: none;
  border-color: #007BFF;
}

/* BUTTON */
form button {
  width: 100%;
  padding: 12px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover {
  background: #0056b3;
}

/* ABOUT */
.about {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.about p {
  margin-bottom: 15px;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.services h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.service-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* SERVICE CARD */
.service {
  background: white;
  padding: 25px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.service h4 {
  margin-bottom: 10px;
  color: #007BFF;
}

/* CTA SECTION */
.cta {
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

/* CTA BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #1ebe5d;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
  font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .form-container {
    width: 90%;
  }

  .service-box {
    flex-direction: column;
    align-items: center;
  }

  .service {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }
}