/* Primary color for icons */
:root {
  --primary-color: #8cc43c;
}
.normal {
  text-decoration: none;
  color: black;
}
.fixed-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Make sure it's on top of other content */
  background-color: #fff; /* Background color to avoid transparency */
}
nav {
  background: #ebebeb;
}

/* Font for navbar links */
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* Font for top header (phone, email, address) */
.top-header {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  background-color: #f8f9fa;
  padding: 0.5rem 0;
}
.top-header i {
  color: var(--primary-color); /* Icon color only */
  margin-right: 8px;
}
.scrolling-text {
  background-color: #8cc43c;
  color: white;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: bold;
}
.top-header a {
  color: #212529;
  text-decoration: none;
}
.top-header a:hover {
  text-decoration: underline;
}
.navbar-toggler-icon-custom {
  font-size: 1.5rem;
  color: #212529;
}
/* Button styling */
.button-primary {
  background-color: #8cc43c; /* Apply the primary color */
  color: white; /* White text for contrast */
  border: none;
  padding: 9px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px; /* Optional rounded corners */
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.button-primary:hover {
  background-color: #75a235; /* Slightly darker green on hover */
}
.button-primary:hover {
  background-color: #75a235; /* Slightly darker green on hover */
}
.feature-grid {
  /* background-color: #a5d630; */
  text-align: center;
  padding: 20px;
  margin: 10px;
  color: rgb(22, 22, 22);
  border-radius: 8px;
  font-weight: 500;
}

.feature-grid img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

/* Carousel container for 1:1 aspect ratio */
#featureCarousel {
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

/* Hide the carousel controls */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* Optional: Custom transition style for fade effect */
.carousel-item-next,
.carousel-item-prev,
.carousel-item-active {
  transition: opacity 0.6s ease;
}

/* ------------------------------- */

.contact-icons i {
  color: #8cc43c;
  font-size: 20px;
  margin-right: 10px;
}

.contact-section {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 5px;
}

.form-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .form-section {
    order: 1;
  }

  .contact-section {
    order: 2;
    margin-top: 20px;
  }
  .top-header {
    font-size: 8px;
  }
}

#navbarToggler i,
#dropdownIcon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

#navbarToggler i,
#dropdownIcon {
  font-size: 20px;
}
@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.beating-heart {
  animation: beat 1s infinite;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Adjust size for smaller screens (mobile) */
@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
  .bio {
    background-color: #ececec;
    border-radius: 17px;
  }
}
