.main {
    padding-top: 100px;
}

.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 18px;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: #fff;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 16px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #222;
}

.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

.home-icon {
    display: flex;
    align-items: center;
}

.home-icon img {
    width: 16px;
    height: 16px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .breadcrumb-nav {
        padding: 15px 0;
    }

    .breadcrumb-container {
        padding: 0 15px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 8px;
    }

    .home-icon img {
        width: 14px;
        height: 14px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

/* General Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.pagination-container {
    padding: 0 15px;
}

.head-box {
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.head-box h1 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

@media(min-width:768px) and (max-width:1365px) {
    .head-box h1 {
        font-size: 30px;
    }
}

@media(max-width:767px) {
    .head-box h1 {
        font-size: 24px;
    }
}

.head-box p {
    font-size: 18px;
    color: #000;
}

@media(min-width:768px) and (max-width:1365px) {
    .head-box p {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .head-box p {
        font-size: 16px;
    }
}

/* Industry Solutions Section Styles */
.industry-solutions-section {
    padding: 60px 20px;
}

.is-container {
    max-width: 1360px;
    /* Adjust as needed */
    margin: 0 auto;
    padding: 0;
    text-align: center;
    /* Center align header and view more link */
}

@media (max-width: 767px) {
    .is-container {
        padding: 0 15px;
    }
}

.is-header {
    margin-bottom: 40px;
}

.is-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.is-description {
    font-size: 16px;
    color: #000;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.is-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 4 columns by default */
    gap: 20px;
    margin-bottom: 40px;
}

.is-card {
    position: relative;
    overflow: hidden;
    /* Rounded corners for cards */
    display: block;
    /* Make the anchor a block for positioning */
    text-decoration: none;
}

.is-card-img {
    width: 100%;
    height: 100%;
    /* Ensure image covers the card area */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.is-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 20px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    justify-content: center;
}

.is-card-title {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: normal;
    /* Normal weight initially */
    transition: transform 0.3s ease, font-weight 0.3s ease;
    /* Smooth transition for transform and font-weight */
}

.is-card:hover .is-card-img {
    transform: scale(1.05);
    /* Slight zoom on image hover */
}

.is-card:hover .is-card-title {
    transform: scale(1.1);
    /* Enlarge text */
    /* font-weight: bold; */
    /* Make text bold */
}

.is-view-more {
    margin-top: 20px;
}

.is-view-more-link {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.is-view-more-link:hover {
    color: #333;
}

.is-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.is-view-more-link:hover .is-arrow {
    transform: translateX(5px);
}

@media(min-width:768px) and (max-width:1365px) {

}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .is-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }

    .is-title {
        font-size: 28px;
    }

    .is-description {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .industry-solutions-section {
        padding: 40px 0;
    }

    .is-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 1 column on mobile */
        gap: 15px;
    }

    .is-title {
        font-size: 24px;
    }

    .is-card-title {
        font-size: 16px;
    }

    .is-description {
        font-size: 14px;
    }
}

/* Consultation Section Styles */
.consultation-section {
    padding: 60px 20px;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 15px;
    background-color: #F7F7F7;
    border-radius: 12px;
    border: 1px solid #E9E8E8;
    border-radius: 129.379px;
}

.consultation-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.consultation-text {
    flex: 1;
}

.consultation-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.consultation-description {
    font-size: 16px;
    color: #000;
    margin: 0;
    line-height: 1.5;
}

.consultation-action {
    flex-shrink: 0;
}


/* Responsive Styles for Consultation Section */
@media (max-width: 991px) {
    .consultation-content {
        gap: 30px;
        padding: 30px;
        border-radius: 12px;
    }

    .consultation-title {
        font-size: 22px;
    }

    .consultation-description {
        font-size: 15px;
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .consultation-section {
        padding: 40px 15px;
    }

    .consultation-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px 20px;
    }

    .consultation-title {
        font-size: 20px;
    }

    .consultation-description {
        font-size: 14px;
    }

    .contact-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .consultation-content {
        margin: 0 10px;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .consultation-title {
        font-size: 18px;
    }

    .avatar-img {
        width: 60px;
        height: 60px;
    }
}

/* Customer Case Section Styles */
.customer-case-section {
    padding: 60px 20px;
    background-color: #fff;
    /* White background */
    overflow: hidden;
}

.cc-container {
    max-width: 1680px;
    /* Full width for the carousel */
    margin: 0 auto;
    padding: 0;
    /* Adjust padding as needed */
}

.cc-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.customer-case-swiper {
    width: 100%;
    /* overflow: hidden; Swiper handles this */
}

.customer-case-swiper .swiper-wrapper {
    display: flex;
    /* Ensure it's a flex container, Swiper usually does this */
    align-items: stretch;
    /* This is key to make all slides in a row have the same height */
}

.cc-slide {
    overflow: hidden;
    /* Ensures content respects border-radius */
    display: flex;
    /* Make the slide itself a flex container */
    flex-direction: column;
    /* Stack its children vertically */
    /* box-shadow: 0 6px 15px rgba(0,0,0,0.07); */
    height: auto;
    /* Important: Override Swiper's potential inline height */
    align-self: stretch;
    /* Ensure the slide stretches to the height of the wrapper's flex line */
}

.cc-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Placeholder */
    flex-shrink: 0;
    /* Prevent image wrapper from shrinking */
}

.cc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc-testimonial-content {
    padding: 25px;
    flex-grow: 1;
    /* Allows this part to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes customer info to bottom if content is short */
}

.cc-quote {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Allows quote to take up available space within testimonial content */
}

.cc-customer-info {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: auto;
    /* Pushes to bottom if testimonial is short */
}

.cc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cc-customer-details {
    /* Styles for name and role container */
}

.cc-customer-name {
    font-size: 16px;
    color: #000;
    margin: 0 0 2px 0;
    text-align: center;
}

@media(min-width:768px) and (max-width:1365px) {
    .cc-customer-name {
        font-size: 14px;
    }
}

.cc-customer-role {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* Responsive Adjustments for Customer Case */
@media (max-width: 991px) {
    .cc-main-title {
        font-size: 28px;
    }

    /* Swiper slidesPerView will handle column changes in JS */
}

@media (max-width: 767px) {
    .cc-container {
        padding: 0 15px;
    }

    .cc-main-title {
        font-size: 24px;
    }

    .cc-testimonial-content {
        padding: 20px;
    }

    .cc-quote {
        font-size: 14px;
    }

    .cc-customer-name {
        font-size: 14px;
    }

    .cc-avatar {
        width: 45px;
        height: 45px;
    }
}

.factory-form {
    width: 100%;
    padding: 45px 0;
    background-color: #EFEFEF;
}

.factory-form-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
}

.factory-form-title {
    width: 230px;
}

@media(min-width:768px) and (max-width:1365px) {
    .factory-form-container {
        flex-direction: column;
        gap: 20px;
    }

    .factory-form-title {
        width: 100%;
    }

    .factory-form-title h2 {
        font-size: 28px;
        text-align: center;
        width: 100%;
    }
}

@media(max-width:767px) {
    .factory-form-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .factory-form-title h2 {
        font-size: 24px;
    }
}

#app {
    flex: 1;
}

.btn-about-us {
    background: #FF99D3;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    border-radius: 999px;
}

.btn-about-us:hover {
    background: #FF99D3;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    font-weight: 700;
}