.hover-tilt {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-tilt:hover {
    transform: rotate(-2deg) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.companyindustriesSwiper img {
    width: 100%;
}

.industry-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: default;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(29, 82, 42, 0.6); /* Hijau gelap transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.industry-card:hover .card-hover-overlay {
    opacity: 1;
    pointer-events: all;
}

.view-more-btn {
    background-color: #ffffff;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.view-more-btn:hover {
    background-color: #1d522a;
    color: white;
}

.industry-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.industry-card .mil-button {
    align-self: center;
}

.industry-card:hover h6,
.industry-card:hover p {
    color: white;
    transition: color 0.3s ease;
}

@media screen and (max-width: 991px) {
    #about .mil-img-frame {
        display: none;
    }
}

.partnership-section {
    padding: 120px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partnership-section p {
    color: #666;
    margin-bottom: 40px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: center;
}

.partner-card {
    background: #fff;
    padding: 20px;
    /* border-radius: 8px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    text-align: center;
    width: 100%;
}

.partner-card:hover {
    transform: translateY(-6px) scale(1.03);
}

.partner-card img {
    max-width: 100%;
    max-height: 60px;
    margin-bottom: 10px;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-name {
    font-size: 14px;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partnership-grid {
        grid-template-columns: 1fr;
    }
}
.client-logo-section {
    padding: 60px 20px 120px 20px;
    /* background-color: #fafafa; */
}

.clients-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.client-left {
    flex: 1 1 250px;
    max-width: 250px;
    display: flex;
    align-items: center;
}

.client-right {
    flex: 1 1 0%;
    width: 100%;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
}

.client-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    padding: 20px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease,
        border-color 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    height: 160px; /* equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-card:hover {
    transform: translateY(-6px) scale(1.03);
}

.client-card img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    aspect-ratio: 3 / 2;
    display: block;
    margin-bottom: 10px;
    transition: filter 0.3s ease, transform 0.3s ease;
}

@supports not (aspect-ratio: 3 / 2) {
    .client-card img {
        height: 60px;
        width: 100px;
    }
}

.client-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-name {
    margin-top: auto;
    font-size: 14px;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .clients-wrapper {
        flex-direction: column;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-left {
        max-width: 100%;
        flex: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .client-left-auto {
        width: 100%;
    }
}

.team-section {
    padding: 60px 20px 120px 20px;
    text-align: center;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
}

.team-row.center {
    justify-content: center;
}

.team-member {
    width: 160px;
    transition: transform 0.3s ease;
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: #f0f0f0;
    display: block;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.team-member p {
    font-size: 14px;
    color: #777;
    margin: 4px 0 0;
}

@media (max-width: 1024px) {
    .team-row {
        flex-wrap: wrap;
        gap: 40px;
    }

    .team-member {
        width: 140px;
    }

    .team-member img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .team-row {
        flex-wrap: wrap;
        /* gap: 24px; */
    }

    .team-member {
        width: calc(50% - 24px);
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .team-member h4 {
        font-size: 14px;
    }

    .team-member p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .team-member {
        width: 100%;
    }

    .team-member img {
        width: 100px;
        height: 100px;
    }
}

.member-card {
    width: 100%;
    max-width: 180px;
    /* aspect-ratio: 3/4; */
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.member-card:hover .member-img {
    transform: scale(1.05);
}

.info-wrapper {
    position: absolute;
    bottom: 15px;
    left: 0;
    display: flex;
    align-items: stretch;
    z-index: 2;
}

.info-box {
    background: #fff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box h4 {
    margin: 0;
    font-size: 14px;
}
.first-name {
    font-weight: 400;
    color: #000;
}
.last-name {
    color: #2d7a41;
    font-weight: 600;
}

.social-box {
    display: flex;
    justify-content: center;
    background: #1d522a;
}

.social-box a {
    color: #fff;
    font-size: 14px;
    padding: 5px 7px;
    display: block;
    text-align: center;
    transition: transform 0.3s ease;
}

.social-box a i {
    transition: transform 0.5s ease;
}
.social-box a:hover i {
    transform: scale(1.2);
}

.cs-spread {
    /* background: #f8f8f8; */
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;

    background-image: url("/landing/images/banner-1.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;

    color: white;
    position: relative;
    z-index: 1;
}

.cs-spread::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Optional: overlay gelap */
    z-index: -1;
}

.cs-spread .content {
    z-index: 2;
}

.cs-section {
    padding-block: 150px;

    display: flex;
    justify-content: center;
    align-items: center;
    /* display: flex; */
    /* flex-wrap: wrap; */
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
}

.cs-section-left {
    display: flex;
    align-items: center;
}

.cs-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.5);
    transition: all 1.5s ease;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.cs-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
    object-fit: cover;
}

.cs-card h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.cs-card p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cs-wrapper.active .cs-card:nth-child(1) {
    transform: translate(-120%, -120%) scale(1);
    opacity: 1;
}
.cs-wrapper.active .cs-card:nth-child(2) {
    transform: translate(0, -120%) scale(1);
    opacity: 1;
}
.cs-wrapper.active .cs-card:nth-child(3) {
    transform: translate(120%, -120%) scale(1);
    opacity: 1;
}

.cs-wrapper.active .cs-card:nth-child(4) {
    transform: translate(-120%, 0) scale(1);
    opacity: 1;
}
.cs-wrapper.active .cs-card:nth-child(5) {
    transform: translate(0, 0) scale(1);
    opacity: 1;
}
.cs-wrapper.active .cs-card:nth-child(6) {
    transform: translate(120%, 0) scale(1);
    opacity: 1;
}

.cs-wrapper.active .cs-card:nth-child(7) {
    transform: translate(-120%, 120%) scale(1);
    opacity: 1;
}
.cs-wrapper.active .cs-card:nth-child(8) {
    transform: translate(0, 120%) scale(1);
    opacity: 1;
}

.cs-wrapper.active .cs-card:nth-child(9) {
    transform: translate(120%, 120%) scale(1);
    opacity: 1;
}

.div-info-team {
    height: 250px;
    width: 100%;
    background: white;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.div-info-team .no-lastname .last-name {
    opacity: 0;
}

.div-info-team .no-lastname p {
    margin-top: -24px;
}

@media (max-width: 768px) {
    .cs-section {
        display: block;
        padding-block: 100px;
    }

    .cs-section-left {
        justify-content: center;
    }

    .cs-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
        position: static;
        width: 100%;
        max-width: none;
        height: auto;
        transform: none;
        padding: 0 20px;
    }

    .cs-card {
        position: static;
        opacity: 1 !important;
        transform: none !important;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .cs-card h6 {
        font-size: 14px;
    }

    .cs-card p {
        font-size: 13px;
    }

    .div-info-team {
        height: 220px;
    }
}

.row-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 12px 0;
}

.row-item .logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.row-item .desc {
    flex: 1;
}

.row-item .desc h3 {
    font-size: clamp(18px, 1.5vw + 0.25rem, 20px);
    font-weight: 500;
    margin-bottom: 4px;
}

.row-item .desc p {
    color: black;
    margin-top: 10px;
}

.row-item .desc p.gray {
    color: #7f7f7f;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .row-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .row-item .desc {
        text-align: center;
        width: 100%;
    }
}
