html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    padding: 15px;
    background-color: white;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.my-float {
    font-size: 30px;
}    

.aboutus {
    min-height: 700px; /* atau set tinggi secukupnya */
    overflow: hidden; /* supaya gambar nggak keluar dari container */
}

.fs-7 {
    font-size: 0.875rem !important; /* 14px */
  }  

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 900px;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    box-sizing: border-box;
    min-height: 700px;
    padding-top: 60px;
}

.about-container h3,
.about-container p {
  margin-top: 0;
  margin-bottom: 0.5rem; /* atau 0 kalau mau super rapat */
}

.about-container h3 {
    text-align: left; /* Buat judul rata kiri */
    width: 100%; /* Pastikan selebar kontainer */
}

.fixed-image {
    position: fixed;
    width: 120px; /* Sesuaikan ukuran */
    height: auto;
    z-index: 9999; /* Pastikan lebih tinggi dari header */
    pointer-events: none; /* Agar tidak mengganggu klik di halaman */
}

.left-bottom {
    bottom: 10px;
    left: 10px;
}

.right-top {
    top: 50px;
    right: 10px;
}

p{
    color: #7F7F7F;
}

strong{
    color: #2f475e;
}

.nav-pills .nav-link.active {
    background-color: transparent !important;
    box-shadow: none !important;
}

.nav-link {
    color: #34c1df !important; /* Warna default */
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
color: #2f475e;
}

.nav-link.active {
    color: #2f475e !important; /* Warna setelah diklik */
    font-weight: bold;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.product-text {
    text-align: left;
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
}

footer {
    background-color: #34c1df;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    min-height: 100vh; 
}

.mySwiper {
    width: 100vw; /* Lebar penuh */
    height: 100vh; /* Tinggi penuh */
}

.swiper {
    max-width: 100%; /* Sesuaikan ukuran slider */
    height: auto;
    padding-bottom: 50px; /* Beri ruang untuk pagination */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.slider-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background:#99d4e8;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #34c1df !important; 
    opacity: 1;
}

.swiper-button-prev, .swiper-button-next {
    color: #99d4e8 !important; 
}

@media (max-width: 576px) {
    .product-text {
        text-align: center !important;
        margin-top: 1rem;
    }
    .contact-box .row > div {
        border: none !important;
    }
    .about-container {
        font-size: 1.05rem !important;
        /* min-height: auto; */
        /* margin-top: 0 !important; */
        padding-top: 100px !important;
        /* background-color: rgba(255, 255, 255, 0.8);  */
    }
}

@media (max-width: 768px) {
    .about-container {
        /* padding: 1rem; */
        font-size: 1.25rem;
        /* min-height: auto; */
        /* padding-top: 100px; */
    }

    .about-container h3 {
        /* font-size: 20px; */
        text-align: center; /* Boleh center kalau lebih rapi di mobile */
    }

    .aboutus .bg {
        background-position: top center;
    }

    .bg {
        padding: 3rem 1rem;
    }
}