/**
 * banner styles
 **/
/* Swiper pagination custom horizontal line styles */
.banner .swiper-pagination {
    position: absolute !important;
    bottom: 50px !important;
    left: 12% !important;
    right: auto !important;
    width: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    z-index: 10 !important;
}

.banner .swiper-pagination-bullet {
    background-color: #ffffff !important;
    width: 60px !important;
    height: 3px !important;
    opacity: 0.4 !important;
    border-radius: 0 !important;
    margin: 0 12px 0 0 !important;
    cursor: pointer;
    border: none !important;
    display: inline-block !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    transition: width 0.3s ease, opacity 0.3s ease, background-color 0.3s ease !important;
}

.banner .swiper-pagination-bullet-active {
    background-color: #ea222d !important;
    width: 120px !important;
    opacity: 1 !important;
}

/* Responsive alignment for mobile/tablet */
@media only screen and (max-width: 1100px) {
    .banner .swiper-pagination {
        left: 8% !important;
        bottom: 30px !important;
    }
}

.swiper-slide{
    position: relative;
}
.banner .swiper-slide-link{
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.banner .swiper-slide-link:hover{
    color: inherit;
    text-decoration: none;
}
.banner .swiper,
.banner .swiper-slide{
    height: calc(100vh - 98px);
    min-height: 620px;
}
.banner .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .swiper-slide .swiper-slide-title{
    position: absolute;
    top: 50%;
    left: 12% !important;
    right: auto !important;
    transform: translateY(-50%);
    color: #FFFFFF !important;
    width: 42%;
    text-align: left !important;
    z-index: 2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}
.banner .swiper-slide .swiper-slide-name{
    color: #FFFFFF !important;
    font-size: 58px;
    line-height: 1.1;
    font-weight: bold;
    text-transform: uppercase;
    user-select: text;
    -webkit-user-select: text;
    pointer-events: auto;
    cursor: text;
}
.banner .swiper-slide .swiper-slide-desc{
    color: #FFFFFF !important;
    margin-top: 25px;
    font-size: 25px;
    line-height: 1.5;
    font-weight: bold;
    user-select: text;
    -webkit-user-select: text;
    pointer-events: auto;
    cursor: text;
}
.swiper-slide-title span{
    color: #FFFFFF !important;
}
.banner .swiper-slide-actions {
    margin-top: 40px;
    display: flex;
    gap: 24px;
    pointer-events: auto;
}
.banner .swiper-slide-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 42px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.banner .swiper-slide-actions .btn-quote {
    background-color: #ea222d;
    color: #ffffff;
    border: 2px solid #ea222d;
}
.banner .swiper-slide-actions .btn-quote:hover {
    background-color: #c91922;
    border-color: #c91922;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 34, 45, 0.4);
}
.banner .swiper-slide-actions .btn-products {
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.banner .swiper-slide-actions .btn-products:hover {
    background-color: #ffffff;
    color: #ea222d;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 1100px) and (max-width: 1440px) {
    .banner .swiper-slide .swiper-slide-title{
        left: 10%;
        width: 48%;
    }
    .banner .swiper-slide .swiper-slide-name{
        font-size: 58px;
    }
    .banner .swiper-slide .swiper-slide-desc{
        font-size: 25px;
    }
    .banner .swiper-slide-actions {
        margin-top: 30px;
    }
    .banner .swiper-slide-actions a {
        height: 45px;
        padding: 0 30px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 1100px) {
    .banner .swiper,
    .banner .swiper-slide{
        height: 520px;
        min-height: 420px;
    }
    .banner .swiper-slide .swiper-slide-title{
        left: 8%;
        width: 78%;
    }
    .banner .swiper-slide .swiper-slide-name{
        font-size: 58px;
    }
    .banner .swiper-slide .swiper-slide-desc{
        font-size: 25px;
    }
    .banner .swiper-slide-actions {
        margin-top: 20px;
    }
    .banner .swiper-slide-actions a {
        height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }
}




/**
 * hot products styles
 **/
/* ===== SOLUTIONS SECTION SHOWCASE OVERHAUL ===== */
.hot-products {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0;
    box-sizing: border-box;
}

.products-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.hot-products .title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hot-products .hot-products-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 12px auto 0 auto;
    max-width: 800px;
}

/* Flex Container Splitting Sidebar and Grid */
.products-showcase-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

/* Left Sidebar (32% width) */
.products-showcase-sidebar {
    width: 32%;
    flex-shrink: 0;
}

.sidebar-sticky-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 100px; /* Sticky scroll behavior */
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Category menu list style */
.sidebar-category-nav {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #eaeaea;
    padding-left: 0;
}

.category-nav-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #666666;
    font-size: 16px;
    font-weight: 600;
    margin-left: -2px; /* overlap border-left */
    border-left: 2px solid transparent;
}

.category-nav-item:hover {
    color: #ea222d;
    background-color: rgba(234, 34, 45, 0.02);
}

.category-nav-item.active {
    color: #ea222d;
    border-left: 2px solid #ea222d;
    background-color: rgba(234, 34, 45, 0.04);
}

.category-nav-item .nav-index {
    font-size: 13px;
    font-weight: 800;
    color: #b0b0b0;
    margin-right: 15px;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s;
}

.category-nav-item.active .nav-index {
    color: #ea222d;
}

.category-nav-item .nav-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-nav-item .nav-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ea222d;
    font-weight: bold;
}

.category-nav-item.active .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Category Overview Box */
.sidebar-category-overviews {
    width: 100%;
}

.category-overview-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 30px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.overview-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ea222d, #f57f17);
}

.overview-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.overview-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 25px 0;
}

.overview-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    box-sizing: border-box;
}

.overview-cta-btn:hover {
    background-color: #ea222d;
    box-shadow: 0 5px 15px rgba(234, 34, 45, 0.2);
}

