/* import-styles */
@import url(global.css);
@import url(../layout/header.css);
@import url(../layout/footer.css);

/*section-banner-start*/
@media (min-width: 992px) {
    .hero-section {
        max-height: 440px;
    }
}

.hero-section .first-banner img {
    border-radius: 20px;
    height: 100%;
}

@media (max-width: 992px) {
    .hero-section .first-banner {
        border-radius: 10px;
    }

    .hero-section .first-banner .swiper-button-prev svg circle,
    .hero-section .first-banner .swiper-button-next svg circle {
        fill: #E3E3E3 !important;
    }

    .hero-section .first-banner .swiper-button-prev svg path,
    .hero-section .first-banner .swiper-button-next svg path {
        fill: #2E405E;
    }
}

.hero-section .first-banner .swiper-button-next,
.hero-section .first-banner .swiper-rtl .swiper-button-prev {
    right: 0;
    background-color: transparent;
    scale: 1.5;
}

.hero-section .first-banner .swiper-button-prev,
.hero-section .first-banner .swiper-rtl .swiper-button-next {
    left: 0;
    background-color: transparent;
    scale: 1.5;
}

.hero-section .swiper-button-next,
.hero-section .swiper-rtl .swiper-button-prev {
    right: 0;
}

.hero-section .swiper-button-prev,
.hero-section .swiper-rtl .swiper-button-next {
    left: 0;
}

.hero-section .action-banners-box a {
    transition: 0.3s all ease-in-out;
    height: 100%;
}

.hero-section .action-banners-box a img {
    height: 100%;
}

.hero-section .action-banners-box a:hover {
    transform: translateY(-2px);
}

.hero-section .notifications-content {
    height: 100%;
}

.hero-section .notifications-content .notifications {
    border-radius: 8px;
    border: 1px solid #EDF1F8;
    background: #EDF1F8;
    box-shadow: 0 5px 20px 0 rgba(217, 217, 217, 0.2);
    padding: 20px 0;
    height: 100%;
}

.hero-section .notifications-content .notifications .nav-tabs {
    margin: 0 20px;
    padding: 0;
    border-bottom: 5px solid #416CB4;
    justify-content: space-between;
}

.hero-section .notifications-content .notifications .nav-tabs .nav-item {
    margin: -4px;
    list-style-type: none;
    flex: 0 0 50%;
}

.hero-section .notifications-content .notifications .nav-tabs .nav-item .nav-link {
    border: 0;
    color: #686868;
    font-weight: 600;
    text-align: center;
    font-size: 12px;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .hero-section .notifications-content .notifications .nav-tabs .nav-item .nav-link {
        font-size: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero-section .notifications-content .notifications .nav-tabs .nav-item .nav-link {
        font-size: 8px;
    }
}

.hero-section .notifications-content .notifications .nav-tabs .nav-item .nav-link.active {
    font-weight: 700;
    background-color: transparent;
    color: var(--primary-color);
    margin-bottom: 0;
    border-bottom: 5px solid;
    padding-inline: 0;
}

.hero-section .notifications-content .notifications .tab-content {
    text-align: right;
    overflow-y: auto;
    margin-top: 10px;
    margin-inline: 20px 10px;
    height: 100%;
    min-height: 255px;
    max-height: 335px;
}

.hero-section .notifications-content .notifications .tab-content::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0);
}

.hero-section .notifications-content .notifications .tab-content::-webkit-scrollbar-track,
.hero-section .notifications-content .notifications .tab-content::-webkit-scrollbar-thumb {
    border-left: 12px solid rgba(255, 255, 255, 0);
    background-clip: padding-box;
}

.hero-section .notifications-content .notifications .tab-content::-webkit-scrollbar-track {
    background-color: #d9d9d9;
}

.hero-section .notifications-content .notifications .tab-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

.hero-section .notifications-content .notifications .tab-content .item {
    padding: 16px;
    margin-bottom: 20px;
    transition: all ease 0.3s;
    display: block;
    text-decoration: none;
    cursor: pointer;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}

.hero-section .notifications-content .notifications .tab-content .item:hover .item-head .title {
    color: var(--primary-color);
}

.hero-section .notifications-content .notifications .tab-content .item .item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section .notifications-content .notifications .tab-content .item .item-head .title {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}

