.slider-container1 {
  position: relative;
  width: 99%;
  margin: 5px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.slides-wrapper img.mySlides {
  width: 100%;
  display: none;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.slides-wrapper img.mySlides.active {
  display: block;
  opacity: 1;
}

.dots-container {
  text-align: center;
  margin-top: 10px;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: #28a745; /* Bootstrap green */
}

/* Responsive height for smaller devices */
@media (max-width: 768px) {
  .slides-wrapper img.mySlides {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .slides-wrapper img.mySlides {
    height: 150px;
  }
}

.mobile-menu-link.active {
  color: #28a745 !important;
}
.hamburger-icon {
  position: fixed;
  top: 10px;
  left: 8px;
  z-index: 1050;
  background: #28a745;
  border: none;
  color: white;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 18px;
}

.mobile-menu {
  position: fixed;
  top: 50px;
  left: 10px;
  right: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 1049;
  padding: 10px;
  animation: fadeInDown 0.3s ease-in-out;
}

.mobile-menu a {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Floating Social Bar */
.floating-social {
  position: fixed;
  top: 60%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  animation: slideIn 1s ease forwards;
  opacity: 0;
}

/* Individual Icon Style */
.floating-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* Hover Effects */
.floating-social a:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
  filter: brightness(1.15);
}

/* Brand Colors */
.messenger { background: #0084ff; }
.whatsapp  { background: #25d366; }
.phone     { background: #ff5e3a; }

/* Slide-in Animation */
@keyframes slideIn {
  from {
    transform: translate(-100px, -50%);
    opacity: 0;
  }
  to {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

/* Responsive (Mobile Adjust) */
@media (max-width: 768px) {
  .floating-social {
    right: 8px;
    gap: 12px;
  }
  .floating-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
