    body {
      font-family: 'Segoe UI', sans-serif;
    }

    .cta-section {
      background-color: #2563eb;
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .cta-section h2 {
      font-weight: 700;
    }

    .cta-section p {
      margin-top: 15px;
      font-size: 1.1rem;
    }

    .cta-section .btn {
      margin: 10px;
      padding: 12px 30px;
      border-radius: 6px;
    }

    .contact-form-section {
      padding: 60px 0;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      border-radius: 5px;
    }

    .footer {
      background-color: #0f172a;
      color: white;
      padding-top: 50px;
    }

    .footer a {
      color: #ffffff;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .footer i {
      font-size: 1.2rem;
    }

    .footer hr {
      border-top: 1px solid #334155;
    }

    .footer .social-icons a {
      margin-right: 10px;
    }

    /* Hover effect for service cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Icon transition */
.service-card .icon {
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .icon {
  color: #0d6efd; /* Bootstrap primary color */
  transform: scale(1.2);
}

/* Card hover lift and shadow */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Icon zoom and color transition */
.product-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}
.product-card:hover .product-icon {
  transform: scale(1.2);
  color: #0d6efd; /* Bootstrap primary */
}

.whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .whatsapp-float img {
      width: 60px;
      height: 60px;
      transition: transform 0.3s ease;
    }

    .whatsapp-float img:hover {
      transform: scale(1.1);
    }

    .hero-section {
      background: url('images/hero2.jpg') no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 120px 0;
    }

    .hero-overlay {
      background-color: rgba(0, 0, 0, 0.5);
      padding: 60px 0;
    }


 