html{
    font-size: 16px;
}
:root{
    --IMXX-headline-main: #0866FF;
    --IMXX-headline-main-2: #05064c;
    --IMXX-headline-dark-black: #000000;
}

/* General Styles (Unchanged) */
.no-border-radius {
    border-radius: 0;
}

.padded-cate-box {
    padding: 0px 22rem;
}

.margin-top-2rem {
    margin-top: 2rem;
}

#logo-box {
    height: 110vh;
    height: max-content;
    z-index: 99;
    padding: 40px 0;
    background-color: #ffffff;
    border-radius: 0px 0px 80px 80px;
}

.logo-container {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container h1 {
    background: linear-gradient(to right, var(--gradient-color1), var(--gradient-color2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-container h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #555;
}

.cate-box {
    margin: auto;
    padding: 0 20rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;  /* Added gap between buttons */
}

.cate-box button {
    border: none;
    padding: 15px 25px;
    margin: 5px 7px;
    cursor: pointer;

    background-color: var(--IMXX-headline-main);
    background: linear-gradient(to right, var(--gradient-color1) 10%, #062fa1);
    box-shadow: 0 30px 30px rgba(0, 8, 118, 0.2);
}

.cate-box button a {
        font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

.cate-box button.active {
    background-image: linear-gradient(90deg, #3518a7 20%, #000000 100%) !important;
}

.cate-box button:hover {
    background-image: linear-gradient(90deg, #3518a7 80%, #000000 100%) !important;
}

.logos-slider>.slider {
    display: none;
    padding: 0 20rem !important;
    height: auto;
}

.logos-slider .slider.active-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-item {
    margin: 10px;
    text-align: center;
}

.logo-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

#clent-list-tag {
    position: relative;
    text-align: center;
    font-size: 2em;
}

.line-head-box {
    display: flex;
    flex-direction: column;
}

/* Media Queries for Mobile View */

/* Medium screens (1200px and below) */
@media screen and (max-width: 1200px) {
    .logo-container h1 {
        font-size: 2rem;
    }

    .logo-container h5 {
        font-size: 1.2rem;
    }

    .cate-box {
        padding: 0 2rem;
    }

    .cate-box button a {
        font-size: 1.4em;
    }
}

/* Smaller screens (968px and below) */
@media screen and (max-width: 968px) {
    .logos-slider>.slider {
        padding: 0;
    }

    .logo-container h1 {
        font-size: 2rem;
    }

    .logo-container h5 {
        font-size: 1.5em;
    }

    .cate-box {
        padding: 0 1rem;
        row-gap: 20px; /* Larger vertical gap */
        column-gap: 10px; /* Smaller horizontal gap */
    }

    .cate-box button {
        padding: 8px 12px;
    }

    .cate-box button a {
        font-size: 1.1em;
    }

    .logo-item img {
        width: 70px;
        height: 70px;
    }

    .logos-slider > .slider {
        padding: 0 2rem;
    }
}

/* Smallest screens (480px and below) */
@media screen and (max-width: 480px) {
    .logo-container h1 {
        font-size: 1.5rem;
    }

    .logo-container h5 {
        font-size: 1.2em;
    }

    .cate-box {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        padding: 0;
        margin: 0;
        gap: 10px;  }

    .cate-box button {
        width: 100%;
        text-align: center;
    }

    .logo-item img {
        width: 60px;
        height: 60px;
    }

    .cate-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;  /* Ensure 2x2 grid */
    }
}

@media screen and (max-width: 480px) {
    .logos-slider .slider.active-slider {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; /* Create a 2-column grid */
        gap: 20px; /* Adjust the gap between grid items */
        justify-items: center; /* Center the items within the grid */
    }
}



#footer {
    position: relative;
    width: 100%;
    /* Full width */
    height: 110vh;
    /* Height of 70vh */
    background-color: #06162f;
    /* Dark background */
    color: #fff;
    /* White text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    /* Smooth transition */
    z-index: 1;
    /* Ensure footer is above other content */
}

/* Container styles */
.container-footer {
    padding: 20px;
    height: 100%;
    margin-top: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.footer-headline {
    font-size: 12em;
    margin-bottom: 10px;
}




.social-icons {
    display: flex;
    gap: 20px;
}

.icon {
    font-size: 2em;
}

/* Copyright styles */
.copyright {
    margin-top: auto;
    font-size: 1em;
    opacity: 0.8;
}

#footer{
    height: auto;
}
.shutter-up-layer {
    position: relative;
    height: 100%;
    width: 100%;

    background-color: #fff8f8;
    border-radius: 0px 0px 60px 60px;
}










@media screen and (max-width: 700px) {
    .cate-box {
        display: grid
;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        row-gap: 1px;
        column-gap: 18px;
    }}

    .page1 {
        background: #080837;
    }