

.yqcb8gq__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0808081f;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .yqcb8gq__loader-wrapper {
        background: var(--yqcb8gq__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--yqcb8gq__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .yqcb8gq__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--yqcb8gq__pastel_dark);
        border-top: 3px solid var(--yqcb8gq__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
.hero-overlay-section {
    background-size: cover;
    background-position: center center;
    color: white;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-overlay-section .content-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 0.5rem;
  }

.contact-softique-section input::placeholder {
    color: #888;
  }

  .contact-softique-section .btn-contact {
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
  }

  .contact-softique-section .contact-policy-link,
  .contact-softique-section .contact-terms-link {
    color: var(--bs-primary);
    text-decoration: underline;
  }












