/* Background layers */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    z-index: -2;
}

#bg2 {
    opacity: 0;
}


.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-box {
    width: 250px;
    display: flex;
    justify-content: center;
}

.logo-box svg {
    width: 100%;
    height: auto;
    display: block;
}
/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

/* Card Styling */
.custom-card {
    width: 100%;
    max-width: 800px !important;
    border-radius: 20px;
    padding: 20px;
    background: rgb(245, 243, 243);
    backdrop-filter: blur(10px);
    color: #252525;
}

/* Desktop: bottom 1/3 look */
@media (min-width: 992px) {
    .custom-card {
        max-width: 600px;
        margin-bottom: 40px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .custom-card {
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .custom-card {
        padding: 15px;
        border-radius: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}


/* Mobile adjustments */
@media (max-width: 576px) {

    /* h4 → visually like h6 */
    h4 {
        font-size: 1rem;   /* close to h6 */
        font-weight: 600;
    }

    /* Paragraph smaller */
    p {
        font-size: 0.69rem;
        line-height: 1.4;
    }
}

.btn-primary {
    --bs-btn-color: #272727;
    --bs-btn-bg: #fdb10d;
    --bs-btn-border-color: #fdb10d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #f1b532;
    --bs-btn-hover-border-color: #f1b532;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #f1b532;
    --bs-btn-active-border-color: #f1b532;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #fdb10d;
    --bs-btn-disabled-border-color: #fdb10d;
}
.btn-outline-light {
    --bs-btn-color: #464749;
    --bs-btn-border-color: #2d2f31;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f8c843;