* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #fff;
}
.uni-container {
    width: 100%;
    max-width: 80%;
    min-width: 80%;
    margin: 0 auto;
}
.header-hero-wrap {
    /* background-color: #7566f3; */
}
.header {
    background: #7666f4;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.header .logo img {
    width: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d1c4ff;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}
.right-section i {
    display: none;
}
.lang {
    font-weight: 500;
}

.login-btn {
    position: relative;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    background: #ffffff;
    color: #6a4df4;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.logout-btn {
    position: relative;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid #ff3b3b;
    background: linear-gradient(135deg, #ff4b4b, #ff0000);
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logout-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.logout-btn:hover::before {
    left: 100%;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #ff0000, #b30000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    transform: translateY(-2px);
}

.footer_wrapper {
    background: url("../images/cd65c8ffd8216c22629d3acbe1aa65fc980aea4d.jpg");
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.footer_content_Wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_1 {
    width: 25%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    color: #fff;
}
.footer_1 p {
    font-size: 13px;
    line-height: 25px;
}
.footer_1 img {
    width: 80px;
}
.social_links_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}
.social_links_wrapper i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #2f2483;
}
.footer_2 {
    width: 20%;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.footer_2 h3 {
    font-size: 17px;
    font-weight: 500;
}
.footer_2 a {
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    gap: 20px;
}
.footer_2 i {
    font-size: 10px !important;
}
.footer_3 {
    width: 22%;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-top: -20px;
}
.footer_3 h3 {
    font-size: 17px;
    font-weight: 500;
}
.gallery_img_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.gallery_img_wrapper img {
    object-fit: cover;
    height: 70px;
    width: 100%;
    border-radius: 8px;
}
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
@media (max-width: 1299px) {
    .uni-container {
        width: 100%;
        max-width: 90%;
        min-width: 90%;
    }
}
@media (max-width: 999px) {
    .footer_content_Wrapper {
        flex-wrap: wrap;
        row-gap: 40px;
    }
    .footer_1 {
        width: 48%;
    }
    .footer_3 {
        width: 40%;
    }

    .right-section i {
        display: block;
        font-size: 25px;
    }
}
@media (max-width: 676px) {
    .footer_2 {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .footer_3 {
        width: 70%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
        gap: 20px;
    }
    .nav-links a {
        color: #2f2482;
    }
    .nav-links a.active {
        color: #beabff;
    }

    .nav-links.open {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
}
@media (max-width: 480px) {
    .footer_3 {
        width: 100%;
    }
    .footer_1 {
        width: 100%;
    }
    .footer_2 {
        width: 100%;
    }
    .header .logo img {
        width: 40px;
    }
}

.custom-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.custom-pagination .active {
    background-color: #4a3aff;
    color: white;
}
.custom-pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom_paginator_button {
    width: 40px;
    height: 38px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #fff;
    background-color: #2f2482;
    cursor: pointer;
    text-decoration: none;
}

.custom_paginator_button .disabled {
    background-color: #756db9;
    cursor: not-allowed;
}

.custom_paginator_page_no {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #ccc;
    color: #333;
}
