.branch-head {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100%;
    top: 72px;
}

.branch-banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    /* Minimal height 500px */
    object-fit: cover;
    display: block;
}

/* Overlay */
.branch-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay hitam dengan transparansi */
}

/* Teks di tengah */
.branch-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.branch-brand img {
    -webkit-filter: drop-shadow(5px 5px 5px #fff );
    filter: drop-shadow(5px 5px 5px #222);
    width: 20rem;
}

.branch-name {
    font-size: clamp(1rem, 4vw, 2.5rem);
    font-weight: bold;
    padding: 0 10px;
    text-align: center;
}

.section-mission ul li {
    cursor: default;
    width: fit-content;
}

.section-mission ul li i {
    transition: transform .7s ease-in-out;
}

.section-mission ul li:hover {
    color: #2F4E9E;
    font-weight: 600;
}

.section-mission ul li:hover i.ti {
    transform: rotate(360deg);
}

.section-location iframe {
    width: 100%;
    height: 250px;
}

.swiper-button-prev,
.swiper-button-next {
    font-size: 32px;
    border-radius: 0;
    padding: 0px;
    margin: 0px;
    width: 130px;
    height: 300px;
    color: #2F4E9E;
    box-shadow: none;
    top: 0;
}

.swiper-button-prev {
    background: rgb(247, 250, 255);
    background: linear-gradient(90deg, rgba(247, 250, 255, 1) 0%, rgba(245, 245, 245, 0) 100%);
    margin: 0px -20px;
}

.swiper-button-next {
    background: rgb(245, 245, 245);
    background: linear-gradient(90deg, rgba(245, 245, 245, 0) 0%, rgba(247, 250, 255, 1) 100%);
    margin: 0 -20px;
}

.project-image,
.project-image img {
    max-height: 500px;
}

.other-projects .project-image,
.other-projects .project-image img {
    height: 220px;
}

.other-projects .project-tag {
    font-size: 12px;
}

.product-catalogue .title-section {
    font-size: 64px;
}

.product-catalogue .swiper {
    width: 360px;
    height: 420px;
}

.product-catalogue .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
}

.product-catalogue .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-catalogue .p-detail {
    width: 100%;
    padding: 15px;
    color: #000;
    position: relative;
    z-index: 2;
    background-color: white;
}

.product-catalogue .p-name {
    margin: 0;
    font-size: 14px;
}

.product-catalogue .p-desc {
    margin: 5px 0 0;
    font-size: 12px;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .branch-banner {
        min-height: 300px;
        /* Kurangi tinggi minimal di layar kecil */
    }

    .branch-name {
        font-size: clamp(1rem, 5vw, 2rem);
    }

    .product-catalogue .swiper {
        width: 250px;
        height: 360px;
    }

    .product-catalogue .title-section {
        font-size: 24px;
    }
}