
.bg-light{
    background-color: #f8f9fa !important;
}

.text-small{
    font-size: 0.875rem;
}

.text-600{
    color: #293470be;
    text-decoration: none !important;
}

.a-link{
    color: #e4e4e4d0;
    text-decoration: none !important;
    font-weight: 400;

}

.a-link:hover{
    color: #f5f5f5;
    text-decoration: underline !important;
}

header{
    background: url(../img/components/bg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.logo{
    max-height: 100px;
}



  .floating-buttons {
    position: fixed;
    top: 60%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }
  
  .float-btn {
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
  }

  @media screen and (max-width: 768px) {
    .floating-buttons {
      position: fixed;
      top: 80%;
      right: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 9999;
    }
    .float-btn {
      width: 40px;
      height: 40px;
      font-size: 24px;
    }
    
  }
  
  .call-btn {
    background-color: #007bff; /* Blue for call */
  }
  
  .whatsapp-btn {
    background-color: #25d366; /* WhatsApp green */
  }
  
  .float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  
  /* Pulse Animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(0,0,0,0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
  }
  

  .video {
    width: 48%;
    border-radius: 15px;
    margin-right: 4%;
  }