* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: azure;
}

.backgroundimage {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    background-position: center;
    background-size: cover;
    isolation: isolate;
    overflow: hidden;
}

/* Real photo from <picture> sits behind everything */
.bgimage-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Dark gradient overlay above the photo, below content */
.backgroundimage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(4, 9, 30, .7), rgba(4, 9, 30, .7));
    z-index: 0;
    pointer-events: none;
    /* never intercepts clicks */
}

/* All normal content above overlay/image — EXCEPT the watermark */
.backgroundimage> :not(picture):not(.watermark) {
    position: relative;
    /* create stacking layer */
    z-index: 1;
}

/* Pin the handle bottom-right */
.watermark {
    position: absolute;
    right: 10px;
    bottom: 10px;
    top: auto;
    left: auto;
    z-index: 1;
    font-size: 17px;
    color: rgba(255, 255, 255, .5);
}

input[type="number"] {
    color: black;
    font-family: 'Gill Sans', sans-serif;
    font-weight: 600;
}

.gobutton {
    display: inline-block;
    text-decoration: none;
    font-family: 'Gill Sans', sans-serif;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 30px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
}

.gobutton:hover {
    border: 1px solid #2261f3;
    background: #2261f3;
    transition: 1s;
}

.result {
    font-family: 'Gill Sans', sans-serif;
    color: #fff;
    position: relative;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 500;
    list-style-type: disc;
    padding-left: 20px;
    list-style: none;
    counter-reset: item-counter;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-width: 2px;
    outline: 1px solid #ccc;
    outline-width: 2px;
    outline-offset: 5px;
    max-width: fit-content;
}

.result-container {
    font-family: 'Gill Sans', sans-serif;
    color: #fff;
    position: relative;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 500;
    list-style-type: disc;
    padding-left: 20px;
    list-style: none;
    counter-reset: item-counter;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-width: 3px;
    padding: 7px;
    max-width: fit-content;
    margin: 0 auto;
    border: none;
}

.desciption {
    font-weight: 400;
}

.visadescription {
    font-weight: 700;
    font-size: 1.2rem;
}

.tax-update {
    font-weight: 400;
}

.currency {
    align-items: center;
}

.currencyconvert {
    align-items: center;
}

.selectbox {
    align-items: center;
    padding-top: 10px;
    border-radius: 5px;
}

.disclaimer {
    font-family: 'Gill Sans', sans-serif;
    color: rgb(0, 0, 0);
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}

.disclaimer h1 {
    font-family: 'Gill Sans', sans-serif;
    color: rgb(0, 0, 0);
    width: 80%;
    margin: auto;
    text-align: center;
}

.disclaimer p {
    font-family: 'Gill Sans', sans-serif;
    color: rgb(100, 98, 98);
    width: 80%;
    margin: auto;
    text-align: center;
    padding-bottom: 20px;
}

.inputBox {
    padding: 2px 20px;
    font-size: 20px;
    border-radius: 5px;
}

.salaryLabel {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 800px) {

    .backgroundimage {
        padding-bottom: 8vh;
    }

    body h3 {
        font-size: small;
        padding-left: 4%;
        padding-right: 4%;
    }

    body h1 {
        padding-left: 4%;
        padding-right: 4%;
    }

    .result-container {
        padding-left: 4%;
        padding-right: 4%;
    }

    .buymeacoffee p br {
        display: none;
    }

    .buymeacoffee br {
        display: none;
    }

    .buymeacoffeeimg {
        display: block;
    }

    .buymeacoffee {
        padding-inline: 4%;
    }

    .buymeacoffee :is(iframe, a, button) {
        transform: scale(0.95);
        /* gently shrink for narrow screens */
        transform-origin: center;
    }

    .watermark {
        bottom: 2%;
    }

    .fa-brands.fa-instagram.fa-2xl {
        bottom: -100px;
        position: relative;
        font-size: xx-large;
    }

    @media (max-width: 360px) {

        .buymeacoffee .bmc-button,
        .buymeacoffee a[href*="buymeacoffee.com"] {
            font-size: clamp(12px, 5.2vw, 18px) !important;
            padding: 10px 12px !important;
        }
    }
}