.overview-cta-btn .btn-icon {
    transition: transform 0.3s ease;
}

.overview-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Right Grid Showcase (68% width) */
.products-showcase-grid-wrapper {
    width: 68%;
    flex-grow: 1;
}

.products-grid-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    animation: slideUpFade 0.5s ease;
}

/* Custom Product Cards */
.showcase-product-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.showcase-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #d1d1d1;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

/* Thumbnail wrapper */
.product-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background-color: #edf1f6;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-product-card:hover .product-card-img-wrap img {
    transform: scale(1.05);
}

/* Shinning sweep overlay */
.product-card-img-wrap::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
    transform: skewX(-25deg);
}

.showcase-product-card:hover .product-card-img-wrap::before {
    animation: shine .75s forwards;
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card content body */
.product-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a2233;
    margin: 0 0 10px 0;
    transition: color 0.3s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.showcase-product-card:hover .product-card-title {
    color: #ea222d;
}

.product-card-excerpt {
    font-size: 13px;
    line-height: 1.6;
    color: #5b687c;
    margin: 0 0 20px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

/* Action button at bottom */
.product-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.action-text {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s;
}

.showcase-product-card:hover .action-text {
    color: #ea222d;
}

.action-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f4f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-product-card:hover .action-circle {
    background-color: #ea222d;
    color: #ffffff;
    transform: rotate(360deg);
}

.action-arrow {
    font-size: 12px;
    font-style: normal;
}

/* Empty state */
.grid-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* Sidebar Combined Contact Area */
.overview-contact-divider {
    height: 1px;
    background-color: #eaeaea;
    margin: 25px 0;
    width: 100%;
}

.overview-contact-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.overview-contact-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overview-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.overview-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    background-color: #fcfcfd;
    transition: all 0.25s ease;
    box-sizing: border-box;
    width: 100%;
}

.overview-contact-item:hover {
    border-color: #ea222d;
    background-color: #fff8f8;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-icon-whatsapp {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%2325D366'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L32 503l138.2-36.2c32.6 17.8 69 27.2 106.4 27.2 122.4 0 222-99.6 222-222 0-59.3-23-115.1-65-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-8.1-4.8-82.1 21.5 21.9-79.9-5.3-8.5c-18.4-29.4-28.2-63.5-28.2-98.8 0-101.8 82.8-184.6 184.6-184.6 49.3 0 95.7 19.2 130.6 54.1 34.8 34.9 54 81.3 54 130.6 0 101.8-82.8 184.6-184.6 184.6zm101.1-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100%;
}

.contact-icon-email {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23ea222d'%3E%3Cpath d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100%;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-lbl {
    font-size: 9px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-val {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    word-break: break-all;
    transition: color 0.25s ease;
}

.overview-contact-item:hover .contact-val {
    color: #ea222d;
}

/* Fade animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */
@media only screen and (max-width: 1400px) {
    .hot-products {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 1200px) {
    .products-showcase-container {
        gap: 30px;
    }
    .products-showcase-sidebar {
        width: 35%;
    }
    .products-showcase-grid-wrapper {
        width: 65%;
    }
    .products-grid-container {
        gap: 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .products-showcase-container {
        flex-direction: column;
        gap: 40px;
    }
    .products-showcase-sidebar {
        width: 100%;
    }
    .sidebar-sticky-wrap {
        position: relative;
        top: 0;
        gap: 30px;
    }
    .sidebar-category-nav {
        flex-direction: row;
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid #eaeaea;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .sidebar-category-nav::-webkit-scrollbar {
        display: none;
    }
    .category-nav-item {
        border-left: none;
        border-bottom: 2px solid transparent;
        margin-left: 0;
        margin-bottom: -2px;
        padding: 12px 15px;
        white-space: nowrap;
    }
    .category-nav-item.active {
        border-left: none;
        border-bottom: 2px solid #ea222d;
    }
    .category-nav-item .nav-arrow {
        display: none;
    }
    .products-showcase-grid-wrapper {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .hot-products {
        margin: 50px auto;
        padding: 0 15px;
    }
    .products-section-header {
        margin-bottom: 30px;
    }
    .hot-products .title {
        font-size: 26px;
    }
    .products-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/**
 * about  styles
 **/
.about{
    width: 1400px;
    margin: 0 auto;
}
.about-wrap{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
    align-items: stretch;
    margin-top: 40px;
}
.about .about-img{
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    height: 100%;
}
.about .about-img img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.about .about-content{
    margin-top: 0;
    display: flex;
    flex-direction: column;
}
.about-heading{
    font-weight: bold;
    font-size: 42px;
    color: #333333;
    line-height: 1.2;
}
.about .about-desc{
    font-size: 16px;
    color: #333333;
    margin-top: 18px;
    line-height: 1.8;
}
.about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 50px;
    margin-top: 30px;
    padding: 0 26px;
    background: #0d57b7;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.about-btn:hover{
    color: #fff;
    text-decoration: none;
    background: #08489a;
}
.about .about-content ul{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}
.about-actions{
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}
.about .about-content .about-content-item{
    padding: 22px 16px 18px;
    background: #fafafa;
    border: 1px solid #ececec;
}
.about .about-content .about-content-item .about-content-num{
    font-family: DIN, DIN;
    font-weight: bold;
    font-size: 36px;
    color: #1A1A1A;
    text-align: center;
    line-height: 1;
}
.about .about-content .about-content-item .about-content-line{
    width: 42px;
    height: 2px;
    background: #ea222d;
    margin: 14px auto 0;
}
.about .about-content .about-content-item .about-content-item-title{
    font-size: 18px;
    font-weight: bold;
    color: #1A1A1A;
    margin-top: 16px;
    text-align: center;
}
.about .about-content .about-content-item .about-content-desc{
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin-top: 8px;
    line-height: 1.6;
}
.about .about-content .about-content-item:hover .about-content-num{
    color: #ea222d;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .about{
        width: 900px;
    }
    .about-wrap{
        gap: 30px;
        margin-top: 30px;
    }
    .about-heading{
        font-size: 42px;
    }
    .about .about-desc{
        font-size: 16px;
        margin-top: 14px;
    }
    .about-btn{
        margin-top: 22px;
        height: 42px;
        font-size: 14px;
    }
    .about-actions{
        margin-top: 22px;
    }
    .about .about-content ul{
        gap: 12px;
        margin-top: 28px;
    }
    .about .about-content .about-content-item .about-content-num{
        font-size: 30px;
    }
    .about .about-content .about-content-item .about-content-item-title{
        font-size: 18px;
        margin-top: 12px;
    }
    .about .about-content .about-content-item .about-content-desc{
        font-size: 13px;
    }
}
@media only screen and (max-width: 1000px) {
    .about{
        width: 700px;
    }
    .about-wrap{
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 24px;
    }
    .about-heading{
        font-size: 42px;
    }
    .about .about-desc{
        font-size: 16px;
    }
    .about-btn{
        margin-top: 18px;
        height: 40px;
        font-size: 13px;
        min-width: 150px;
    }
    .about-actions{
        justify-content: flex-start;
        margin-top: 18px;
    }
    .about .about-content ul{
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }
    .about .about-content .about-content-item .about-content-num{
        font-size: 26px;
    }
    .about .about-content .about-content-item .about-content-item-title{
        font-size: 16px;
        margin-top: 10px;
    }
    .about .about-content .about-content-item .about-content-desc{
        font-size: 12px;
    }
}



/**
 * certificate styles
 ***/
.certificate{
    width: 1400px;
    margin: 80px auto;
}
.certificate .certificate-carousel{
    position: relative;
    margin-top: 40px;
    padding: 0 54px 34px;
}
.certificate .certificate-swiper{
    overflow: hidden;
}
.certificate .swiper-wrapper{
    align-items: center;
}
.certificate .certificate-item{
    cursor: pointer;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}
.certificate .certificate-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.certificate .certificate-nav{
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
.certificate .certificate-nav::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 12px;
    width: 17px;
    height: 17px;
    border-top: 3px solid #D1D1D1;
    border-left: 3px solid #D1D1D1;
}
.certificate .certificate-nav:hover::before{
    border-color: #ea222d;
}
.certificate .certificate-button-prev{
    left: 0;
    transform: translateY(-50%);
}
.certificate .certificate-button-prev::before{
    transform: rotate(-45deg);
}
.certificate .certificate-button-next{
    right: 0;
    transform: translateY(-50%);
}
.certificate .certificate-button-next::before{
    left: 7px;
    transform: rotate(135deg);
}
.certificate .certificate-pagination{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.certificate .certificate-pagination .swiper-pagination-bullet{
    margin: 0;
    width: 32px;
    height: 5px;
    border-radius: 0;
    color: transparent;
    font-size: 0;
    line-height: 5px;
    background-color: #CFCFCF;
    opacity: 1;
}
.certificate .certificate-pagination .swiper-pagination-bullet-active{
    color: transparent;
    font-size: 0;
    background-color: #1D63B8;
}
.certificate-preview{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
    background-color: rgba(0, 0, 0, 0.78);
}
.certificate-preview.active{
    display: flex;
}
.certificate-preview-content{
    max-width: 72vw;
}
.certificate-preview-content img{
    display: block;
    width: auto;
    height: 86vh;
    max-width: 72vw;
    object-fit: contain;
    background-color: #FFFFFF;
    box-shadow: 0 0 18px 2px rgba(0, 0, 0, 0.3);
}
.certificate-preview-close,
.certificate-preview-arrow{
    position: absolute;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}
.certificate-preview-close{
    top: 24px;
    right: 36px;
    width: 34px;
    height: 34px;
}
.certificate-preview-close::before,
.certificate-preview-close::after{
    content: '';
    position: absolute;
    top: 16px;
    left: 2px;
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
}
.certificate-preview-close::before{
    transform: rotate(45deg);
}
.certificate-preview-close::after{
    transform: rotate(-45deg);
}
.certificate-preview-arrow{
    top: 50%;
    width: 44px;
    height: 44px;
    border-top: 4px solid rgba(255, 255, 255, 0.75);
    border-left: 4px solid rgba(255, 255, 255, 0.75);
}
.certificate-preview-arrow:hover{
    border-color: #FFFFFF;
}
.certificate-preview-prev{
    left: 52px;
    transform: translateY(-50%) rotate(-45deg);
}
.certificate-preview-next{
    right: 52px;
    transform: translateY(-50%) rotate(135deg);
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .certificate{
        width: 900px;
        margin: 60px auto;
    }
    .certificate .certificate-item{
        height: 340px;
    }
}
@media only screen and (max-width: 1000px) {
    .certificate{
        width: 700px;
        margin: 40px auto;
    }
    .certificate .certificate-carousel{
        margin-top: 24px;
        padding: 0 42px 28px;
    }
    .certificate .certificate-item{
        height: 280px;
    }
    .certificate .certificate-nav{
        width: 32px;
        height: 32px;
    }
    .certificate .certificate-nav::before{
        top: 8px;
        left: 10px;
        width: 14px;
        height: 14px;
    }
    .certificate .certificate-button-next::before{
        left: 6px;
    }
    .certificate-preview{
        padding: 50px 60px;
    }
    .certificate-preview-content{
        max-width: 78vw;
    }
    .certificate-preview-content img{
        height: 80vh;
        max-width: 78vw;
    }
    .certificate-preview-close{
        top: 18px;
        right: 24px;
    }
    .certificate-preview-prev{
        left: 24px;
    }
    .certificate-preview-next{
        right: 24px;
    }
}

.home-case{
    width: 1400px;
    margin: 80px auto;
}
.case-header-block {
    text-align: center;
    margin-bottom: 40px;
}
.case-header-block .title {
    margin: 0;
    text-transform: capitalize;
}
.case-header-block .subtitle-desc {
    font-size: 15px;
    color: #555555;
    margin: 10px auto 0 auto;
    max-width: 800px;
    line-height: 1.6;
}
.case-footer-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.case-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 32px;
    background-color: #ea222d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 23px;
    text-decoration: none;
    border: 1px solid #ea222d;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(234, 34, 45, 0.15);
}
.case-view-more-btn:hover {
    background-color: #d11a24;
    border-color: #d11a24;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 34, 45, 0.3);
}
.home-case-carousel{
    margin-top: 40px;
    position: relative;
}
.home-case-swiper{
    overflow: hidden;
}
.home-case .case-list{
    display: flex;
}
.home-case .case-list .case-item{
    width: auto;
    margin-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #DEDEDE;
    margin-top: 0;
}
.home-case .case-list .case-item .case-item-img{
    width: 100%;
    aspect-ratio: 386 / 280;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.home-case .case-list .case-item .case-item-img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: skewX(-25deg);
}
.home-case .case-list .case-item:hover .case-item-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.home-case .case-list .case-item .case-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-case .case-list .case-item .case-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.home-case .case-list .case-item .case-item-desc{
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.home-case-button-prev,
.home-case-button-next{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dbe4f0;
    background: #fff;
    position: absolute;
    top: calc(50% - 38px);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}
.home-case-button-prev{
    left: -18px;
}
.home-case-button-next{
    right: -18px;
}
.home-case-button-prev::after,
.home-case-button-next::after{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0d57b7;
    border-right: 2px solid #0d57b7;
    position: absolute;
    top: 50%;
    left: 50%;
}
.home-case-button-prev::after{
    transform: translate(-40%, -50%) rotate(-135deg);
}
.home-case-button-next::after{
    transform: translate(-60%, -50%) rotate(45deg);
}
.home-case-pagination{
    margin-top: 18px;
    text-align: center;
}
.home-case-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #c7d2e3;
    opacity: 1;
}
.home-case-pagination .swiper-pagination-bullet-active{
    background: #0d57b7;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .home-case{
        width: 900px;
        margin: 60px auto;
    }
    .home-case-carousel{
        margin-top: 30px;
    }
    .home-case .case-list .case-item{
        padding-bottom: 15px;
        margin-top: 0;
    }
    .home-case .case-list .case-item .case-item-img{
        border-radius: 8px;
    }
    .home-case .case-list .case-item .case-item-title{
        font-size: 16px;
        margin-top: 6px;
    }
    .home-case .case-list .case-item .case-item-desc{
        font-size: 13px;
        margin-top: 6px;
    }
}

@media only screen and (max-width: 1000px) {
    .home-case{
        width: 700px;
        margin: 40px auto;
    }
    .home-case-carousel{
        margin-top: 20px;
    }
    .home-case .case-list .case-item{
        padding-bottom: 10px;
        margin-top: 0;
    }
    .home-case .case-list .case-item .case-item-img{
        border-radius: 6px;
    }
    .home-case .case-list .case-item .case-item-title{
        font-size: 14px;
        margin-top: 2px;
    }
    .home-case .case-list .case-item .case-item-desc{
        font-size: 12px;
        margin-top: 2px;
    }
    .home-case-button-prev,
    .home-case-button-next{
        display: none;
    }
}

/* ===== HOME NEWS SECTION RECONSTRUCTION ===== */
.home-news {
    width: 1400px;
    margin: 100px auto;
}

/* 1. Header */
.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px; /* Generous whitespace */
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.news-header-left {
    display: flex;
    flex-direction: column;
}

.news-header-title {
    font-size: 34px;
    font-weight: 800; /* Extra bold corporate titles */
    color: #1a1a1a;
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.news-header-subtitle {
    font-size: 34px;
    font-weight: 800; /* Extra bold subtitle matching title weight */
    color: #e8e8e8; /* Extremely elegant light grey bilingual style */
    margin: 4px 0 0 0;
    line-height: 1.15;
    text-transform: capitalize;
}

.news-header-tabs {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: auto;
    margin-right: 320px; /* Shift tabs further to the left */
}

.news-tab-item {
    font-size: 18px;
    font-weight: bold;
    color: #888888;
    cursor: pointer;
    position: relative;
    padding: 6px 0; /* Padding tightened to bring underline closer */
    transition: color 0.3s ease;
}

.news-tab-item:hover,
.news-tab-item.active {
    color: #ea222d;
}

.news-tab-item::after {
    content: '';
    position: absolute;
    bottom: 0; /* Flush with bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #ea222d;
    transition: width 0.3s ease;
}

.news-tab-item.active::after {
    width: 100%;
}

.news-header-right {
    flex-shrink: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background-color: #f2f2f2;
    color: #555555;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px; /* offset the skew */
    width: 0;
    height: 100%;
    background-color: #ea222d;
    transform: skewX(-20deg);
    transform-origin: left top;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.view-all-btn:hover {
    color: #ffffff;
}

.view-all-btn:hover::before {
    width: 140%;
}

/* 2. Content Grid */
.news-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    transition: opacity 0.2s ease;
}

/* Left Featured Column */
.news-left-column {
    min-width: 0;
}

.news-featured-card {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Premium soft drop shadow */
    border: 1px solid #f2f2f2;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Fluid hover animation */
}

.news-featured-card:hover {
    transform: translateY(-5px); /* Lift card on hover */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.news-featured-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.news-featured-image-slide {
    height: auto;
}

.news-featured-image-link {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f5f7fa;
}

.news-featured-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-featured-card:hover .news-featured-image-link img {
    transform: scale(1.04);
}

/* Swiper pagination styled as horizontal lines on top of the image */
.news-featured-swiper .news-featured-pagination {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    width: auto !important;
    transform: none !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 10 !important;
}

.news-featured-swiper .swiper-pagination-bullet {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
    opacity: 0.5 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    transition: width 0.3s ease, opacity 0.3s ease !important;
}

.news-featured-swiper .swiper-pagination-bullet-active {
    background-color: #ea222d !important;
    opacity: 1 !important;
    width: 48px !important;
}

.news-featured-text {
    display: flex;
    gap: 24px;
    padding: 30px 24px;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: opacity 0.15s ease;
}

.news-featured-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
    border-right: 1px solid #eeeeee;
    padding-right: 20px;
    box-sizing: border-box;
}

.date-day {
    font-size: 42px;
    font-weight: bold;
    color: #ea222d;
    line-height: 1;
}

.date-divider {
    width: 30px;
    height: 1px;
    background-color: #eeeeee;
    margin: 12px 0;
}

.date-year-month {
    font-size: 13px;
    color: #ea222d;
    font-weight: bold;
}

.news-featured-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-title {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.news-featured-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.news-featured-card:hover .news-featured-title-link {
    color: #ea222d;
}

.news-featured-excerpt {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right Recent List Column */
.news-right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-recent-list {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-recent-item {
    flex: 1; /* Stretch items evenly to align top/bottom perfectly with left card */
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    padding: 16px 0;
    box-sizing: border-box;
}

.news-recent-item:first-child {
    padding-top: 0;
}

.news-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-recent-link {
    display: flex;
    width: 100%;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.news-recent-img {
    width: 150px;
    height: 95px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
    background-color: #f5f7fa;
}

.news-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-recent-link:hover .news-recent-img img {
    transform: scale(1.05);
}

.news-recent-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
    flex-grow: 1;
}

.news-recent-title {
    font-size: 16px;
    font-weight: 600; /* Medium-bold for refined look instead of generic bold */
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-recent-link:hover .news-recent-title {
    color: #ea222d;
}

.news-recent-date {
    font-size: 13px;
    color: #999999;
}


.faq {
    width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.faq-info {
    width: 32%;
    flex-shrink: 0;
    text-align: left;
}

.faq-subtitle {
    font-size: 14px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 20px 0;
    text-align: left;
}

.faq-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #1e63c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-cta-btn:hover {
    color: #ea222d;
    text-decoration: none;
}

.faq-cta-btn .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover .arrow {
    transform: translateX(5px);
}

.faq-list {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 0;
    background: none !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    margin: 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: #1e63c7;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question em {
    font-style: normal;
    color: #1a1a1a;
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    margin-left: 20px;
}

.faq-item.active .faq-question {
    color: #1e63c7;
}

.faq-answer {
    display: none;
    margin-top: 15px;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    padding-right: 40px;
}

.faq-item.active .faq-answer {
    display: block;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .faq {
        width: 960px;
        margin: 80px auto;
    }
    .faq-container {
        gap: 40px;
    }
    .faq-info {
        width: 35%;
    }
    .faq-title {
        font-size: 32px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-answer {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1000px) {
    .faq {
        width: 100%;
        margin: 60px auto;
        padding: 0 24px;
    }
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }
    .faq-info {
        width: 100%;
        text-align: center;
    }
    .faq-title {
        font-size: 32px;
        text-align: center;
    }
    .faq-cta-btn {
        margin: 0 auto;
    }
    .faq-list {
        width: 100%;
    }
    .faq-item {
        padding: 20px 0;
    }
    .faq-question {
        font-size: 15px;
    }
    .faq-answer {
        font-size: 14px;
        padding-right: 0;
    }
}

/* ===== HOME BOTTOM QUOTE FORM (REGENERATED) ===== */
.home-collect {
    width: 100%;
    margin: 0;
    font-size: 16px;
    color: #333333;
    background-color: #f0f5f9;
    padding: 80px 0;
    box-sizing: border-box;
}

.home-collect-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.home-collect-left {
    width: 400px;
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.home-collect-left .quote-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-collect-left .intro-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.home-collect-left .intro-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.home-collect-left .intro-list {
    margin: 0;
    padding: 0;
    flex: 1;
}

.home-collect-left .intro-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eef2f6;
    font-size: 15px;
    line-height: 1.5;
    color: #004085;
    font-weight: 500;
}

.home-collect-left .intro-list li {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    list-style: none;
}

.home-collect-left .intro-list li strong {
    color: #1a1a1a;
    display: block;
}

.home-collect-left .contact-info .info-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.home-collect-left .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.home-collect-left .info-item img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.home-collect-left .info-item a {
    font-size: 14px;
    color: #0056b3;
}

.home-collect-form-section {
    flex: 1;
    margin-left: 60px;
}

.home-collect-form-section .form-title {
    font-size: 28px;
    font-weight: 700;
    color: #004085;
    margin-bottom: 30px;
}

.home-collect-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.home-collect-field {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.home-collect-field.full-width {
    width: 100%;
}

.home-collect-field label {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 8px;
}

.home-collect-form input, .home-collect-form textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 15px;
    color: #495057;
    outline: none;
    transition: border-color 0.15s ease-in-out;
}

.home-collect-form input {
    height: 48px;
}

.home-collect-form textarea {
    height: 180px;
    resize: vertical;
}

.home-collect-submit {
    width: auto;
    min-width: 200px;
    height: 54px;
    background-color: #f39c12;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 54px;
    text-align: center;
    padding: 0 40px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    box-sizing: border-box;
}

.home-collect-submit:hover {
    background-color: #e67e22;
    transform: translateY(-1px);
}

@media only screen and (max-width: 1200px) {
    .home-collect-container {
        padding: 0 40px;
    }
    .home-collect-form-section {
        margin-left: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .home-collect-container {
        flex-direction: column;
        align-items: stretch;
    }
    .home-collect-left {
        width: 100%;
        margin-bottom: 40px;
    }
    .home-collect-form-section {
        margin-left: 0;
    }
}

@media only screen and (max-width: 600px) {
    .home-collect-field {
        width: 100%;
    }
}

/* ===== HOME INDUSTRY SOLUTIONS ACCORDION ===== */
.home-solutions {
    width: 1400px;
    margin: 100px auto;
}

.solutions-container {
    width: 100%;
}

/* Header */
.solutions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.solutions-header-left {
    display: flex;
    flex-direction: column;
}

.solutions-header-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.15;
    text-transform: capitalize;
}

.solutions-header-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #888888;
    margin: 8px 0 0 0;
    line-height: 1.2;
    text-transform: none;
}

/* Accordion Container */
.solutions-accordion {
    display: flex;
    width: 100%;
    height: 520px;
    overflow: hidden;
    gap: 0;
}

/* Accordion Items */
.solutions-item {
    flex: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
    display: block;
    color: inherit;
    text-decoration: none;
}

.solutions-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.solutions-item:hover img {
    transform: scale(1.05); /* Gorgeous image zooming effect on hover */
}

.solutions-item.active {
    flex: 5.5; /* Expanded state */
    cursor: pointer;
}

/* Alternate stripes overlay when inactive */
.solutions-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7; /* White/grey clean block style */
    opacity: 0.98;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.solutions-item:nth-child(even) .solutions-item-overlay {
    background-color: #ededed; /* Stripe grey block */
}

/* Semi-transparent dark background for the active item */
.solutions-item.active .solutions-item-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

/* Inactive Vertical Title */
.solutions-item-vertical-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.solutions-item.active .solutions-item-vertical-title {
    opacity: 0;
}

.solutions-item-vertical-title span {
    font-size: 20px;
    font-weight: 700;
    color: #444444;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Active Content Box */
.solutions-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 60px;
    box-sizing: border-box;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.solutions-item.active .solutions-item-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    pointer-events: auto;
}

.solutions-item-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: capitalize;
}

.solutions-item-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px 0;
    max-width: 650px;
}

/* View More Button inside content */
.solutions-item-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solutions-item-btn:hover {
    background-color: #ea222d;
    border-color: #ea222d;
    color: #ffffff;
}

.solutions-btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.solutions-item-btn:hover .solutions-btn-arrow {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media only screen and (max-width: 992px) {
    .solutions-accordion {
        flex-direction: column;
        height: auto;
    }
    .solutions-item {
        width: 100%;
        height: 80px; /* Compact height for inactive cards on mobile */
        flex: none;   /* Disable desktop flex-grow/shrink to prevent collapsing to 0 */
        transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .solutions-item.active {
        height: 320px;
        flex: none;
    }
    .solutions-item-vertical-title {
        height: 100%;
    }
    .solutions-item-vertical-title span {
        writing-mode: horizontal-tb;
        letter-spacing: 2px;
        font-size: 18px;
    }
    .solutions-item-content {
        padding: 25px 30px;
    }
}

/* Responsive Breakpoints for News & Solutions to align with Case/FAQ */
@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .home-news {
        width: 900px;
        margin: 60px auto;
    }
    .home-solutions {
        width: 900px;
        margin: 60px auto;
    }
}

@media only screen and (max-width: 1000px) {
    .home-news {
        width: 700px;
        margin: 40px auto;
    }
    .home-solutions {
        width: 700px;
        margin: 40px auto;
    }
}

@media only screen and (max-width: 768px) {
    .home-news {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .home-solutions {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

/* Screen Reader only utility for SEO text enrichment */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HOME WEIHUA DATA HIGHLIGHTS ===== */
.home-data {
    width: 1400px;
    margin: 100px auto;
}

.data-container {
    width: 100%;
}

/* Header */
.data-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.data-header-left {
    display: flex;
    flex-direction: column;
}

.data-header-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.15;
    text-transform: capitalize;
}

.data-header-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #888888;
    margin: 8px 0 0 0;
    line-height: 1.2;
    text-transform: none;
}

/* Intro Paragraph */
.data-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 50px 0;
    max-width: 1000px;
}

.data-intro-sub {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #888888;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

/* Flex Layout for Overlapping Cards */
.data-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Bottom align all cards! */
    width: 100%;
    margin-top: 50px;
    position: relative;
}

/* Base Card Style */
.data-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
    text-align: left;
}

.data-card:first-child {
    margin-left: 0;
}

.data-card:last-child {
    margin-right: 0;
}

/* Staggered Heights and Z-Indexes for 3D Layering */
/* Card 1: 500+ */
.data-card:nth-child(1) {
    z-index: 3;
    height: 300px;
    padding: 35px 25px;
}
/* Card 2: 100+ (Behind Card 1/3, needs extra left padding) */
.data-card:nth-child(2) {
    z-index: 1;
    height: 250px;
    padding: 30px 25px 30px 48px;
}
/* Card 3: Red Center (Highest, no overlap on top) */
.data-card:nth-child(3) {
    z-index: 5;
    height: 350px;
    padding: 40px 30px;
}
/* Card 4: 1200+ (Behind Card 3, needs extra left padding) */
.data-card:nth-child(4) {
    z-index: 3;
    height: 300px;
    padding: 35px 25px 35px 48px;
}
/* Card 5: 170+ (Behind Card 4, needs extra left padding) */
.data-card:nth-child(5) {
    z-index: 1;
    height: 250px;
    padding: 30px 25px 30px 48px;
}

/* Highlight Card Style (Red) */
.data-card.highlight {
    background-color: #ea222d;
    border-color: #ea222d;
    color: #ffffff;
    text-align: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(234, 34, 45, 0.25);
}

/* Watermark graphic for highlighted card */
.data-card.highlight::before {
    content: '1';
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-size: 160px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    z-index: 0;
    font-family: Arial, sans-serif;
    pointer-events: none;
}

/* Hover effects (Z-index rises on hover!) */
.data-card:hover {
    z-index: 10;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #ea222d;
}

.data-card.highlight:hover {
    box-shadow: 0 20px 45px rgba(234, 34, 45, 0.4);
}

/* Numeric text style */
.data-card-num {
    font-size: 46px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.1;
    z-index: 1;
}

.data-card.highlight .data-card-num {
    color: #ffffff;
    font-size: 38px; /* Tighter word "Champion" or "National Champion" */
}

/* Label text style */
.data-card-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    z-index: 1;
}

.data-card.highlight .data-card-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Overrides */
@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .home-data {
        width: 900px;
        margin: 60px auto;
    }
    .data-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .data-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        height: auto !important;
        min-height: 220px;
        margin-top: 0 !important;
        padding: 30px 20px !important;
    }
    .data-card.highlight {
        grid-column: span 1;
    }
}

@media only screen and (max-width: 1000px) {
    .home-data {
        width: 700px;
        margin: 40px auto;
    }
    .data-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .data-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        height: auto !important;
        min-height: 200px;
        margin-top: 0 !important;
        padding: 25px 20px !important;
    }
    /* Let the highlight card span 2 columns on tablet for center focus */
    .data-card.highlight {
        grid-column: span 2;
    }
}

@media only screen and (max-width: 768px) {
    .home-data {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        margin: 40px auto;
    }
    .data-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .data-card.highlight {
        grid-column: span 1;
    }
    .data-card {
        min-height: 160px;
        padding: 25px 20px !important;
    }
    .data-card-num {
        font-size: 36px;
    }
}

/* ===== HOME WEIHUA CORPORATE VIDEO SECTION ===== */
.home-video {
    width: 100%;
    margin: 100px 0;
    box-sizing: border-box;
    position: relative;
}

/* Centered Header block above the video player */
.video-header-block {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.video-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.15;
    text-transform: capitalize;
}

.video-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #888888;
    margin: 8px 0 0 0;
    line-height: 1.2;
    text-transform: none;
}

.video-description {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin: 25px auto 35px auto;
    max-width: 800px;
}

.video-actions {
    display: flex;
    justify-content: center;
}

.video-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 32px;
    background-color: #ea222d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 23px;
    text-decoration: none;
    border: 1px solid #ea222d;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(234, 34, 45, 0.15);
}

