/* ==================== */
/* ANIMATIONS */
/* ==================== */

@keyframes hover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
/* ==================== */
/* BACKGROUND AND OVERLAY */
/* ==================== */

.background-holder {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* ==================== */
/* TEXT AND FONT STYLES */
/* ==================== */

.color-white {
    color: #ffffff;
}

.font-1 {
    font-family: 'Open Sans', sans-serif;
}

/* ==================== */
/* BUTTONS */
/* ==================== */

.popout-button {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

    .popout-button:hover {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

.logo-item {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .logo-item:hover {
        transform: scale(1.1);
    }

.btn-sm-custom {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* ==================== */
/* STATISTICS SECTION */
/* ==================== */

.statistic-number {
    font-family: 'Arial', monospace;
}


    .background-1 .statistics {
        margin-top: 30px;
    }

    .background-1 .statistic {
        margin-bottom: 20px;
    }

    .background-1 .statistic-number {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .background-1 .statistic-label {
        font-size: 18px;
        font-weight: 300;
        color: #ffffff;
    }

/* ==================== */
/* CONTACT STYLES */
/* ==================== */

.contact-header {
    text-align: left;
    font-size: 1.2rem;
    color: black;
}

.contact-p {
    text-align: left;
    color: black;
}

/* ==================== */
/* CUSTOM SELECT */
/* ==================== */

.custom-select {
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    background: #fff;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .custom-select:focus {
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }

#country {
    font-size: 14px;
    line-height: 1.5;
    height: auto;
    padding: 5px;
    overflow: visible;
}

/* ==================== */
/* CUSTOM BUTTON AND COLUMN FOR SMALL SCREENS */
/* ==================== */

.col-sm-custom {
    width: 50%;
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

/* ==================== */
/* CAROUSEL STYLES */
/* ==================== */

.carousel-container {
    overflow: hidden;
    width: 65%;
    margin: 0 auto;
}

.carousel {
    display: flex;
    animation: scroll 50s linear infinite;
}

    .carousel div {
        flex: 0 0 26%;
        text-align: center;
    }

    .carousel img {
        max-width: 98px;
        height: auto;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-520%);
    }
}

.carousel div:first-child {
    margin-left: 0;
}

/* ==================== */
/* TOASTER SECTION */
/* ==================== */

/* Floating Toast Container */
.floating-toast {
    visibility: hidden; 
    max-width: 450px;
    background-color: #343a40; 
    color: #ffffff; 
    text-align: left;
    border: 2px solid #ffffff; 
    border-radius: 8px;
    padding: 20px; 
    position: fixed;
    z-index: 1000;
    left: 10px; 
    top: 100px; 
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.6s, visibility 0.6s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

    /* Show the toast */
    .floating-toast.show {
        visibility: visible;
        opacity: 1;
    }

    /* Dismiss button for both toasts */
    .floating-toast .close-btn, .floating-toast-info .close-btn {
        margin-left: 15px;
        color: #ffffff;
        font-weight: bold;
        float: right;
        font-size: 22px;
        line-height: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

        .floating-toast .close-btn:hover, .floating-toast-info .close-btn:hover {
            color: #ffc107; 
        }

    /* Warning Icon */
    .floating-toast .toast-icon {
        margin-right: 10px;
        font-size: 24px; 
        vertical-align: middle; 
        color: #ffffff; 
    }

#floating-toast-message {
    display: inline-block;
    vertical-align: middle;
}

/* Info Toast Container */
.floating-toast-info {
    visibility: hidden; 
    max-width: 450px;
    background-color: #17a2b8; 
    color: #ffffff; 
    text-align: left; 
    border: 2px solid #ffffff; 
    border-radius: 8px;
    padding: 20px;
    position: fixed;
    z-index: 1000;
    left: 10px; 
    top: 260px; 
    font-size: 18px;
    opacity: 0; 
    transition: opacity 0.6s, visibility 0.6s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

    .floating-toast-info.show {
        visibility: visible;
        opacity: 1;
    }

    /* Info Icon */
    .floating-toast-info .toast-icon-info {
        margin-right: 10px;
        font-size: 24px; 
        vertical-align: middle; 
        color: #ffffff; 
    }

#floating-toast-info-message {
    display: inline-block; 
    vertical-align: middle;
}

#faq-section .card-body {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-header button {
    white-space: normal; /* Allow text wrapping in buttons */
}

.accordion {
    max-width: 100%; /* Prevent overflow */
}