/* ===== COMPANY PROFILE MODULE ===== */
html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;   /* Hilangkan scroll horizontal */
    overflow-y: auto;     /* Tetap bisa scroll normal */
}

::-webkit-scrollbar {
    display: none;
}


.section-compro {
    min-height: 100vh;   /* ini kuncinya */
    width: 100%;

    background: url("gambar-2.jpg") no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#company-profile-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    color: whitesmoke;
}

.company-logo {
    text-align: center;
    margin-bottom: 30px;
    background: transparent;
}

.company-logo img {
    width: 340px;
    height: 300px;
    height: auto;
}

.company-info-section h2 {
    font-size: 2.5rem;
    color: rgba(2, 65, 148, 0.808);
    color: yellow;
}


.company-info-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: whitesmoke;
}

.legality,
.thankyou_bro,
.org-structure,
.shareholders,
.compro-gallery {
    margin-bottom: 20px;
    /* color: whitesmoke; */
    text-align: center;
    color: whitesmoke;
}

.thankyou_2 img,
.compro-gallery img,
.company-kppj img,
.company-legality img,
.legality img,
.org-image img,
.shareholders-images img,
.compro-gallery .gallery img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.thankyou_bro{
    text-align: center;
    font-size: 1.5rem;
}

/* Shareholders images wrapper */
.shareholders-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Gallery */
.compro-gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
    .shareholders-images {
        flex-direction: column;
    }
    .compro-gallery .gallery {
        flex-direction: column;
    }
}

/* TOMBOL BACK TO WEBSITE DARI COMPRO */
.compro-back {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
}


.btn-back {
    display: inline-block;
    padding: 10px 18px;
    background: rgb(245, 245, 42);
    /* background: #1e7f3b; */
    color: red;
    /* color: #fff; */
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background: #f70808;
    color: blue;
}