.contact-btn {
  background: linear-gradient(45deg, #3b5998, #1877f2);
  /* Facebook-like blue gradient */
  color: #ffffff;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  text-decoration: none;
}

/* Contact Button Hover Effect */
.contact-btn:hover {
  background: linear-gradient(45deg, #2c437a, #1454c0);
  border-color: #ffffff;
  transform: scale(1.05);
}

/* WhatsApp Button Style */
.chat-btn {
  background: linear-gradient(45deg, #25d366, #128c7e);
  /* WhatsApp gradient */
  color: #ffffff;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.chat-btn:hover {
  background: linear-gradient(45deg, #1da851, #0e6b5c);
  /* Darker WhatsApp gradient */
  border-color: #ffffff;
  transform: scale(1.05);
}

/* Add Hover Effect Animation */
.contact-btn:hover,
.chat-btn:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-btn,
  .chat-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .contact-btn,
  .chat-btn {
    font-size: 12px;
    padding: 8px 14px;
    text-align: center;
  }

  .mobile-view-service {
    gap: 20px;
  }
}

/* auto slider banner */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.6em 1em;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.carousel-slides {
  display: flex;
  transition: transform 1s ease-in-out;
  height: 100%;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.r-container.slider {
  max-width: 1140px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 1em;
}

.slide-content {
  max-width: 768px;
  z-index: 2;
}

.text-title {
  font-size: 2.5rem;
  color: white;
  margin: 0 0 0.5em;
}

.f-18 {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.5em;
}

@media (max-width: 768px) {
  .text-title {
    font-size: 1.8rem;
  }

  .f-18 {
    font-size: 1rem;
  }

  .r-container.slider {
    text-align: center;
    justify-content: center;
  }

  .carousel-container {
    position: relative;
    overflow: hidden;
    height: 40vh;
  }

  .carousel-btn {
    padding: 0em 0.2em;
  }
}

.text-content-center {
  /* text-align: center; */
}

@media only screen and (max-width: 600px) {
  .dropdown-item {
    text-wrap: wrap;
  }
}
