.custom-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Yahan pe fix kiya */
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 600px;
    line-height: 120%;
}

.outfit {
    font-family: 'Outfit', sans-serif;
}

h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;
    /* Black color */
}

.para {
    font-family: 'Outfit', sans-serif;
    font-weight: 400px;
    font-size: 16px;
    line-height: 150%;

}


p {
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    size: 16px;
    font-weight: 400px;
}

.animate-spin-slow {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
        /* Upar kam jayega */
    }

    70% {
        transform: translateY(40px);
        /* Neeche zyada jayega */
    }
}

.animate-bounce-slow {
    animation: bounceSlow 6s infinite ease-in-out;
}

input {
    pointer-events: auto !important;
    z-index: 999 !important;
}

#background-container {
    background-image: url("../images/contact_background.svg");
    background-size: cover;
    background-position: center;
}