
.top-banner {
  background: linear-gradient(90deg, #2386ff, #ff7b2b);
  padding: 90px 0 80px;
  color: #fff;
}

.top-banner h1 {
  font-size: 42px;
  line-height: 1.2;
}

.top-banner h1 span {
  color: #ffe6d5;
}

.top-banner p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  max-width: 600px;
}

.banner-buttons .btn {
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
}

.banner-img {
  max-width: 85%;
  animation: float 4s ease-in-out infinite;
}

/* Floating image animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .top-banner {
    padding: 70px 0;
  }

  .top-banner h1 {
    font-size: 32px;
  }

  .top-banner p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .banner-buttons .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Section spacing */
.steps-section{
  padding:60px 0;
}
.testimonials-section{
  padding:60px 0;
  background:#fff;
}

/* Contact Cards */
.contact-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 28px rgba(0,0,0,.08);
  padding:25px 20px;
  height:100%;
  transition:.3s;
}
.contact-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 40px rgba(0,0,0,.12);
}
.contact-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  font-size:28px;
  color:#fff;
  background:linear-gradient(135deg,#2386ff,#ff7b2b);
}

/* Contact Form */
.contact-form{
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 28px rgba(0,0,0,.08);
  padding:30px;
}
.contact-form .form-control{
  border-radius:12px;
  padding:10px 12px;
}
.contact-form button{
  background:linear-gradient(90deg,#2386ff,#ff7b2b);
  border:none;
  color:#fff;
  font-weight:600;
  padding:10px 30px;
  border-radius:30px;
}

.whatsapp-float {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, box-shadow .3s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  color: #fff;
}
