/*
 * Custom project styles.
 * This file is loaded after css/site.min.css and is not minified.
 */

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
  
  .floating-contact__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 162px;
    height: 54px;
    padding: 0 18px;
    border-radius: 27px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
    overflow: visible;
    animation: floating-contact-bounce 3s ease-in-out infinite;
  }
  
  .floating-contact__button::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    border: 2px solid currentColor;
    opacity: 0;
    animation: floating-contact-pulse 2.4s ease-out infinite;
  }
  
  .floating-contact__button i {
    font-size: 20px;
  }
  
  .floating-contact__button span {
    color: inherit;
    white-space: nowrap;
  }
  
  .floating-contact__button:hover {
    color: #ffffff;
    transform: translateY(-3px);
  }
  
  .floating-contact__button--phone {
    background: #24304a;
  }
  
  .floating-contact__button--whatsapp {
    background: #25d366;
    animation-delay: 0.35s;
  }
  
  .floating-contact__button--whatsapp::before {
    animation-delay: 0.35s;
  }
  
  @keyframes floating-contact-bounce {
    0%, 100% {
        transform: translateY(0);
    }
  
    50% {
        transform: translateY(-6px);
    }
  }
  
  @keyframes floating-contact-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.45;
    }
  
    75%, 100% {
        transform: scale(1.18);
        opacity: 0;
    }
  }
  
  @media (max-width: 575.98px) {
    .floating-contact {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }
  
    .floating-contact__button {
        min-width: 52px;
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }
  
    .floating-contact__button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
  }


.solution-section .solution-content .solution-title {
    font-size: 22px;
    color: #0a192f;
}

.solution-section .solution-content .solution-text {
    font-size: 16px;
    color: #0a192f;
}




