:root {
    --theme-color: #f3b41b;
    --theme-color-2: #FE2C55;
    --theme-color-3: #FE2C55;
    --theme-color-4: #f7f5f0;
}

* {
    font-family: "Roboto", sans-serif;
    transition: all 0.5s;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
}

body,
p {
    font-family: "Roboto", sans-serif;
    line-height: 26px;
    font-weight: normal;
    font-style: normal;
    color: #444;
    font-size: 16px;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
    animation: fadeInOut 10s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
        display: none;
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
}

main.main-page-area {
    padding: 40px 0;
    background-color: #f7f8f9;
}
input.form-control {
    box-shadow: none !important;
}