.hide-on-desktop {
    display: none;
}
footer{
    background: #1A1A19;
    color: #FFF;
}


.glass-bg{
    background: rgba( 255, 255, 255, 0.5 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 6px );
    -webkit-backdrop-filter: blur( 6px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px); /* Adjust the jump height */
    }
    100% {
        transform: translateY(0);
    }
}

.animate-bounce-0{animation: jump 2s ease-in-out infinite;animation-delay: 0s;}
.animate-bounce-1{animation: jump 2s ease-in-out infinite;animation-delay: 0.2s;}
.animate-bounce-2{animation: jump 2s ease-in-out infinite;animation-delay: 0.4s;}
.animate-bounce-3{animation: jump 2s ease-in-out infinite;animation-delay: 0.6s;}
.animate-bounce-4{animation: jump 2s ease-in-out infinite;animation-delay: 0.8s;}


.category-box {
    position: relative;
    padding: 20px 10px;
    background: antiquewhite;
    text-align: center;
    text-transform: capitalize;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: white; /* Change text color to white for better readability */
    font-weight: 600;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Blur Overlay */
.category-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    backdrop-filter: blur(5px); /* Apply blur effect */
    z-index: 1;
}

/* Ensure text is above the overlay */
.category-box a {
    position: relative;
    z-index: 2;
    color: white; /* Make text more readable */
    text-decoration: none;
}

/* Background overlay */

.iframe-container{
    width: 100%;
}
.iframe-container iframe{
    width: 100%;
    margin: 10px 0px;
    border-radius: 10px;
}
.contact-form{
    margin: 10px !important;
    padding: 14px !important;
    width: 400px !important;
}

.content-sw {
    font-family: Arial, sans-serif;
    color: #333;
}

.content-sw h1,
.content-sw h2,
.content-sw h3,
.content-sw h4,
.content-sw h5,
.content-sw h6 {
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

.content-sw h1 { font-size: 2em; }
.content-sw h2 { font-size: 1.75em; }
.content-sw h3 { font-size: 1.5em; }
.content-sw h4 { font-size: 1.25em; }
.content-sw h5 { font-size: 1.1em; }
.content-sw h6 { font-size: 1em; }

.content-sw ul,
.content-sw ol {
    padding-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.content-sw ul {
    list-style-type: disc;
}

.content-sw ol {
    list-style-type: decimal;
}

.content-sw li {
    margin-bottom: 5px;
}
