/* Toppage Styles */
.text-unread {
    color: #EC4B0A;
}

.toppage-container {
    max-width: 1335px;
    margin: 0 auto;
    min-height: 100vh;
}

#navbarNavContent {
    display: none !important;
}

/* Main Page Title */
.page-header {
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.page-main-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* Section 1: Account Guide Section */
.account-guide-section {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 33px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    background: #e9ecef;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #dee2e6;
}



.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--Text-Text-secondary, rgba(69, 69, 69, 1));
    margin: 0;
    line-height: 1.2;
}

/* Guide Content */
.guide-content {
    padding: 2rem;
    background: #ffffff;
}

.guide-subsection {
    margin-bottom: 2rem;
}

.guide-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--Text-Text-primary, rgba(2, 2, 2, 1));
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.guide-text {
    font-size: 16px;
    color: var(--Text-Text-secondary, rgba(69, 69, 69, 1)) !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Special Notes */
.special-notes {
    margin-top: 1rem;
}


.note-item {
    color: #0DA64F;
}

a.btn.btn-signup {
    padding: 40px 48px 40px 48px;
}
a.btn.btn-cyan {
    padding: 40px 48px 40px 48px;
}

.note-marker {
    color: inherit;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.highlight-link {
    color: #0d6efd;
    text-decoration: underline;
    font-weight: 500;
}

/* Action Buttons */
.action-buttons {
    padding: 2rem;
    background: #ffffff;
    display: flex;
    gap: 4%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.button-group {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 48%;
}
.action-buttons .button-group a{
    font-size: 24px !important;
    color: var(--Base-White, rgba(255, 255, 255, 1)) !important;
    font-weight: 700 !important;

}
.section-icon {
    margin-right: 40px;
}

.button-group-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.button-label {
    font-size: 16px;
    color: var(--Text-Text-secondary, rgba(69, 69, 69, 1)) !important;
    font-weight: 500;
}

/* Orange Button Style */
.btn-orange {
    background: var(--Component-color-Role-user-Button-primary-btn-primary-bg, rgba(253, 143, 70, 1));
    border-color: #fd7e14;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    border: none;
}

.btn-disabled {
    background: #d1d1d1;
    border-color: #fd7e14;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    border: none;
}

.btn-signup {
    background: linear-gradient(86.67deg, #FEB373 16.81%, #FB6714 83.9%);
    border-color: #fd7e14;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    border: none;
}
.btn-signup:hover, .btn-signup:active, .btn-signup:focus {
    background-color: #e8690b;
    border-color: #e8690b;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(253, 126, 20, 0.3);
}
.btn-disabled:hover, .btn-disabled:active, .btn-disabled:focus {
    background-color: #d1d1d1;
    border-color: #d1d1d1;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(253, 126, 20, 0.3);
}
.btn-orange:hover, .btn-orange:active, .btn-orange:focus {
    background-color: #e8690b;
    border-color: #e8690b;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(253, 126, 20, 0.3);
}

/* Cyan Button Style */
.btn-cyan {
    background: linear-gradient(86.67deg, #75DCFF 16.81%, #00B0F0 83.9%);
    border-color: #0dcaf0;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    border: none;
}

.btn-cyan:hover, .btn-cyan:active, .btn-cyan:focus {
    background-color: #0bb5d4;
    border-color: #0bb5d4;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 202, 240, 0.3);
}


.font-42{
    font-size: 42px !important;
    font-weight: 700 !important;
}
.font-36{
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--Text-Text-secondary, rgba(69, 69, 69, 1)) !important;
}

/* Section 2: Service Section */
.service-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    max-width: 400px;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #FFF5ED;
    border: 1px solid #FD8F46;
}

/* Card Icon */
.card-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card Content */
.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    flex-grow: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--Text-Text-primary, rgba(2, 2, 2, 1));
    margin-bottom: 0.75rem;
    line-height: 1.3;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-description {
    font-size: 16px;
    color: var(--Text-Text-secondary, rgba(69, 69, 69, 1)) !important;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

/* Card Action */
.card-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.card-btn {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
    border: none;
}

.card-btn:hover {
    background-color: #FD8F46;
    border-color: #FD8F46;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Gi Badge */
.gi-badge {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 24px;
    height: 24px;
    background-color: #6f42c1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
}


@media (min-width: 1281px) {
    .feature-card {
        min-height: 364px;
        max-width: 403px;
        padding: 1.25rem;
        margin: auto;
    }
    .service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 1280px) {
    .feature-card {
        min-height: 364px;
        max-width: 403px;
        padding: 1.25rem;
        margin: auto;
    }
    .service-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 1006px) {
    .feature-card {
        min-height: 364px;
        max-width: 403px;
        padding: 1.25rem;
        margin: auto;
    }
    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        background: #ffffff;
    }
    .button-group {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
}



@media (max-width: 768px) {
    .toppage-container {
        width: 100%;
        padding: 1rem 0;
    }
    .feature-card {
        min-height: 364px;
        min-width: 403px;
        padding: 1.25rem;
        margin: auto;
    }
    .service-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        background: #ffffff;
    }
    .button-group {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1rem;
        margin: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .toppage-container {
        padding: 0;
    }
    #main-warp-container-nosidebar {
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-top: 0px !important;
    }
    .section-title {
        font-size: 26px !important;
    }
    .page-main-title {
        font-size: 28px !important;
    }
}


/* Animation for cards */
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }

/* Custom scrollbar for better UX */
.toppage-container::-webkit-scrollbar {
    width: 8px;
}

.toppage-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.toppage-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.toppage-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.Footer-container.footer-custom .row.justify-content-between.align-items-center {
    display: none !important;
}
.customize-color {
    color: red;
    font-weight: 900;
    font-size: 23px;
    background-color: yellow;
    padding: 5px;
}
.customize-color:last-child {
    margin-top: 20px;
}