.hero-section .notifications-content .notifications .tab-content .item .item-head .date {
    color: var(--primary-color);
    direction: ltr;
    font-size: 0.71em;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.hero-section .notifications-content .notifications .tab-content .item .item-content {
    margin-top: 13px;
    color: var(--color-text);
    text-align: justify;
    font-size: 12px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.42px;
}

.hero-section .notifications-content .notifications .tab-content .item .show-more {
    position: absolute;
    left: 25px;
    bottom: -10px;
}

/*section-banner-end*/

/*category-box-start*/
.categories-box {
    display: contents;
}

.category {
    position: relative;
    bottom: 70px;
    z-index: 1;
}

.category-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
    position: relative;
}

.category-content.active {
    opacity: 1;
    max-height: 100%;
}

.category-card.active h2 {
    color: white;
}

.category-card.active p {
    color: white;
}

.category-card.secondary-btn {
    border-radius: 50px;
    padding-inline: 20px;
    border: 2px solid transparent;
    cursor: pointer;
}

.categories-box .swiperCategories .swiper-slide {
    width: fit-content;
}

.categories-box .swiperCategories .category-box {
    width: fit-content;
}


.category-card h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
    margin-bottom: 0;
}

.category-card p {
    color: #7B7D7E;
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;

}

.category-card.active,
.category-card:hover {
    transition: 0.3s ease-in-out;
    background: linear-gradient(var(--secondary-color), var(--secondary-color)) padding-box,
    linear-gradient(-45deg, var(--primary-color), #fff) border-box;
    font-weight: 700;
}

.category-card:hover h2,
.category-card:hover p {
    color: #fff;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .category {
        margin: 0;
        bottom: 0;
        z-index: 1;
    }

    .category-card h2 {
        font-size: 1rem;
    }

    .space-box {
        display: none;
    }
}

@media (max-width: 992px) {
    .category {
        bottom: 0;
        gap: 20px;
    }

    .category-icon svg {
        height: 100%;
        width: 100%;
    }

    .category-card h2 {
        font-size: 0.8rem !important;
    }

    .category-card p {
        font-size: 0.4rem !important;
    }
}

/*category-box-end*/

/*product-sections-start*/
.products-section .section-title-box p {
    white-space: nowrap;
}

.products-section .product-card {
    position: relative;
    border-radius: 30px;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #EDF1F8;
    padding: 25px 30px 50px;
    transition: 0.3s all ease-in-out;
}

