body {
      font-family: 'Segoe UI', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    .navbar {
      background: #0d1b2a;
    }

    /*.hero {*/
    /*  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),*/
    /*              url('https://images.unsplash.com/photo-1518770660439-4636190af475');*/
    /*  background-size: cover;*/
    /*  color: white;*/
    /*  padding: 120px 0;*/
    /*}*/
    
    .hero img
    {
        width: 100%;
        height: 100%;
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 30px;
    }
    
.service-card {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 6px;
  max-width: 400px;
}

/* Top row (image + title) */
.service-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service-top img {
  width: 120px;
  height: 90px;
  object-fit: cover;
}

.service-top h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

/* Paragraph */
.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}    
    

    .service-box {
      padding: 20px;
      border-radius: 10px;
      transition: 0.3s;
      background: #f8f9fa;
    }
    
    .service-box img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

    .service-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

.review-box {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.review-box p {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

.review-box h6 {
  margin-top: 15px;
  font-weight: 600;
  color: #0d6efd;
}

    .cta {
      background: #1b263b;
      color: white;
      padding: 50px 0;
    }
    
    footer {
      background: #0d1b2a;
      color: white;
      padding: 20px;
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      font-size: 24px;
      padding: 12px 16px;
      border-radius: 50%;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      text-decoration: none;
      transition: 0.3s;
    }

    .whatsapp-float:hover {
      background: #1ebe5d;
      transform: scale(1.1);
    }


 .call-float {
      position: fixed;
      bottom: 60px;
      right: 20px;
      background: #0498C4;
      color: white;
      font-size: 24px;
      padding: 12px 16px;
      border-radius: 50%;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      z-index: 1002;
      text-decoration: none;
      transition: 0.3s;
    }

    .call-float:hover {
      background: #1ebe5d;
      transform: scale(1.1);
    }


.contact-section {
  background: #f8f9fa;
}

.section-title {
  font-weight: 700;
  font-size: 32px;
}

.contact-card {
  background: #fff;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  margin-right: 8px;
}

.map-container iframe {
  border-radius: 10px;
}

form .form-control {
  border-radius: 8px;
  padding: 10px;
}

button.btn-primary {
  border-radius: 8px;
  font-weight: 600;
}

.float-btn {
  position: fixed;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  line-height: 60px;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: pulse 1.8s infinite;
}

/* Call Button (Left) */
.call-btn {
  left: 20px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

/* WhatsApp Button (Right) */
.whatsapp-btn {
  right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Hover Effects */
.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0,0,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}
