.icon-media- {
      border: 1px solid white !important;
      padding: 15px;
      padding-top: 10px;
      background: #fff;
      color: #575a49;

   }
   .icon-media-:hover {
      border-end-end-radius: 50px;

   }
   /* FLOATING SIDEBAR */
   .sticky-button ul {
      clear: both;
      position: fixed;
      z-index: 9999;
      display: block;
      list-style-type: none;
      right: -3.2em;
      top: 50%;
      -webkit-animation: slideright 1s forwards;
      -webkit-animation-delay: 1.5s;
      animation: slideright 1s forwards;
      animation-delay: 1.5s;
   }

   .sticky-button2 ul {
      clear: both;
      z-index: 9999;
      position: fixed;
      list-style-type: none;
      display: none;
      right: 10px;
      top: 60%;
      -webkit-animation: slideleft 1s forwards;
      -webkit-animation-delay: 1.5s;
      animation: slideleft 1s forwards;
      animation-delay: 1.5s;
   }

   @keyframes slideright {
      100% {
         right: 0;
      }
   }

   .sticky-button li {
      margin-right: -83px;
      padding: 10px 20px;
      -webkit-transform: rotate(270deg);
      -moz-transform: rotate(270deg);
      -o-transform: rotate(270deg);
      background-color: #f1ebdb;
      border: 1px solid #fff;
      border-top-left-radius: 2px;
      border-top-right-radius: 2px;

      -webkit-transition: width .5s, background-color .1s;
      transition: width .5s, background-color .1s;

   }

   .sticky-button li a {
      font-size: 18.5px;
      text-transform: none;
      text-align: center;
      text-decoration: none;
      font-weight: 600;
      color: #50331e;
   }

   .sticky-button li:hover {
      background-color: #fff;
      border: 1px solid #f1ebdb;
   }

   .tawk-min-chat-icon {}

   @media (max-width: 767px) {
      .sticky-button2 ul {
         display: block;
      }

      .sticky-button ul {
         display: none;
      }
   }
  
/* Fixed Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px; /* distance from bottom */
  right: 50px;  /* distance from right */
  width: 60px;
  height: 60px;
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Simple bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Optional hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
}
.contact-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 10%;
    background: #12446d;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.2) rotate(10deg);
    background: #b68b4a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Specific colors */
.contact-icon.mail:hover { background: #0072c6; } /* Blue for email */
.contact-icon.call:hover { background: #28a745; } /* Green for call */

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-icons {
        right: 10px;
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


/* Dark overlay filter */
.bg-cover-dark::before {
 
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* adjust darkness */

  z-index: 1;
}

/* Make sure text sits above overlay */
.bg-cover-dark .content {
  position: relative;
  z-index: 2;
  padding: 100px 20px; /* adjust for spacing */
  text-align: center;
}
/* ---------- End ------- */

