/* PbootCMS Modern Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #fff; /* Change default background to white */
}

p,h1,h2,h3,h4,h5,h6,ul,dl,dd,ol {
    list-style: none;
}

p, dl, dt, dd, ul {
	margin: 0px;
	padding: 0px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #eaf2ff 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-section .badge-group .badge {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.2);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-section .hero-subtitle {
    font-size: 1.15rem;
    color: #5a6a7a;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.hero-section .hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.hero-section .hero-buttons .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.hero-section .hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.hero-section .hero-buttons .btn-secondary {
    background-color: #ffffff;
    color: #007bff;
    border: 1px solid #007bff;
}

.hero-section .hero-buttons .btn-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

/* General Section Styling */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.py-5 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Pricing Section */
.pricing-section .card-header {
    background-color: transparent;
    border-bottom: none;
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.pricing-section .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.pricing-section .card-subtitle {
    font-size: 0.9rem;
    color: #7a8a9a;
}

.pricing-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease;
    overflow: hidden; /* To keep the top bar contained */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.12);
}

/* Colored top bars */
.pricing-card-blue { border-top: 5px solid #007bff; }
.pricing-card-orange { border-top: 5px solid #fd7e14; }
.pricing-card-teal { border-top: 5px solid #20c997; }

.pricing-card .card-body {
    padding: 1rem 1.5rem 2rem;
    text-align: center;
}

.pricing-card .price-display {
    margin-bottom: 1.5rem;
}

.pricing-card .price-currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #5a6a7a;
    vertical-align: super;
}

.pricing-card .price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.pricing-card .price-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #5a6a7a;
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card .feature-list li {
    margin-bottom: 0.75rem;
    color: #5a6a7a;
}

.pricing-card .feature-list .icon {
    margin-right: 10px;
}

.pricing-card-blue .feature-list .icon { color: #007bff; }
.pricing-card-orange .feature-list .icon { color: #fd7e14; }
.pricing-card-teal .feature-list .icon { color: #20c997; }

.pricing-card-orange .btn-warning {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: #fff;
}

.pricing-card-teal .btn-info {
    background-color: #20c997;
    border-color: #20c997;
    color: #fff;
}

/* Advantages Section */
.advantages-section {
    background-color: #f8f9fa;
}

.advantage-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.1);
    border-color: transparent;
}

.advantage-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #eaf2ff;
    color: #007bff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantage-card .h4 {
    color: #2c3e50;
    font-weight: 600;
}

/* Process Section */
.process-section {
    background-color: #fff;
}

.process-section .row {
    position: relative;
    display: flex;
    justify-content: space-between;
}

/* Timeline Connector Line */
.process-section .row::before {
    content: '';
    position: absolute;
    top: 30px; /* Adjust vertical position */
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #007bff;
    color: #007bff;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-card .card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-card .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.08);
}

.faq-card .card-body .h5 {
    font-weight: 600;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.faq-card .card-body div {
    color: #5a6a7a;
}

/* News Section */
.news-section .list-group-item {
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.news-section .list-group-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.08);
    border-left: 3px solid #007bff;
}

.news-section .list-group-item h5 {
    font-weight: 600;
    color: #2c3e50;
}

.news-section .list-group-item small {
    color: #7a8a9a;
}

.news-section .list-group-item p {
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #eaf2ff;
}

.final-cta-section .btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.modern-footer {
    background-color: #2c3e50;
    color: #aab8c5;
    padding: 40px 0;
    font-size: 0.9rem;
}

.modern-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-footer p {
    margin: 0;
}

.modern-footer a {
    color: #aab8c5;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.modern-footer a:hover {
    color: #ffffff;
}

/* Styles for VPCS Imported Content */
.vpcs-imported-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.vpcs-section-wrapper {
    max-width: 1200px;
    margin: 0 auto 80px auto; /* Add bottom margin for spacing */
    text-align: center;
}

.products_top_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.custom-tabs-nav {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 40px;
}

.custom-tabs-tab {
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #5a6a7a;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.custom-tabs-tab:hover, .custom-tabs-tab.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.custom-tabs-tab img {
    height: 24px;
}

.products_bot {
    padding: 0; /* Remove horizontal padding */
}

.products_items_single {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
    background-color: #fff; /* Set background to white */
    padding: 80px 0; /* Increase vertical padding, remove horizontal */
    width: 100%; /* Make it fill the container */
    gap: 40px;
    transition: all 0.3s ease;
}

.product_img {
    width: 50%;
    border-radius: 8px;
}

.product_des {
    text-align: left;
}

.product_des .title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product_des .title span {
    margin-right: 10px;
}

.single_detail {
    margin-bottom: 20px;
}

.single_detail_title {
    font-size: 1.2rem; /* Increased from 1.1rem */
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.single_detail_des {
    font-size: 1.1rem; /* Increased from 1rem */
    color: #5a6a7a;
    line-height: 1.6;
}

/* Versions Box Section */
.versions_box {
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
}

.versions_box .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.version_main {
    /* Swiper handles the layout, so we remove grid properties */
    max-width: 1200px;
    margin: 0 auto;
}

.version_item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.version_item:hover {
    transform: translateY(-5px);
}

.version_item .img {
    width: 100%;
    height: 180px;
}

.version_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.version_item_bot {
    padding: 20px;
    background-image: url('/static/vpcs_assets/Frame_2117369771.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.version_item_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
}

.version_item_des {
    font-size: 0.95rem;
    color: #888888;
    margin-top: 5px;
}

/* Intro Box Section */
.intro_box {
    padding: 80px 0;
}

.intro_box .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro_detail .text {
    max-width: 500px;
    text-align: left;
}

.intro_detail .pic {
    max-width: 550px;
}

.intro_detail .pic img {
    width: 100%;
    border-radius: 12px;
}

.intro_detail .text_title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.text_title_img {
    height: 30px;
    margin-left: 15px;
}

.intro_detail .text_des {
    font-size: 1.1rem;
    color: #5a6a7a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.intro_detail .try_btn .btn {
    padding: 10px 25px;
    font-weight: 600;
}

/* Partner Logos Section */
.partner_swiper_box {
    padding: 80px 0;
    background-color: #f8f9fa;
    width: 100%;
}

.partner_swiper_box .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.partner-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* === Custom Versions Carousel Start === */

.versions-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.versions-carousel {
    overflow: hidden;
}

.versions-carousel__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.versions-carousel__item {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px; /* Create gutter/gap between items */
    box-sizing: border-box;
}

.versions-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #F2F3F5;
    border-radius: 50%;
    color: #4E5969;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid #E5E6EB;
    box-shadow: none;
    padding: 0; /* Reset padding for button */
}

.versions-carousel__btn:hover {
    background-color: #E5E6EB;
    color: #1D2129;
}

.versions-carousel__btn--prev {
    left: -20px;
}

.versions-carousel__btn--next {
    right: -20px;
}

.versions-carousel__btn.disabled {
    color: #C9CDD4;
    background-color: #F7F8FA;
    cursor: not-allowed;
    border-color: #E5E6EB;
}

/* === Custom Versions Carousel End === */

/* Partner Logo Waterfall Animation */
.partner-logo-waterfall {
    max-width: 100%;
    height: 400px; /* Adjust height as needed */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.partner-logo-row {
    display: flex;
    justify-content: center;
    gap: 10px; /* Reduced from 20px */
    width: 200%; /* Make rows wider to have content to scroll into view */
    position: relative;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.partner-logo-row .partner-logo-item {
    flex-shrink: 0;
    min-width: 220px; /* Fixed width for each item */
    height: 80px;
    margin: 10px 0; /* Add vertical margin to space out rows */
    background-color: transparent; /* Make container invisible */
    box-shadow: none; /* Remove shadow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-1 { animation-name: scroll-down; animation-duration: 40s; }
.row-2 { animation-name: scroll-up; animation-duration: 55s; }
.row-3 { animation-name: scroll-down; animation-duration: 45s; }
.row-4 { animation-name: scroll-up; animation-duration: 60s; }

@keyframes scroll-up {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-down {
    from { transform: translateX(-50%); }
    to { transform: translateX(0%); }
} 

.my-footer {
    background: #252525;
    text-align: center;
    color: #7b7b7b;
    padding: 20px 0;
}
.footerTop {
    border-bottom: 1px solid #818181;
    margin-bottom: 10px;
    height:40px;
    font-size: 15px;
}
.footerTop a {
    color: #afafaf;
    margin-left: 30px;
}
.footerTop a:hover {
    text-decoration:  none;
    color: #fff
}

/*右侧客服 返回顶部*/
.aside-bar{position: fixed;z-index: 10;top: 76%;right: 10px;text-align: center;background-color: #fff;box-shadow: 0 2px 10px rgba(89,89,89,.2);}
.aside-bar>li{padding: .6em;}
.aside-bar>li>a{font-size: .75em;color: #4c4c4c;text-decoration: none;}
.aside-bar>li>a:hover{color: #4291e3;transition: all .5s;}
.aside-bar>li>a>p{margin-bottom: 0;padding-top: .4em;}
.aside-bar>li>a>i{display: block;width: 100%;height: 31px;transition: all .5s;}
.img-top{background: url("../images/top-1.png") no-repeat center center;}
.aside-bar>li>a:hover .img-top{background-image: url("../images/top-2.png");}
