.section .content:first-child {
    height: 106px;
}

.section .content .index-products span {
    display: block;
    width: 4px;
    height: 50px;
    background-color: #104492;
}

.section .content .index-products h2 {
    color: #222222;
    font-size: 18px;
    line-height: 106px;
    margin: 0 0 0 30px;
}

.section .content .index-products {
    display: flex;
    align-items: center;
}

.banner {
    width: 100%;
    position: relative;
}

.swiper-item>img {
    width: 100%; /* Changed from inherit to 100% */
    height: 100%; /* Changed from inherit to 100% */
    object-fit: cover;
    object-position: 20% center;
}

.swiper-container {
    position: relative;
    width: 100%;
    min-width: 300px;
    height: 420px;
    height: clamp(420px, 31.25vw, 680px);
    min-height: 120px;
    overflow: hidden;
}

.swiper-wrapper {
    position: absolute;
    left: 0;
    height: 100%
}

.swiper-wrapper-transition {
    transition: transform .8s ease 0s
}

.swiper-item {
    display: inline-block;
    width: 100%;
    height: 100%;
    float: left;
}

.swiper-btn-group {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 3;
    pointer-events: none;
}

.swiper-btn-group_prev,
.swiper-btn-group_next {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
}

.swiper-btn-group_prev::before,
.swiper-btn-group_next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    border-right: 2px solid rgba(255, 255, 255, 0.95);
    transform-origin: center;
}

