

    /* Hero Section */
    .hero {
      height: 80vh;
      background: linear-gradient(rgba(15,28,46,0.7), rgba(15,28,46,0.7)),
        url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce");
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .hero h1 {
      font-size: 42px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 18px;
      color: #ddd;
    }
#about h2 {
    color: #0f1c2e;
  }

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }

  .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse 1.8s infinite;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Slightly smaller on mobile */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
}

/* .logo{
    width: 10%;
} */
.img-fluid{
    height: 500px !important;
}