:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.logo {
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-large {
    max-width: 300px;
}

.logo-small {
    max-width: 150px;
}

.landing-text {
    font-size: 2.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.question-container {
    position: relative;
    animation: slideIn 0.5s ease forwards;
}

.question-container.sliding-out {
    animation: slideOut 0.5s ease forwards;
}

.question-container.sliding-out-right {
    animation: slideOutRight 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

/* Ensure form container has a fixed height to prevent layout shifts */
#form-container {
    min-height: 300px;
    position: relative;
}

/* Style enhancements */
.form-check {
    transition: transform 0.2s ease;
}

.form-check:hover {
    transform: translateX(5px);
}

.theme-btn {
    transition: all 0.3s ease;
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #0b5ed7;
}

.theme-btn-outline {
    background-color: transparent;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
}

.theme-btn-outline:hover {
    background-color: var(--bs-primary);
    color: white;
}

.btn-lg {
    font-size: 1.25rem;
    padding: 1rem 3rem;
}

#landing-page {
    min-height: 100vh;
    position: relative;
    padding-bottom: 100px;
}

.fixed-bottom-button {

    background-color: #0d6efd;
    color: white;
    text-align: center;
    /* font-size: 3.5rem; */
    /* font-weight: 1000; */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fixed-bottom-button:hover {
    background-color: #0b5ed7;
}


.call_back_button {
    background-image: linear-gradient(to right, #4776E6 0%, #8E54E9 51%, #4776E6 100%)
}

.call_back_button {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.call_back_button:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff !important;
    text-decoration: none;
}