

.e2grl__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(32, 32, 32, 0.8);
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .e2grl__loader-wrapper {
        background: var(--e2grl__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--e2grl__main_border_color);
        box-shadow: 0 8px 30px rgba(146, 138, 146, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--e2grl__font_family), sans-serif;
        color: var(--e2grl__pastel_dark);
        animation: modalFadeIn 0.3s ease-out;
        text-align: center;
    }

    @keyframes modalFadeIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .e2grl__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--e2grl__pastel_white);
        border-top: 4px solid var(--e2grl__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .e2grl__message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--e2grl__dark_accent);
        margin: 0;
    }

    .e2grl__message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--e2grl__main_dark);
        margin: 0;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }



.e2grl__cstm-prdcts-btn-2 {
        display: inline-block;
        padding: 0.6em 1.2em;
        background-color: var(--e2grl__main_white);
        color: var(--e2grl__main_dark);
        border: 1px solid var(--e2grl__main_border_color);
        border-radius: 4px;
        font-family: var(--e2grl__font_family), sans-serif;
        font-size: var(--e2grl__font_size)px;
        text-decoration: none;
        cursor: pointer;
        transition:
            background-color 0.3s ease,
            color 0.3s ease,
            border-color 0.3s ease;
    }

    .e2grl__cstm-prdcts-btn-2:hover {
        background-color: var(--e2grl__main_color);
        color: var(--e2grl__main_white);
        border-color: var(--e2grl__dark_accent);
    }

    .e2grl__cstm-prdcts-btn-2:focus {
        outline: none;
        box-shadow: 0 0 0 3px var(--e2grl__light_accent);
    }


.content-img35 {
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px #264b4f;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .content-img35:hover {
    box-shadow: 0 8px 16px #455442;
    transform: translateY(-2px);
  }



.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;
  }







