* {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
html::-webkit-scrollbar {
    display: none;
}

.fade-in-text {
    opacity: 0;

    /* Start with the text hidden */
    animation: fadeIn 2s ease-in 0.2s forwards;

    /* 2s is the duration, can be adjusted */
}

.fade-in-body {
    opacity: 0;

    /* Start with the text hidden */
    animation: fadeIn 0.1s ease-in forwards;

    /* 2s is the duration, can be adjusted */
}

/* Hide scrollbar in Firefox */
body {
    scrollbar-width: none;
}

/* Optional: For elements with overflow */
* {
    -ms-overflow-style: none;

    /* Hide scrollbar in Internet Explorer and Edge */
    overflow: -moz-scrollbars-none;

    /* Older Firefox versions */
}

@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.service_offered_btn {
    background-color: rgba(0, 0, 0, 0);
    color: #ffffff;
    border-radius: 100px;
}

.chips {
    background-color: #525252;
    color: #ffffff;
    border-radius: 100px;
    font-size: calcalc(60px - 2vw)c(10px + 1vw);
    text-align: center;
    display: flex;
    align-items: center;
    margin: 2px;
    padding: 3px 20px;
}

.footer-text {
    color: rgb(185, 185, 185);
}

#location {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    background-image: url('bg_for_location');
    box-shadow: inset 0 0 500px 100px;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    justify-content: center;
    position: static;
    height: 100vh;
    background-position: center center;
    width: 100vw;
}

.view-location {
    border-color: rgba(0, 0, 0, 0);
    border-style: none;
    background-color: rgba(0, 0, 0, 0);
    font-size: 30px;
    color: #525252;
}

.view-location:hover {
    color: #03b900;
}

.form-ggl {
    width: 100%;
    display: flex;
    justify-content: center;
}

.appoint-button {
    text-align: center;
    font-weight: bolder;
    font-size: 48px;
    color: #525252;
    border-style: none;
    background-color: rgba(0, 0, 0, 0);
}

.appoint-button:hover {
    color: #03b900;
}