
/* side-btn-contact start */
.side-contact a {
    position: fixed;
    width: 300px;
    height: 40px;
    right: -260px;
    top: 200px;
    transition: all 0.3s ease-in-out;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    z-index: 111;
  }
  
  .side-contact a i {
    width: 40px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background: #4338CA;
    margin-right: 10px;
  }
  
  .side-contact a span {
    color: #000;
  }
  
  .side-contact a:nth-child(2) {
    top: 250px;
  }
  
  .side-contact a:hover {
    right: 0;
  }
/* Custom Blinking Button */
.custom-button {
    position: fixed;
    bottom: 6rem; /* Positioned above the WhatsApp button */
    left: 1.5rem; /* Same margin as WhatsApp button */
    background-color: #4338CA; /* Button Color */
    color: white;
    font-size: 1rem;
    width: 3.75rem; /* 60px */
    height: 3.75rem; /* 60px */
    border-radius: 50%; /* Circular Shape */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    animation: blink 1.5s infinite, bounce 1s infinite;
    font-weight: bold;
    line-height: 1.1;
    z-index: 9999;
    text-decoration: none;
    text-align: center;
}

/* Hover Effect */
.custom-button:hover {
    background-color: #E94B1D;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 1.25rem; /* 20px */
    left: 1.5rem; /* 30px */
    background-color: #25D366;
    color: white;
    font-size: 1.75rem; /* 28px */
    width: 3.75rem; /* 60px */
    height: 3.75rem; /* 60px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    animation: blink 1.5s infinite;
    text-decoration: none;
}

/* Hover Effect */
.whatsapp-button:hover {
    background-color: #1ebe57;
}

/* Blinking Animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Bouncing Animation */
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-0.625rem); } /* -10px */
    100% { transform: translateY(0); }
}

/* Responsive - Hide both buttons on small screens */
@media (max-width: 768px) {
    .custom-button {
        display: none;
    }
}

