/* Solid Background for the Body */
body {
  background-color: #f8f9fa; /* Light background color */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure the body takes full height */
  margin: 0;
}

/* Spacer Between Sections */
.spacer {
  height: 10px; /* Add space between sections */
  background-color: #e9ecef; /* Light separator color */
}

.header-section {
  padding-bottom: 20px;
  background-color: #ffffff; /* White background for the header */
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow effect */
}

.main-section {
  padding-top: 20px;
  background-color: #ffffff; /* White background for the main content */
  flex-grow: 1; /* Make the main content grow and take available space */
}

footer {
  background-color: #ffffff; /* White background for the footer */
  padding: 20px;
}

/* Footer Bottom Section - Dark Background */
.footer-bottom {
  background-color: #343a40; /* Dark background for footer bottom */
  width: 100%; /* Full-width */
  bottom: 0;
  left: 0;
}

.footer-bottom p {
  color: #fff;
  font-size: 0.9rem;
}

/* Gradient Wave Animation for Cards */
.gradient-card {
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
  background: linear-gradient(45deg, #ff6ec7, #ff9a8b, #a1c4fd, #c2e9fb);
  background-size: 400% 400%;
  animation: gradientWave 10s ease infinite;
  max-width: 300px;  /* Smaller card size */
  margin: 0 auto;
}

.card-link {
  text-decoration: none;
}

.card:hover {
  transform: scale(1.05); /* Slightly enlarge the card when hovered */
}

/* Social Media Icons */
.social-link {
  margin: 0 10px;
}

.social-icon {
  font-size: 1.5rem; /* Larger icons */
  color: #333; /* Default icon color */
  transition: color 0.3s ease;
}

.social-link:hover .social-icon {
  color: #ff6ec7; /* Hover effect color change */
}

/* WhatsApp Button Icon */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.whatsapp-icon {
  font-size: 2rem;
  color: white;
}

/* Contact Info */
.contact-info p {
  margin: 0.5rem 0;
  text-align: justify;
}

h2 {
  font-family: 'Arial', sans-serif;
  color: #333;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
}

@keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Adjust layout for small screens */
@media (max-width: 767px) {
  .card-body {
    padding: 1rem;
  }

  .row {
    margin-top: 2rem;
  }

  .social-link {
    margin: 0 5px;
  }
}
