
	@keyframes slideshow {
			10%, 25% {
				background-image: url('images/about-2.JPG');
				opacity: 1;
			}
			25%, 50% {
				background-image: url('images/about-2.jpg');
				opacity: 1;
			}
			50%, 75% {
				background-image: url('images/about-4.jpg');
				opacity: 1;
			}
			75%, 100% {
				background-image: url('images/about-5.jpg');
				opacity: 1;
			}
		}
  

  .hero-wrap {
    background-size: cover;
    background-position: center;
    animation: slideshow 20s linear infinite;
    background-repeat: no-repeat;
    position: relative;
    transition: background-image 1s ease-in-out;
  }

  .hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.587);
    z-index: 1;
  }

  .hero-wrap .container {
    position: relative;
    z-index: 2;
  }

  /* Additional smooth fade effect */
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  .hero-wrap .slider-text {
    animation: fadeIn 1.5s ease-out;
  }

.hero-contact {
  display: inline-block;
  background: rgb(244, 242, 242);
*/*"background: linear-gradient(135deg, #05ee09da, #0569f6);"*/*
  color:white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.449);
  transform: translateY(0);
  transition: all 0.3s ease;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}



.hero-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 15px rgba(255, 255, 255, 0.3);
}

.hero-contact:hover::before {
  opacity: 1; /* Make the text visible on hover */
  top: 0; /* Keep the text in place during hover */
}

.hero-contact .phone-icon {
  margin-right: 10px;
  color: white;
font-size: 2.5em;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

.hero-contact .call-now {
  animation: pulse 2s infinite;
  display: inline-block;
color: #f89007;
font-size: 2.5em;
}

.hero-contact .phone-link {
  color: rgb(255, 0, 0);
  font-weight: bold;
  text-decoration: none;
  font-size: 5.5em; /* Adjust the font size */
}

.hero-contact {
  display: inline-block;
  background: transparent; /* Transparent background */
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  outline: 2px solid #ffffff; /* Outline color for the entire container */
  transition: all 0.3s ease;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.hero-contact .phone-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 2.5em;
  
  padding: 5px 10px;
  border-radius: 7px;
  transition: all 0.3s ease;
}

.hero-contact .whatsapp-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2em;
  display: inline-block;
  margin-top: 10px;
  background-color: #25d366; /* WhatsApp green */
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  line-height: 2em;
  outline: 1px solid #25d366; /* Outline for WhatsApp link */
  transition: all 0.3s ease;
}

.hero-contact .whatsapp-link:hover {
  background-color: #0cbd3bb8; /* Darker green for hover */
  outline-color: #128c7e; /* Darker outline on hover */
}

.hero-contact .whatsapp-link i {
  margin-right: 8px; /* Add space between the icon and text */
  font-size: 1.3em;
}

.hero-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
  outline-color: #4ecdc4; /* Change outline color on hover */
}

.hero-contact .phone-icon {
  margin-right: 10px;
  color: white;
text-shadow: black;
}

/* Fixed WhatsApp icon at the top-right */


    /* Style for the WhatsApp button */
    .whatsapp-button {
  position: fixed;
  top: 50%; /* Position at the vertical center */
  right: 20px;
  z-index: 9999;
  transform: translateY(-50%); /* Offset the element's position to exactly center it */
}

.whatsapp-link {
  background-color: #25d366; /* WhatsApp green color */
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-link:hover {
  background-color: #128c7e; /* Darker shade of green on hover */
}

.whatsapp-icon {
  width: 30px; /* Adjust icon size */
  height: 30px; /* Adjust icon size */
  margin-right: 10px; /* Space between icon and text */
}

/* Optional: If you want to add some spacing or responsiveness */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 10px;
    right: 10px;
    top: auto; /* Reset top for mobile */
    transform: none; /* No vertical centering */
  }
}