/* -----------------------------
   HEADER ABOUT SECTION
------------------------------ */
#services-tbs {
    min-height: 200px;
    background-image: url('/img/bg/bg1.jpg');
    background-attachment: fixed;       /* efek parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#services-tbs .card {
    transition: all 0.3s ease;
}

/* Hover efek */
#services-tbs .card:hover {
    z-index: 2;
    transform: scale(1.03);
}

/* Ikon juga ikut jadi putih saat hover */
.container-services .content-services:hover i {
    color: #ffffff;
}

.header-about {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 300px;
    background-image: url('/img/header2.png?v=2'); /* Ganti dengan path sesuai gambar kamu */
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    color: white; /* Jika ada teks di dalam */
}

.header-about h2 {
    color: white;
    z-index: 2;
}

.ship-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50%;
    height: auto;
}


/* -----------------------------
   ABOUT SECTION
------------------------------ */
#about {
    padding: 40px 0px;
}

.about-left {
    padding-bottom: 40px;
}


/* -----------------------------
   GENERAL SECTION STYLE
------------------------------ */
section {
    background-color: #ffffff;
}


/* -----------------------------
   SERVICES SECTION
------------------------------ */
#services {
    scroll-margin-top: 100px;
    display: flex;
    align-items: center;
    background-color: #E9FAFF !important;
    min-height: 400px;
    box-shadow: 
        inset 0 80px 50px -50px rgba(0, 0, 0, 0.08),   /* shadow dari atas */
        inset 0 -80px 50px -50px rgba(0, 0, 0, 0.08);  /* shadow dari bawah */
}

.card-services {
    height: 300px;
}

.card-services:hover{
    background-color: #1037ff;
}




/* -----------------------------
   VISI & MISI SECTION
------------------------------ */
.visimisi {
    background-color: #ffffff;
    max-width: 900px;
    position: relative;
    top: 0;
    padding-bottom: 60px;
}

.img-visimisi {
    width: 50%;                  /* Mengurangi ukuran card gambar */
    height: 400px;               /* Menyesuaikan tinggi gambar */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 10px;
}

.card-visimisi {
    position: relative;
    z-index: 1;
    background: white;
    border: 1px solid #ccc;
    padding: 70px;
    top: 30px;
    margin-left: 45%;            /* Menggeser card tulisan lebih ke kanan */
    width: 60%;                  /* Menyesuaikan lebar agar tulisan terlihat utuh */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Efek shadow */
    border-radius: 10px;         /* Membuat sudut lebih lembut */
}

.visimisi h4 {
    color: #1037ff;
    font-weight: bold;
}

.advantage-item .card:hover {
    transform: translateY(-5px);
    background-color: rgb(56, 156, 255) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .img-visimisi {
        display: none !important;
    }

    .h-about{
        text-align: center;
    }

    #card-visimisi {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .card-visimisi {
        all: unset;
        display: block;
        width: 100%;
    }

    .visimisi {
        min-height: fit-content;
        padding-bottom: 50px;
    }

    .advantage-item {
        padding: 30px 0px;
    }

    .card-services {
        margin: 30px 0px !important;
    }
}