.products-section .product-card:hover {
    background: linear-gradient(#EDF1F8, #EDF1F8) padding-box,
    linear-gradient(180deg, var(--primary-color), #FFFFFF) border-box;
}

.products-section .product-card img {
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.products-section .product-card .primary-button {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: none;
}

.products-section .content-product {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-section .content-product h3 {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.products-section .content-product p {
    font-size: 12px;
    color: #416CB4;
    margin-bottom: 0;
    text-align: center;
}

.products-section .action-product {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: -15px;
}

.products-section .action-product .primary-btn {
    min-height: unset;
    border-radius: 20px;
    padding-inline: 15px;
    font-size: 12px;
}

.products-section .more-product {
    display: flex;
    justify-content: center;
    transform: translateY(30px);
}

.products-section .more-product-button {
    background-color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 40px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.products-section .more-product-button:hover {
    transform: translatey(-6px);
    box-shadow: 0 5px 20px rgba(118, 69, 62, 0.4);
    color: white;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .products-section .primary-button {
        padding: 10px;
    }
}

.products-section .swiperNewProducts,
.products-section .swiperProducts {
    width: calc(100% - 70px);
}

.products-section .swiper-button-next,
.products-section .swiper-rtl .swiper-button-prev {
    right: 0;
}

.products-section .swiper-button-prev,
.products-section .swiper-rtl .swiper-button-next {
    left: 0;
}

/*product-sections-end*/

/*main-banner-sections-start*/
.main-banner img {
    border-radius: 25px;
    aspect-ratio: 1248/250;
    min-height: 80px;
}

@media (max-width: 576px) {
    .main-banner img {
        border-radius: 10px;
    }
}

/*main-banner-sections-end*/

/*download-center-sections-start*/
/* ---------- Section ---------- */
.download-center {
    background: linear-gradient(115deg, #05081c 0%, #101a4d 45%, #2647d6 100%);
    border-radius: 25px;
    padding: 48px 40px;
    overflow: hidden;
    position: relative;
}

.download-center .dc-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 32px;
    text-align: center;
}

.download-center .dc-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    height: 100%;
    width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s all ease-in-out;
}

.download-center .dc-card:hover {
    box-shadow: 0 10px 45px -5px #58C6D7;
}

.download-center .dc-icon {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #eef1fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-center .dc-icon svg {
    width: 26px;
    height: 26px;
}

.download-center .dc-text h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px 0;
    text-align: center;
}

.download-center .dc-text p {
    color: var(--color-text);
    font-size: 9px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.download-center .dc-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-center .dc-illustration svg {
    width: 100%;
    max-width: 260px;
    height: auto;
}

@media (max-width: 576px) {
    .download-center {
        padding: 32px 20px;
    }

    .download-center .dc-title {
        font-size: 21px;
        text-align: center;
    }

    .download-center .dc-icon {
        width: 60px;
        height: 60px;
    }

    .download-center .dc-text h3 {
        font-size: 14px;
    }
}

/*download-center-sections-end*/

/*about-us-sections-start*/
.about-us-section .about-us-caption {
    font-weight: 600;
    line-height: 2;
    text-align: justify;
}

.about-us-section .about-us-img {
    border-radius: 30px;
}

/*about-us-sections-end*/

/*features-section-start*/
.features .category-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-inline: auto;
}

.features .category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(88, 198, 215, 0.15);
    background-color: rgba(88, 198, 215, 0.15);
    transition: 0.2s;
    aspect-ratio: 1/1;
    min-width: 220px;
    min-height: 220px;
}

.features .category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 20px rgba(88, 198, 215, 0.15);
}

.features .category-title {
    margin-top: 20px;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1rem;
}

/*features-section-end*/

/*articles-sections-start*/
.articles-section {
    background-color: var(--color-three);
}

.articles .article-card {
    background-color: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 15px 15px 35px;
    margin: 20px 0 0;
    border-radius: 30px;
    text-align: justify;
    transition: 0.3s all ease-in-out;
}

.articles .article-card:hover {
    box-shadow: 0 20px 30px rgba(23, 48, 135, 0.2);
}

@media (max-width: 576px) {
    .articles .article-card {
        margin: 20px 0;
    }
}

.articles .article-card img {
    height: 300px;
}

@media (max-width: 768px) {
    .articles .article-card img {
        height: 250px;
    }
}

.articles .article-card .caption-box {
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100px;
}

.articles .action-box svg {
    transition: 0.2s all ease-in-out;
}

.articles .action-box svg:hover {
    scale: 1.1;
}

.article-card img {
    border-radius: 24px;
}

.articles .article-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
}

.articles .article-card h4:hover {
    cursor: pointer;
}

@media (max-width: 1400px) {
    .articles .article-card h4 {
        font-size: .8rem;
    }
}

.articles .article-card p,
.articles .article-card li {
    color: var(--color-text);
    font-size: 10px;
    line-height: 25px;
    margin-block: 0;
}

.articles .article-card li {
    color: var(--primary-color);
    display: inline;
    list-style-type: disc;
}

.articles .more-content {
    background-color: var(--primary-color);
    color: white;
    padding: 35px 30px;
    margin: 20px 0 0;
    border-radius: 30px;
    text-align: justify;
    transition: 0.3s all ease-in-out;
}

.articles .more-content h3 {
    font-size: 35px;
    font-weight: 900;
}

.articles .more-content a {
    background-color: white;
    color: var(--color-text);
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    width: 100%;
    transition: 0.3s all ease-in-out;
}

.articles .more-content a:hover {
    box-shadow: 0 10px 50px 10px gray;
    transform: translatey(-6px);
}

.information-btn {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    padding: 3px 20px;
    transition: 0.3s all ease-in-out;
}

.information-btn:hover,
.articles .article-btn:hover {
    cursor: pointer;
}

.articles .article-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    padding: 10px 35px;
    transition: 0.3s all ease-in-out;
    bottom: -30px;
}

.articles .swiper {
    padding: 1rem 2rem 5rem;
}

/*articles-sections-end*/

#loadingPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupBox {
    background-color: white;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    max-width: 700px;
    width: 90%;
}

#closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: red;
    cursor: pointer;
}

.popupBox img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}
