.cta-container {
  position: fixed;
  right: 10px;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  background: none; /* Ensure no background */
  /* pointer-events: none; Prevent container from interfering */
}

.cta-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background-color: #25d366; /* WhatsApp Green */
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.cta-container a.call {
  background-color: #c9d3dd; /* Call Button Blue */
}

.cta-container a:hover {
  transform: scale(1.1);
}
.cta-container img {
  width: 50px; /* Increase the image size */
  height: 50px; /* Increase the image size */
  object-fit: contain; /* Ensure the image maintains its aspect ratio */
  transition: transform 0.2s;
}

.cta-container a:hover img {
  transform: scale(1.2); /* Zoom effect on hover */
}
/* navbar */
.hide-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* animation hamburger close  */
/* .nav-hover:hover {
    opacity: 1;
    color: var(--green);
  } */

.nav-dropdown:hover .nav-item-title {
  color: var(--green);
  opacity: 1;
}
.nav-item-title {
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}


.custom-select option {
  padding: 10px;
  transition: background 0.3s ease;
}

.custom-select option:hover {
  background: #f1f5fb;
}






