

body {
  background-color: #e9f3ff !important;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f8f9fa;
}

section {
  padding: 60px 0;
}

h2, h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.navbar-logo {
  width: 80px;
  height: auto;
}



header h1,
.bg-dark h1 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}


.card, .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}


.service-icon {
  font-size: 40px;
  color: #007bff;
  transition: transform 0.3s ease-in-out, color 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  color: #0056b3;
}


.cta-button,
.btn-primary,
.btn-outline-primary {
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cta-button {
  display: inline-block;
  color: #fff;
  background-color: #007bff;
  border: none;
  text-decoration: none;
}

.cta-button:hover,
.btn-primary:hover {
  background-color: #0056b3;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}


.form-heading {
  text-align: center;
  margin-top: 40px;
  font-size: 32px;
  color: #333;
}

.contact-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}


@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }

  .form-heading {
    font-size: 26px;
  }

  .cta-button,
  .btn-primary,
  .btn-outline-primary {
    font-size: 16px;
    padding: 10px 20px;
  }
}


section.bg-light-alt p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
}


.about-image {
  max-width: 100%;
  height: auto;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.bg-spark-light {
  background-color: #e9f3ff;
}
