:root {
    /* Colors */
    --primary-color: #333;
    --dark-color: #090909;
    --secondary-color: #268AFC;
    --background-button-white: #F4F4F4;
    --gradient-primary: linear-gradient(90deg, #0024FF 0%, #5890FF 100%);
    --gradient-secondary: linear-gradient(90deg, #A0D1FF 0%, #AFDCFF 100%);
    --gradient-bg-primary: linear-gradient(103.84deg, #F5F9FF 0.54%, #EEF5FF 99.46%);
    --gradient-bg-secondary: linear-gradient(103.98deg, #F2F2F2 2.43%, #FFFFFF 97.57%);
    --gradient-service: linear-gradient(130.37deg, #FFFFFF 4.05%, #FFFFFF 95.95%);
    --text-primary: #333;
    --text-white: #fff;
    --text-muted: #4C4C4C;

    /* Fonts */
    --font-fz-bonestay: 'FZ Bonestay', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-mulish: 'Mulish', sans-serif;
    --font-nunito: 'Nunito', sans-serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-xxl: 60px;

    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 50px;
    --radius-full: 100px;

    /* Font sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 21px;
    --font-2xl: 25px;
    --font-3xl: 30px;
    --font-4xl: 3px;
    --font-5xl: 40px;
    --font-6xl: 50px;

    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 15px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--font-roboto);
    font-size: var(--font-base);
    line-height: 1.5;
    color: var(--text-primary);
    background: #fff;
    z-index: -10;
}

p {
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 30px;
    color: var(--text-primary);
}

.primary-color {
    color: var(--primary-color);
}

.bg-primary-color {
    background-color: var(--primary-color);
}

.mt-50 {
    margin-top: var(--spacing-xl);
}

.Linear {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section titles */
.section-title {
    font-size: var(--font-6xl);
    font-weight: 500;
    text-align: center;
    line-height: 100%;
}

.section-subtitle {
    font-size: var(--font-md);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    line-height: 100%;
}

.navbar-brand img {
    height: 60px;
    width: 60px;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 400;
    margin: 0 var(--spacing-sm);
    position: relative;
    font-size: var(--font-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link.active {
    font-weight: 700;
}


.nav-left {
    margin-right: var(--spacing-md);
    gap: var(--spacing-sm);
}

.btn-register {
    width: 126px;
    background-color: var(--text-white) !important;
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: var(--font-base);
    line-height: 100%;
    letter-spacing: 0%;
}

.btn-register:hover {
    background-color: var(--text-white) !important;
    color: var(--text-primary);
}

/* Cart styles */
.cart {
    position: relative;
}

.cart .cart-count {
    position: absolute;
    top: 1px;
    right: 0px;
    background: #C77A30;
    color: var(--text-white);
    font-size: var(--font-xs);
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 999px;
    line-height: 1;
}

/* Language toggle */
.change-language {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: var(--font-base);
    transition: all 0.3s ease;
}

.change-language:hover {
    color: var(--text-white);
    background-color: transparent;
}

.service {
    background: var(--gradient-bg-secondary);
    border-radius: var(--radius-lg);
    position: relative;
}

.hero-content {
    max-width: 650px;
    margin: var(--spacing-md);
    padding: var(--spacing-md) 0;
}

.hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 100%;
    font-size: 35px;
}

p.hero-text {
    font-size: var(--font-xl);
    font-weight: 400;
    line-height: 26px;
}

.hero-image {
    position: absolute;
    top: -5rem;
    left: 3rem;
    max-width: 42%;
    height: auto;
    z-index: 10;
}

.introducing {
    margin: var(--spacing-sm) var(--spacing-md);
    padding: var(--spacing-xxl) var(--spacing-md);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.introducing-content {
    align-items: center;
    gap: var(--spacing-md);
    max-width: 500px;
}

.introducing-title {
    font-size: var(--font-6xl);
    font-weight: 600;
    line-height: 60px;
}

h2.introducing-subtitle {
    font-size: var(--font-2xl);
    font-weight: 600;
    line-height: 45px;
}

.service-section {
    margin: var(--spacing-md) var(--spacing-xxl);
    padding: var(--spacing-md) 0;
}

.service-list {
    background: var(--text-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.service-card {
    padding: var(--spacing-md);
}

.service-title {
    font-size: var(--font-3xl);
    font-weight: 550;
    line-height: 100%;
}

/* World map card */
.world-map-card {
    padding: var(--spacing-md);
    background: var(--gradient-service);
    border: 3px solid #FFFFFF26;
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1;
    height: 100%;
}

.world-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.w-card{
    height: 45px;
}

.world-map-icon {
    position: relative;
    display: inline-block;
}

.world-map-icon img {
    display: block;
    position: relative;
    z-index: 2;
    height: 45px;
    width: 45px;
}

.world-map-icon .ellipse {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: #3DA1FF;
    border-radius: 50%;
    z-index: 1;
}

.world-map-title {
    margin-top: auto;
    margin-bottom: auto;
}

/* .world-map-text {
    color: var(--text-white);
}  */

.key-figure-section .container-fluid {
    background-image: 
        url('../images/home/world-map.png'), 
        var(--gradient-primary);
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
    background-size: contain, cover;
    background-blend-mode: overlay;
    position: relative;
    color: #fff;
    padding: var(--spacing-lg);
    border-radius: 50px;
}

.key-figure-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 29px;
}

.key-figure-title {
    font-size: var(--font-6xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 0;
}

.key-figure-text {
    font-size: var(--font-3xl);
    font-weight: 400;
}


#faq-list {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.faq-box {
    background: #EFF6FB;
    border-radius: 8px;
    padding: 15px var(--spacing-md);
    margin-bottom: 15px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.faq-box.active {
    background: #EFF6FB;
    box-shadow: 0 0 10px rgba(217, 187, 255, 0.5);
    border-radius: var(--radius-md);
}

.faq-box.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.faq-question {
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    font-size: var(--font-xl);
}

.faq-box.active .faq-question {
    color: #268AFC;
}

.faq-answer {
    display: none;
    margin-top: var(--spacing-sm);
    color: var(--text-primary);
    text-align: justify;
}

.faq-toggle {
    font-size: 24px;
    color: var(--text-white);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.faq-first-box {
    cursor: pointer;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    gap: 9px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.faq-overlay {
    position: absolute;
    top: 0;
    padding: 1px;
    left: -10px;
    height: 100%;
    background: rgba(181, 216, 255, 1);
}

.faq-first-box.active {
    background: #E5F1FE;
}

.faq-first-box.active .faq-overlay{
    background: linear-gradient(90deg, #0024FF 0%, #5890FF 100%);
    padding: 1.5px;
}

.faq-first-question {
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    font-size: var(--font-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-partner {
    background: #d7d5f278;
    padding: 30px 0;
}

.partner-bg {
    background: #EFF6FB;
}

.partner-card img {
    width: 50px;
}

.partner-name {
    font-family: var(--font-roboto);
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    color: #000000;
    margin-left: 15px;
}

.news-card-primary {
    border-radius: var(--radius-base);
    background-origin: border-box;
    background-clip: content-box, border-box;
    height: 100%;
}

.news-card-primary img {
    max-height: 670px;
}

.news-overlay {
    background: linear-gradient(180deg,
            rgba(132, 27, 219, 0),
            rgba(132, 27, 219, 0.71),
            rgba(132, 27, 219, 1));
    opacity: 1.2;
    padding: var(--spacing-md);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    color: var(--text-white);
}

h3.news-title {
    font-size: var(--font-4xl);
    font-weight: 700;
    line-height: 120%;
}

p.news-text {
    font-size: var(--font-lg);
    font-weight: 300;
    line-height: 26px;
    color: rgba(255, 255, 255, 1);
}

.news-secondary-title,
.news-third-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.see-detail-link {
    display: inline-block;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    font-size: var(--font-base);
    transition: all 0.3s ease;
}

.see-detail-link:hover {
    text-decoration: none;
}

.see-detail-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #999;
}

img.news-secondary-img,
img.news-third-img {
    border-radius: var(--radius-md);
    min-height: 300px;
}

.news-secondary-content,
.news-third-content {
    position: relative;
}

.news-secondary-tag {
    position: absolute;
    top: 15px;
    right: 336px;
    background: #E11D48;
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    padding: var(--spacing-sm) var(--spacing-md);
}

.news-third-tag {
    position: absolute;
    top: 15px;
    right: 336px;
    background: #171717;
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    padding: var(--spacing-sm) var(--spacing-md);
}

.news-section .btn-view-all {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: var(--radius-full);
    padding: 15px var(--spacing-lg);
    font-weight: 700;
    font-size: var(--font-lg);
    line-height: 20px;
    letter-spacing: 0%;
    transition: all 0.3s ease;
}

.plan {
    padding: 4rem 0;
}

.pricing-card {
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 20px 30px;
    border: 1.5px solid #268AFC;
    margin: 0 5px ;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.plan-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-base);
}

.plan-title {
    font-weight: 500;
    color: var(--text-primary);
    line-height: 100%;
}

.pricing-price {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 100%;
}

.pricing-price .period {
    font-size: var(--font-base);
    font-weight: 400;
    color: var(--text-primary);
}

.features {
    list-style: none;
    flex-grow: 1;
    padding: 0;
}

.features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 26px;
}

.pricing-card .btn {
    background: linear-gradient(90deg, #A0D1FF 0%, #AFDCFF 100%);
    border-radius: var(--radius-md);
    color: var(--secondary-color);
    font-size: var(--font-xl);
    font-weight: 700;
    line-height: 100%;
    transition: all 0.3s ease;
}

#plan-carousel .owl-item.center .pricing-card {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.owl-item.center .pricing-card {
    border-image: var(--gradient-primary) 1;
    border-radius: 20px;
}

.newsletter-section {
    background: var(--gradient-bg-secondary);
    width: 90%;
    margin: auto;
    color: var(--text-white);
    padding: var(--spacing-xxl) 0;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3.newsletter-title {
    font-size: var(--font-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
    padding: 5px;
}

h2.newsletter-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.newsletter-subtitle {
    font-size: var(--font-base);
    font-family: var(--font-nunito);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

.email-form {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background: #FFFFFFC9;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.email-input {
    flex: 1;
    padding: 15px var(--spacing-md);
    padding-right: 150px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: var(--font-base);
    outline: none;
}

.email-input::placeholder {
    color: var(--text-muted);
    font-size: var(--font-sm);
    font-weight: 400;
    font-family: var(--font-nunito);
}

.subscribe-btn {
    position: absolute;
    right: var(--spacing-xs);
    padding: 12px var(--font-2xl);
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: var(--font-sm);
}

.subscribe-btn:hover {
    box-shadow: var(--shadow-sm);
}

.footer-main-section {
    color: var(--text-primary);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer-logo {
    width: 100px;
}

.footer-section {
    align-items: center;
    margin: 0 var(--spacing-lg);
}

.footer-title {
    font: 700 var(--font-lg) var(--font-nunito);
    text-transform: uppercase;
    text-align: justify;
}

.footer-content {
    font: 400 var(--font-base) var(--font-nunito);
    text-align: justify;
    margin: var(--spacing-md) 0;
}

.footer-content i {
    border: var(--dark-color) 1px solid;
    border-radius: var(--radius-full);
    margin-left: var(--spacing-md);
}

.payment-icon {
    height: 32px;
    width: 69px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav-section {
    gap: var(--spacing-xl);
    margin: 0 var(--spacing-md);
}

.footer-nav-section .nav-item {
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-roboto);
    font-size: var(--font-md);
}

.footer-nav-section .social-icons {
    text-align: center;
    margin: var(--spacing-md) 0;
    height: 35px;
}

.footer-nav-section .social-icons a {
    margin: 0 15px;
    color: var(--text-primary);
    font-size: 35px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    text-decoration: none;
}

.footer-copyright {
    padding: var(--spacing-sm);
    background: var(--gradient-primary);
    margin: 0;
}

.footer-copyright p {
    color: var(--text-white);
}


@media (max-width: 767.98px) {

    /* Navigation responsive */

    .navbar-content {
        margin-left: 0;
        margin-right: 0;
        padding: 10px;           
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-left {
        margin-right: 0;
        gap: 5px;               
        flex-direction: row;
        align-items: center;
        float: right;
    }

    /* Hero responsive */
    .hero-content {
        margin: 10px;            
        padding: 30px 0;         
    }

    h1.hero-title {
        font-size: 35px;        
    }

    .hero-image {
        position: static;
        max-width: 100%;
    }

    .introducing-title {
        font-size: 40px;         
        line-height: 50px;
    }

    /* Service section responsive */
    .service-section {
        margin: 10px 20px;      
    }

    .partners-section {
        margin: 10px 20px;     
    }
}

@media (max-width: 768px) {
    #plan-carousel .owl-item.center .pricing-card {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); 
        z-index: 1000;
    }

    /* Newsletter responsive */
    .newsletter-section {
        width: 90%;
        margin: 10px auto;       
        padding: 30px 10px;      
    }

    .email-form {
        flex-direction: column;
        gap: 10px;
        background: none;               
    }

    .email-input {
        padding-right: 20px;   
        background: #FFFFFFC9;
        border-radius: var(--radius-lg);
        overflow: hidden;  
    }

    .subscribe-btn {
        position: static;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.pricing-card:hover {
    transform: translateY(0);
}

.navbar-content {
    background: var(--gradient-bg-secondary);
    padding: 10px 20px;
    border-radius: 100px;
}


.navbar-content {
    width: auto;
}

.btn-primary {
    background: var(--gradient-primary);
}

@media (min-width: 992px) {
    .navbar-content {
        width: 80% !important;
    }
}

.owl-item.center .pricing-card {
    border: none;
}

.owl-item.center .pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(to right, #E83E8C, #6610F2);
    -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.nav-item.dropdown.user-dropdown {
    color: #ffffff;
}
img.icon_footer {
    width: 20px;
}

.contact-item {
    text-decoration: none;
    /* color: red; */
}

.contact-item a {
    color: #333;
}

.contact-item a {
    text-decoration: none;
}
.cta-buttons {
    padding: 10px 5px;
    border-radius: 30px;
}

.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    color: #333;
    transition: all 0.3s;
}

.cta-btn:hover {
    color: #0d6efd;
    transform: scale(1.05);
}

.cta-btn img {
    transition: transform 0.3s;
}

.cta-btn:hover img {
    transform: scale(1.1);
}

.cta-text {
    margin-top: 4px;
    font-weight: 500;
}

.swiper h5{
    padding: 5px;
    line-height: 25px;
}

.swiper-slide-active h5{
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiper-slide-active .btn{
    background: var(--gradient-primary);
    color: #fff;
}

.partner-section .swiper-slide {
    width: auto; /* hoặc một giá trị cố định */
    max-width: 250px;
    flex-shrink: 0;
}


.pricing-card .overlay {
    position: absolute;
    top: -20px;
    left: 5%;
    padding: 3px 20px;
    color: #333;
    z-index: 2;
    background: linear-gradient(90deg, #95CCFF 0%, #FFFFFF 100%);
    border-radius: 100px;
    border: 1px solid #0024FF;
}

.swiper-slide-active .pricing-card .overlay {
    color: #fff;
    background: var(--gradient-primary);
}


footer {
    background-color: #fff;
    z-index: -2;
}

footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 80%;
    width: 100%;
    background: linear-gradient(90deg, rgba(160, 209, 255, 0.34) 0%, rgba(175, 220, 255, 0.34) 100%);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: -1;
}

.post-feature-one-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-short-description {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: rgba(154, 154, 154, 1) !important;
}

.card-post-feature-left .post-name{
    font-size: 20px;
}

.offcanvas .nav-link {
    color: var(--text-primary) !important;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    position: relative;
}

/* Buttons styling */
.offcanvas .btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
}

.navbar{
    box-shadow: none;
    background: transparent;
}

.plan {
    background-color: #fff;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.btn-linear-primary {
    background: var(--gradient-primary);
    color: #fff;
}

.swiper {
    padding-top: 20px;
}

.cart .product-img {
    width: 50px;
    height: 50px;
}

.error {
    color: red;
}

.card-title {
    display: block;
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: var(--tblr-font-weight-medium);
    line-height: 1.5rem;
}
.discount-badge {
    background: #dc3545;
    color: #fff;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.price-new {
    font-size: 18px;
    font-weight: bold;
    color: #dc3545;
}
.usd-price {
    font-size: 14px;
    color: #28a745;
}
.price-old {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 14px;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.card.product-card a:hover {
    text-decoration: initial;
}
a.accordion-button:after{
    display:none;
}
.cart .product-img {
    width: 50px;
    height: 50px;
}
.cart-header {
    background: #e3f2fd;
    font-weight: bold;
}
.cart-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    align-items: center;
}

button#addToCart {
    border-radius: 8px;
    border: 1px solid #7237EC;
    color: #7237EC;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    color: var(--primary-color);
    border-color: #0024FF;
}
.text-primary{
    color:  #003699 !important;
}

.error{
    color:red
}
div#group-payment-method img {
    width: 50px;
}
.active-page {
    display: block;
}
.page-modal {
    width: 50%;
    flex-shrink: 0;
    padding: 10px;
}
.page-container {
    width: 200%;
    display: flex;
    transition: transform 0.4s ease-in-out;
}
div#paymentModal .btn-modal-footer {
    border: 0px;
}

.main-content.page-account {
    margin-top: 40px;
}
div#accountCollapse ul a.active, div#accountCollapse ul a:hover {
    background: var(--gradient-primary);
    color: #fff;
}
div#accountCollapse ul a {
    padding: 11px 12px;
    font-size: 24px;
    font-weight: initial;
    text-decoration: none;
    border: 1px solid rgba(173, 173, 173, 0.14);
    color: rgba(0, 0, 0, 1);
}
.filter-category p {
    margin-bottom: 0px;
}
div#accountCollapse ul a {
    padding: 11px 12px;
    font-size: 24px;
    font-weight: initial;
    text-decoration: none;
    border: 1px solid rgba(173, 173, 173, 0.14);
    color: rgba(0, 0, 0, 1);
}

div#accountCollapse ul a.active, div#accountCollapse ul a:hover {
    background: var(--gradient-primary);
    color: #fff;
}
div#accountCollapse ul a.active p, div#accountCollapse ul a:hover p{
    color: #ffff;
}
.level-group {
    border-radius: 32px;
    padding: 2px;
    background: var(--gradient-primary);
    position: relative;
}
.leve-group-inner {
    border-radius: 30px;
    background: white;
    padding: 23px;
}
.list-level {
    justify-content: space-around;
    gap: 4px;
    flex: 9;
}
.item-level img {
    max-width: 42px;
}
.list-level .item-level span {
    font-size: 18px;
}
.icon-robot {
    flex: 1;
}
.icon-robot img {
    position: absolute;
    bottom: 17px;
    right: 0px;
}
.show-my-level {
    background: var(--gradient-primary);
    padding: 5px 18px;
    color: #ffff;
    border-radius: 16px;
    margin: 34px 0px;
    font-size: 24px;
}
.show-my-level .name {
    font-size: 36px;
    color: #fff;
}
.show-my-level .level-name {
    font-size: 24px;
    color: #fff;
}
.show-my-level p, .show-my-level>div {
    margin: 18px 0px;
}
.show-my-level .progress {
    width: 100%;
    height: 17px;
    border-radius: 32px;
}
.bg-atm {
    background: linear-gradient(250deg, #a191c6, #6c3ce4);
    width: 320px;
}
.atm-title {
    font-size: 12px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.atm-balance {
    line-height: 29px;
}

.atm-balance {
    font-size: 32px;
}
.atm-note {
    font-size: 12px;
    margin-top: 30px;
}
.countdown span {
    font-weight: bold;
    font-size: 24px;
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
a.btn.btn-register.btn-primary-custom.main-btn-background {
    border-radius: 100px;
    border: 0px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.list-level .item-level img {
    align-self: center;
}
@media (max-width: 767.98px) {

    /* Navigation responsive */
    #navbarNav {
        margin-left: 0;
        margin-right: 0;
        padding: 10px;
        border-radius: 20px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-left {
        margin-right: 0;
        gap: 5px;
        flex-direction: row;
        align-items: center;
        float: right;
    }

    /* Hero responsive */
    .hero-content {
        margin: 10px;
        padding: 30px 0;
    }

    h1.hero-title {
        font-size: 40px;
    }

    .hero-image {
        position: static;
        max-width: 100%;
    }

    .introducing-title {
        font-size: 40px;
        line-height: 50px;
    }

    /* Service section responsive */
    .service-section {
        margin: 10px 20px;
    }

    .partners-section {
        margin: 10px 20px;
    }
    .post-feature-one-image img{
        height: auto;
    }
}


.post-short-content {
    position: absolute;
    padding: 10px 30px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffff;
    background: #00000095;
    opacity: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    transform: translateY(100%);
}

.post-feature-one:hover .post-short-content {
    opacity: 1;
    transform: translateY(0%);
}

.post-feature-one-image {
    width: 100%;
    height: 100%;
}

.post-feature-one {
    position: relative;
    overflow: hidden;
}

.post-feature-one .post-name {
    font-size: 21px;
    line-height: 31px;
}

.post-feature-one .post-short-description {
    font-size: 18px;
    color: #fff;
}

.post-feature-one .post-timer {
    font-size: 14px;
    color: #fff;
}

.card-post-image-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-post-image-left img {
    max-height: 120px;
}