.video-cta-btn:hover {
    background-color: #d11a24;
    border-color: #d11a24;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 34, 45, 0.3);
}

/* Wrapper to establish normal flow height and containing block for absolute clipping box */
.video-player-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: visible;
}

/* Full Width Video Box Container with CSS clip to lock viewport relative positions */
.video-box {
    display: block;
    position: absolute; /* Revert back to absolute! */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Fills parent wrapper */
    clip: rect(0, auto, auto, 0); /* Zero-lag pure CSS clipping boundary */
    cursor: pointer;
    background-color: transparent;
    z-index: 1; /* Establishes stacking context */
}

.video-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Native viewport fixed player (Zero-lag browser compositor native scrolling) */
.video-preview-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Render behind parent but within the parent stacking context */
    pointer-events: none;
    opacity: 1; /* Full, vivid natural colors, no white wash! */
    transition: opacity 0.5s ease;
}

.video-box:hover .video-preview-player {
    opacity: 1;
}

/* Dark overlay mask to ensure text contrast */
.video-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none; /* No overlay mask */
    z-index: 1; /* Renders on top of fixed video */
    pointer-events: none;
}

/* Play Button Overlay containing white and red states */
.video-box .play {
    position: absolute;
    top: 50%;
    left: 25%; /* Left-aligned vertically-centered play button */
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.video-box:hover .play {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-box .play img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.video-box .play img.red {
    opacity: 0;
}

.video-box:hover .play img.white {
    opacity: 0;
}

.video-box:hover .play img.red {
    opacity: 1;
}

/* Text Calligraphy Overlays */
.video-box .text {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 2;
    max-width: 400px;
    pointer-events: none;
    opacity: 0.95;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

.video-box:hover .text {
    transform: translateY(-5px);
    opacity: 1;
}

.video-box .text img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

/* HTML5 Lightbox Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 42px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10010;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 0.8;
}

.video-modal-close:hover {
    color: #ea222d;
    transform: scale(1.1);
}

.video-modal-body {
    position: relative;
    padding-top: 56.25%; /* 16:9 Ratio */
    background-color: #000000;
}

.video-modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

/* Responsive Media Queries */
@media only screen and (max-width: 1000px) {
    .home-video {
        height: auto;
        margin: 60px 0;
    }
    .video-player-wrapper {
        height: 60vh; /* Scaled responsive height for tablets */
    }
    .video-header-block {
        margin-bottom: 30px;
    }
    .video-title {
        font-size: 28px;
    }
    .video-subtitle {
        font-size: 15px;
    }
    .video-description {
        font-size: 14px;
        margin: 15px auto 25px auto;
    }
    .video-box .play {
        width: 70px;
        height: 70px;
    }
    .video-box .text {
        bottom: 20px;
        right: 20px;
        max-width: 280px;
    }
}

@media only screen and (max-width: 768px) {
    .home-video {
        margin: 40px 0;
    }
    .video-player-wrapper {
        height: 50vh; /* Scaled responsive height for mobile devices */
    }
    .video-box .play {
        width: 60px;
        height: 60px;
    }
    .video-box .text {
        bottom: 15px;
        right: 15px;
        max-width: 200px;
    }
    .video-title {
        font-size: 24px;
    }
    .video-description {
        font-size: 13px;
    }
    .video-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

/* ─── Core Advantages Styles ─────────────────────────── */
.core-advantages-map {
    position: relative;
    width: 100%;
    height: 960px;
    background-color: #fcfdfe;
    overflow: hidden;
}

.core-advantages-map .map {
    position: absolute;
    width: 1920px;
    height: 960px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

.core-advantages-map .map .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1.0;
    pointer-events: none;
}

.core-advantages-map .map .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.core-advantages-map .map .h1 {
    position: absolute;
    left: 10%;
    top: 80px;
    z-index: 5;
    padding-left: 15px;
    border-left: 4px solid #ea222d;
}

.core-advantages-map .map .h1 .h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.core-advantages-map .map .h1 .h3 {
    font-size: 20px;
    font-weight: 700;
    color: #c0c4cc;
    text-transform: uppercase;
}

.core-advantages-map .wheel-svg-bg {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    z-index: 3;
}

.core-advantages-map .map .logo {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 195px;
    height: 195px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.core-advantages-map .map .logo img {
    width: 105px;
    height: auto;
    object-fit: contain;
}

/* Inner Circle Texts */
.core-advantages-map .map .research,
.core-advantages-map .map .intelligent3,
.core-advantages-map .map .serve {
    position: absolute;
    width: 180px;
    text-align: center;
    z-index: 8;
}

.core-advantages-map .map .research {
    left: 50%;
    top: 52%;
    transform: translate(-315px, -80px);
}

.core-advantages-map .map .intelligent3 {
    left: 50%;
    top: 52%;
    transform: translate(110px, -145px);
}

.core-advantages-map .map .serve {
    left: 50%;
    top: 52%;
    transform: translate(15px, 185px);
}

.core-advantages-map .map .research a,
.core-advantages-map .map .intelligent3 a,
.core-advantages-map .map .serve a {
    text-decoration: none;
    color: #ffffff !important;
    display: block;
}

.core-advantages-map .map .research .title,
.core-advantages-map .map .intelligent3 .title,
.core-advantages-map .map .serve .title {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 2px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.core-advantages-map .map .research span,
.core-advantages-map .map .intelligent3 span,
.core-advantages-map .map .serve span {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0.5px;
    line-height: 1.2;
    display: block;
    opacity: 0.95;
    text-transform: uppercase;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}


/* Outer Callout Blocks */
.core-advantages-map .map .research1,
.core-advantages-map .map .intelligent1,
.core-advantages-map .map .serve1 {
    position: absolute;
    z-index: 15;
}

.core-advantages-map .map .research1 {
    left: 50%;
    top: 52%;
    transform: translate(-660px, -65px);
    width: 250px;
    text-align: right;
}

.core-advantages-map .map .research1 .line {
    position: absolute;
    left: 100%;
    top: 35px;
    width: 75px;
    height: 1.5px;
    background-color: #ea222d;
    opacity: 0.7;
}

.core-advantages-map .map .intelligent1 {
    left: 50%;
    top: 52%;
    transform: translate(330px, -230px);
    width: 280px;
    text-align: left;
}

.core-advantages-map .map .intelligent1 .line {
    position: absolute;
    right: 100%;
    top: 35px;
    width: 125px;
    height: 1.5px;
    background-color: #ea222d;
    opacity: 0.7;
}

.core-advantages-map .map .serve1 {
    left: 50%;
    top: 52%;
    transform: translate(330px, 120px);
    width: 280px;
    text-align: left;
}

.core-advantages-map .map .serve1 .line {
    position: absolute;
    right: 100%;
    top: 35px;
    width: 48px;
    height: 1.5px;
    background-color: #ea222d;
    opacity: 0.7;
}

.core-advantages-map .map .research1 .icon,
.core-advantages-map .map .intelligent1 .icon,
.core-advantages-map .map .serve1 .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-advantages-map .map .research1 .icon:hover,
.core-advantages-map .map .intelligent1 .icon:hover,
.core-advantages-map .map .serve1 .icon:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(234, 34, 45, 0.15);
}

.core-advantages-map .map .research1 .icon {
    margin-left: auto;
}

.core-advantages-map .map .research1 .p,
.core-advantages-map .map .intelligent1 .p,
.core-advantages-map .map .serve1 .p {
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 12px 0;
}

.core-advantages-map .map .research1 .button a,
.core-advantages-map .map .intelligent1 .button a,
.core-advantages-map .map .serve1 .button a {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #ea222d;
    text-decoration: none;
    transition: color 0.25s ease;
}

.core-advantages-map .map .research1 .button a:hover,
.core-advantages-map .map .intelligent1 .button a:hover,
.core-advantages-map .map .serve1 .button a:hover {
    color: #1a1a1a;
}

/* Responsive queries */
@media only screen and (max-width: 1000px) {
    .core-advantages-map {
        display: none !important;
    }
}

/* ============================================================
   B2B BRAND UPGRADE — NEW MODULES & OVERRIDES
   ============================================================ */

/* ----------------------------------------------------------
   SEO INTRO SECTION (below banner)
   ---------------------------------------------------------- */
.home-seo-intro {
    background-color: #F5F6F7;
    border-bottom: 1px solid #E8EAEC;
    padding: 22px 0;
}

.seo-intro-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.seo-intro-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4A5568;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media only screen and (max-width: 768px) {
    .seo-intro-container {
        padding: 0 20px;
    }
    .seo-intro-text {
        font-size: 14px;
        text-align: left;
    }
}

/* ----------------------------------------------------------
   CERTIFICATE — Downgrade visual weight
   ---------------------------------------------------------- */
.certificate .cert-title-secondary {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #475D73 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 30px !important;
}



