html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    scroll-behavior: smooth;
}

body {
    -ms-overflow-style: none;
    /* Hides scrollbar in IE and old Edge */
    scrollbar-width: none;
    /* Hides scrollbar in Firefox */
}

body::-webkit-scrollbar {
    display: none;
    /* Hides scrollbar in Chrome, Safari, new Edge, Opera */
}

.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}


#blog-carousel {
    background: url('../img/bg-img.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    /* adjust as per your need */
}

/* Glass overlay across the whole carousel */
#blog-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    /* transparent white overlay */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    /* Safari support */
    z-index: 1;
}

.carousel-inner {
    z-index: 2;
}

.carousel-item {
    height: 100vh;
}

.carousel-caption {
    bottom: 0;
    top: 0;
}

.logo {
    width: 120px;
    height: auto;
}

.nav-custom {
    background-color: rgb(255, 255, 255) !important;
    color: black;
}

.slider-img {
    width: 100%;
    height: auto;
}

.headin {
    color: white !important;
}

.subhead {
    color: white !important;
}

.text {
    color: #e2e2b6 !important;
}

.checkmark {
    color: #4877b6 !important;
}

.navbar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 12px;
    /* border-radius: 0px 0px 20px 20px; */
    height: 120px;
}

.nav-item:hover {
    color: #4877b6 !important;
}

.glass-effect {
    background: rgba(0, 0, 0, 0.4);
    /* semi-transparent black */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

/* glassy error look */
.error-message {
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.error-message:empty {
    display: none;
    /* hides the empty red dot issue */
}

.foot-a{
    text-decoration: none !important;
    color: white !important;

}

.foot-a:hover{
    color: #4877b6 !important;
}
/* For Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


@media screen and (max-width:991.98px) {
    .logo {
        width: 80px;
        position: relative;
    }

    .slider-img {
        height: 450px;
        object-fit: cover;
    }

    .navbar {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(3px);
        padding: 6px 12px;
        border-radius: 0px 0px 20px 20px;
        height: auto;
    }

    .nav-item:hover {
        color: #4877b6 !important;
    }
}

/* Google Fonts */
.orbitron-sans {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.space-mono-regular {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.space-mono-bold {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: normal;
}

.space-mono-regular-italic {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.space-mono-bold-italic {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: italic;
}

/* Google Fonts End */