.swiper-btn-group_prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.swiper-btn-group_next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.swiper-pagination-item {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.swiper-pagination-item_active {
    background: rgba(255, 255, 255, 0.95);
}

/* Fluid Layout for Introduction */
.section .introduction {
    width: 50%; /* Changed from 600px */
    height: auto; /* Changed from 280px */
    min-height: 280px;
    padding: 24px 24px 20px;
    box-sizing: border-box;
}

.section .product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section .product-item {
    display: flex;
    flex-wrap: nowrap;
}

.section .product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.section .product-item .introduction,
.section .product-item .introduction-img {
    float: none;
}

.section .introduction h3 {
    color: #222222;
    font-size: 20px;
    line-height: 80px;
    display: block;
    width: 90%; /* Changed from 560px */
    margin: 0 auto;
}

.section .introduction h3:hover a {
    color: #104492;
    transition: 0.4s linear;
}

.section .introduction p {
    display: block;
    width: 90%; /* Changed from 560px */
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

.section .introduction>div {
    width: 150px;
    height: 48px;
    border-radius: 15px;
    border: 1px solid #104492;
    position: relative;
    margin: 40px 0 0 40px; /* Replaced top/left absolute positioning with margin */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear;
}

.section .introduction>div>a {
    font-size: 16px;
    color: #104492;
    transition: 0.3s linear;
}

.section .introduction>div:hover {
    background-color: #104492;
}

.section .introduction>div:hover a {
    color: #eeeeee;
}

/* Fluid Layout for Introduction Image */
.section .introduction-img {
    width: 50%; /* Changed from 600px */
    height: auto; /* Changed from 280px */
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
}

.section .introduction-img img {
    transition: transform .3s ease;
    max-width: 100%;
    height: auto;
}

.section .introduction-img img:hover {
    transform: scale(1.05)
}

.section .product-item {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.section .product-item:hover {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

/*Industries*/

.industeies {
    height: auto; /* Changed from 440px */
    min-height: 440px;
    background-color: #edf1f3;
    padding-bottom: 30px;
}

.industeies .content:first-child {
    height: 106px;
}

.industeies .content .index-industries span {
    display: block;
    width: 4px;
    height: 50px;
    background-color: #104492;
}

.industeies .content .index-industries h2 {
    color: #222222;
    font-size: 18px;
    line-height: 106px;
    margin: 0 0 0 30px;
}

.industeies .content .index-industries {
    display: flex;
    align-items: center;
}

.industeies > .content:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 20px;
}

.industeies .content .industeies_big {
    width: calc((100% - 48px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.industeies .content .industeies_big:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.industeies .content .industeies_big img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.industeies .content .industeies_big:hover img {
    opacity: 0.92;
    transform: scale(1.02);
}

.industeies .content .industeies_big .san {
    width: 100%;
    height: 44px;
    line-height: 44px;
    border: 1px solid #104492;
    border-radius: 24px;
    font-size: 16px;
    text-align: center;
    transition: 0.3s linear;
    margin-top: 14px;
}

.industeies .content .industeies_big .san a {
    display: block;
    width: 100%;
}

.industeies .content .industeies_big .san:hover {
    background-color: #104492;
    color: #ffffff;
}

.industeies .content .industeies_big img:hover {
    opacity: 0.7;
}

.industeies .content .industeies_big .san:hover:after {
    width: 100%; /* Changed from fixed width */
}

.Members {
    padding: 0 0 60px;
}

.Members .content:first-child {
    height: 106px;
}

.Members .content .index-Members {
    display: flex;
    align-items: center;
}

.Members .content .index-Members span {
    display: block;
    width: 4px;
    height: 50px;
    background-color: #104492;
}

.Members .content .index-Members h2 {
    color: #222222;
    font-size: 18px;
    line-height: 106px;
    margin: 0 0 0 30px;
}

.Members .members-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 10px;
}

.Members .members-grid .six {
    float: none;
    width: calc((100% - 40px) / 3);
    padding: 16px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(16, 68, 146, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.Members .members-grid .six:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.Members .members-grid .six a {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Members .members-grid .six img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    transition: transform 0.2s ease;
    transform-origin: center;
}

.Members .members-grid .six:hover img {
    transform: scale(1.06);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .banner {
        height: auto;
        overflow: hidden;
    }
    .swiper-container {
        max-width: 100vw;
        height: 360px;
        height: clamp(260px, 70vw, 520px);
        min-height: 0;
    }

    .swiper-item>img {
        object-position: 35% center;
    }

    .swiper-pagination {
        bottom: 10px;
        gap: 8px;
    }

    .swiper-pagination-item {
        width: 12px;
        height: 12px;
        border-radius: 6px;
    }

    .section .content {
        padding: 0 16px;
    }

    .section .content:first-child {
        height: auto;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    .section .product-list {
        gap: 16px;
    }

    .section .product-item {
        flex-direction: column;
        gap: 16px;
    }

    .section .product-item:nth-child(even) {
        flex-direction: column;
    }

    .section .index-products span {
        height: 32px;
    }

    .section .index-products h2 {
        line-height: 48px;
        margin: 0 0 0 12px;
    }

    .section .introduction,
    .section .introduction-img {
        width: 100%;
        height: auto !important;
        margin: 0;
        border-radius: 0;
        background-color: transparent;
        box-shadow: none;
    }

    .section .introduction {
        min-height: 0;
        padding: 16px 16px 12px;
    }

    .section .introduction h3,
    .section .introduction p {
        width: 100%;
        max-width: none;
        line-height: 1.6;
        margin: 0 0 8px 0;
    }
    
    .section .introduction h3 {
        font-size: 17px;
        line-height: 1.3;
    }

    .section .introduction p {
        font-size: 14px;
        color: #555555;
    }

    .section .introduction > div {
        width: 60%;
        min-width: 180px;
        height: 44px;
        border-radius: 24px;
        border: 1px solid #104492;
        margin: 16px auto 0;
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section .introduction > div a {
        font-size: 14px;
    }

    .section .introduction-img {
        min-height: 0;
        padding: 0 16px 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section .introduction-img img {
        max-height: 170px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .industeies {
        height: auto;
        padding: 24px 0 24px;
        background-color: #edf1f3;
    }

    .industeies .content {
        padding: 0 16px;
    }

    .industeies .content .index-industries span {
        height: 32px;
    }

    .industeies .content .index-industries h2 {
        line-height: 48px;
        margin: 0 0 0 12px;
    }

    .industeies .content .industeies_big {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-bottom: 16px;
        padding: 12px 12px 16px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

    .industeies .content .industeies_big img {
        width: 100%;
        max-height: 200px;
        height: auto;
        margin-bottom: 12px;
        object-fit: cover;
        border-radius: 12px;
    }

    .industeies .content .industeies_big .san {
        width: 100%;
        max-width: 360px;
        height: 44px;
        line-height: 44px;
        border-radius: 24px;
        border: 1px solid #104492;
        font-size: 14px;
    }
    
    .Members {
        padding: 24px 0;
    }

    .Members .content {
        padding: 0 16px;
    }

    .Members .content .index-Members span {
        height: 32px;
    }

    .Members .content .index-Members h2 {
        line-height: 48px;
        margin: 0 0 0 12px;
    }

    .Members .members-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding-bottom: 0;
    }

    .Members .members-grid .six {
        float: none;
        width: calc((100% - 12px) / 2);
        padding: 12px;
        background-color: #ffffff;
        border-radius: 12px;
        border: 1px solid rgba(16, 68, 146, 0.10);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .Members .members-grid .six:hover {
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
        transform: translateY(-1px);
    }

    .Members .members-grid .six a {
        height: 86px;
    }
}

@media screen and (max-width: 960px) {
    html,
    body {
        overflow-x: hidden;
    }

    .nav .content {
        width: 100%;
        max-width: none;
    }

    .banner {
        overflow: hidden;
    }

    .swiper-container {
        max-width: 100vw;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .swiper-container {
        height: clamp(340px, 31.25vw, 520px);
    }

    .section .content {
        padding: 0 24px;
    }

    .section .introduction {
        width: 55%;
    }

    .section .introduction-img {
        width: 45%;
    }

    .industeies .content {
        padding: 0 24px;
    }

    .Members .members-grid {
        gap: 16px;
    }

    .Members .members-grid .six {
        width: calc((100% - 16px) / 2);
    }
}
