/* GENERAL STYLING */
:root {
    --primary-color: #11ACDA; 
    --secondary-color: #33a2e5; 
    --dark-color: #2c3e50; 
    --light-color: #f8f9fa; 
}
body {
    font-family: 'Poppins', sans-serif;
    color: #555;
    margin: 0; 
    padding-top: 105px; 
}




/* =================================
   Warning Pop Up Mobile Device
   ================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.popup-overlay.show {
    display: flex;
    opacity: 1;
}
.popup-content {
    position: relative;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}
.popup-content h3 {
    color: #333;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}
.popup-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px; /* Added some space before the image */
}
.popup-overlay.show .popup-content {
    transform: scale(1);
}
.popup-example-image {
    max-width: 80%; /* Make image slightly smaller than the popup width */
    height: auto;
    margin-top: 15px; /* Space between text and image */
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 4px;
}
.popup-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #11ACDA;
    color: #ffffff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.popup-close-btn:hover {
    transform: scale(1.1);
    background-color: #0e8aab;
}






/* =================================
   Sub Header 
   ================================= */
.subheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px; /* Dibuat lebih ramping */
    z-index: 1031; /* Paling atas */
    background: #11ACDA; /* Warna dasar lebih gelap untuk kontras */
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.subheader a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: all 0.3s ease;
}
.subheader a:hover {
    color: #fff;
}
.subheader .social-icons a {
    margin: 0 0.6rem;
}
.subheader .social-icons a:hover {
    transform: scale(1.1); /* Efek hover ikon sosial */
}
/* 1. Sembunyikan TOTAL semua elemen Google yang tidak diinginkan */
    .goog-te-banner-frame, .goog-te-gadget-simple img, img.goog-te-gadget-icon, #goog-gt-tt {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
    }
    /* 2. Reset total posisi halaman untuk menghilangkan spasi putih */
    body {
        top: 0px !important;
        position: static !important;
    }
    html.translated-ltr, html.translated-rtl,
    html.translated-ltr body, html.translated-rtl body {
        margin-top: 0px !important;
        top: 0px !important;
    }
    /* 4. Desain Tombol Ganti Bahasa yang Baru, Unik & Modern */
    #google_translate_element {
        margin-left: 15px;
        position: relative;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        padding: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    #google_translate_element:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    /* Wrapper untuk Select Box Google */
    .skiptranslate.goog-te-gadget {
        display: flex !important;
        align-items: center !important;
        height: 100%;
    }
    /* Ikon Globe menggunakan SVG agar pasti muncul */
    #google_translate_element .translate-icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 6px;
        padding-left: 8px;
    }
     #google_translate_element .translate-icon-wrapper svg {
        width: 16px;
        height: 16px;
        fill: white;
    }  
    /* Styling select box */
    .goog-te-gadget .goog-te-combo {
        background-color: transparent !important;
        color: white !important;
        border: none !important;
        padding: 5px 10px 5px 0px !important; /* Disesuaikan */
        cursor: pointer;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-weight: 500;
        font-size: 14px;
        -webkit-appearance: none; /* Menghilangkan style default */
        -moz-appearance: none;
        appearance: none;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    /* Opsi di dalam dropdown */
    .goog-te-gadget .goog-te-combo option {
        color: #333;
        background-color: white;
    }
    /* 5. Mengatur menu dropdown agar tidak menutupi konten lain */
    .goog-te-menu-frame {
        z-index: 9999 !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        background-color: white !important;
        /* Penting: Mencegah dropdown menutupi footer */
        position: absolute !important;
        top: calc(100% + 5px) !important; /* Muncul di bawah tombol dengan sedikit jarak */
        right: 0 !important; /* Rata kanan dengan tombol */
        left: auto !important;
    }
    /* Styling item di dalam dropdown */
    .goog-te-menu2-item div, .goog-te-menu2-item:link div, .goog-te-menu2-item:visited div, .goog-te-menu2-item:active div {
        padding: 10px 15px !important;
        font-family: inherit !important;
        color: #333 !important;
        transition: all 0.2s ease-in-out;
    }
    .goog-te-menu2-item-selected div, .goog-te-menu2-item:hover div {
        background-color: #f1f1f1 !important;
        color: #0056b3 !important;
    }




    

/* =================================
   Main Header 
   ================================= */
#mainNavbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 1rem;
    background-color: transparent; /* Awalnya transparan */
    box-shadow: none;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
/* Style saat di-scroll */
#mainNavbar.scrolled {
    background-image: url('../../img/banner-header.png'); 
    background-size: cover;          
    background-position: center;     
    background-repeat: no-repeat;    
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
#mainNavbar .navbar-brand img {
    height: 70px;
    transition: height 0.4s ease;
}
#mainNavbar.scrolled .navbar-brand img {
    height: 60px; /* Logo sedikit mengecil saat di-scroll */
}
/* (DIUBAH) Atur warna font awal menjadi putih */
#mainNavbar .nav-link {
    color: #fff; /* << FONT PUTIH saat di atas */
    font-weight: 600; 
    margin: 0 0.75rem;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}
/* (BARU) Atur warna font saat di-scroll menjadi hitam */
#mainNavbar.scrolled .nav-link {
    color: #333; /* << FONT HITAM saat di-scroll */
}
#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #11ACDA;
    transform: scaleX(0); /* Awalnya garis tidak terlihat */
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    transform: scaleX(1); /* Garis muncul dari kanan ke kiri */
    transform-origin: bottom left;
}
/* Aturan ini akan menimpa warna putih/hitam untuk link yang aktif */
#mainNavbar .nav-link.active {
    color: #11ACDA;
}





/* =================================
   Main Slider , (Home Page)
   ================================= */
#hero-slider-modern {
    margin-top: -70px;
    position: relative;
    height: 665px; 
    display: flex;
    align-items: center;
    /* GANTI DENGAN URL GAMBAR LATAR BELAKANG STATIS  */
    background-image: url('../../img/Slide\ 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7); 
    z-index: 1;
}
#hero-slider-modern .container {
    position: relative;
    z-index: 2;
}
.hero-swiper {
    width: 100%;
    height: 500px; 
}
.slide-title {
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}
.slide-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.slide-features svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #11ACDA; 
}
.slide-button {
    background-color: #11ACDA;
    border-color: #11ACDA;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.slide-button:hover {
    background-color: #0f9bc4;
    border-color: #0f9bc4;
    transform: translateY(-3px);
}
.slide-image {
    max-height: 450px; /* Batas tinggi gambar PNG */
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25)); /* Memberi bayangan pada PNG */
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #11ACDA;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); /* Efek glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #11ACDA !important; /* Warna panah */
    transition: all 0.3s ease;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background-color: rgba(17, 172, 218, 0.3);
    border-color: rgba(17, 172, 218, 0.5);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}
/* =================================
   Responsif untuk Hero Slider (HP)
   ================================= */
@media (max-width: 767px) {

    /* 1. Sesuaikan tinggi section agar otomatis sesuai konten */
    #hero-slider-modern {
        height: auto; /* Ganti tinggi tetap menjadi otomatis */
        padding: 120px 0 60px 0; /* Beri ruang di atas (untuk header) dan di bawah */
        background-attachment: scroll; /* 'fixed' sering bermasalah di HP */
    }

    .hero-swiper {
        height: auto; /* Tinggi slider juga otomatis */
    }

    /* 2. Atur ulang layout konten di dalam slide */
    .hero-swiper .row {
        flex-direction: column-reverse; /* Balik urutan: gambar di atas, teks di bawah */
        text-align: center; /* Pusatkan semua teks */
    }

    /* 3. Atur agar gambar muncul dan ukurannya pas */
    .slide-image {
        max-height: 250px;  /* Perkecil tinggi maksimal gambar */
        width: auto;
        max-width: 80%; /* Pastikan tidak lebih lebar dari layar */
        margin: 0 auto 30px auto; /* Beri jarak bawah dari gambar ke teks */
        display: block !important; /* Paksa gambar untuk tampil */
    }

    /* 4. Perkecil ukuran font dan elemen lain */
    .slide-title {
        font-size: 2rem; /* Perkecil judul */
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-features {
        justify-content: center; /* Pusatkan daftar fitur */
        padding-left: 0;
    }

    /* 5. Sembunyikan tombol navigasi panah di HP (opsional, tapi disarankan) */
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
}





/* -- Announcement Bar -- */
    .announcement-bar {
        display: flex;
        align-items: center;
        background-color: #2D3748; /* Warna abu-abu gelap seperti referensi */
        border-radius: 50px; /* Membuat sudut sangat tumpul */
        padding: 5px;
        overflow: hidden; /* Penting agar teks tidak keluar dari container */
        width: 100%;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    .announcement-icon {
        flex-shrink: 0; /* Mencegah icon mengecil */
        background-color: #11ACDA; /* Warna utama sesuai permintaan */
        color: white;
        padding: 10px 14px;
        border-radius: 50%; /* Membuat icon bulat sempurna */
        font-size: 16px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 2; /* Memastikan icon di atas teks */
    }

    .announcement-text-wrapper {
        flex-grow: 1; /* Mengisi sisa ruang */
        overflow: hidden; /* Menyembunyikan teks yang keluar dari area ini */
        position: relative;
        height: 30px; /* Sesuaikan dengan tinggi bar */
        line-height: 30px; /* Vertically center the text */
    }

    /* Gaya untuk setiap item pengumuman */
    .announcement-item {
        position: absolute;
        white-space: nowrap; /* Mencegah teks turun ke baris baru */
        font-size: 14px;
        margin: 0;
        will-change: transform;
        transform: translateX(110%); /* Posisi awal di luar layar kanan */
        visibility: hidden; /* Sembunyikan item yang tidak aktif */
        /* Transisi akan ditambahkan oleh JavaScript */
    }






    
/* =================================
   About Us , (Home Page)
   ================================= */

#about-us-modern {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}
.eyebrow-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d6efd; /* Warna biru primer */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.description-wrapper {
    padding-left: 20px;
    border-left: 3px solid #0d6efd;
    margin: 20px 0;
}
#about-us-modern .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
}
.image-collage-wrapper {
    position: relative;
    min-height: 450px;
}
.collage-img {
    position: absolute;
    border-radius: 12px;
    border: 5px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collage-img:hover {
    transform: translateY(-5px) scale(1.03);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}
.img-1 {
    width: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}
.img-2 {
    width: 40%;
    top: 40px;
    right: 0;
    z-index: 3;
}
.img-3 {
    width: 60%;
    bottom: 0;
    right: 20%;
    z-index: 1;
}
/* --- CSS WAJIB UNTUK EFEK BLUEPRINT --- */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Diletakkan di belakang konten */
}
#about-us-modern .container {
    position: relative; /* Memastikan konten berada di atas canvas */
    z-index: 1;
}
/* =================================
   Responsive Styles
   ================================= */
/* Tablet Devices (e.g., iPads in portrait) */
@media (max-width: 991.98px) {
    .image-collage-wrapper {
        min-height: 400px; /* Kurangi tinggi minimal untuk tablet */
        margin-top: 40px;
    }

    .img-1 {
        width: 65%;
    }

    .img-2 {
        width: 45%;
        top: 20px;
    }

    .img-3 {
        width: 55%;
        right: 15%;
    }

    /* Menyesuaikan ukuran font judul jika menggunakan class Bootstrap */
    #about-us-modern h1, #about-us-modern .display-4 {
        font-size: calc(1.375rem + 1.5vw);
    }
}
/* Mobile Devices (Phones) */
@media (max-width: 767.98px) {
    /* Pusatkan teks pada layar kecil */
    #about-us-modern .text-center-md-start {
        text-align: center !important;
    }
    .description-wrapper {
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
        padding-left: 15px; /* Kurangi padding kiri */
        border-left-width: 2px;
    }
    .image-collage-wrapper {
        min-height: auto; /* Hapus tinggi minimal agar gambar bisa ditumpuk */
        margin-top: 30px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Jarak antar gambar */
    }

    .collage-img {
        position: static; /* Ubah posisi menjadi static agar mengikuti alur normal */
        width: 85% !important;
        /* Hapus properti posisi absolut */
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none; /* Hapus transform sebelumnya */
    }

    .collage-img:hover {
        transform: scale(1.03); /* Sesuaikan efek hover */
    }
}













/* =================================
   Modern Informations Products Section
   ================================= */
#info-products-modern {
    background-color: #f8f9fa;
}
.accordion-item {
    background-color: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 12px !important; 
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.accordion-button {
    border-radius: 12px !important;
    font-weight: 600;
    color: #212529;
}
.accordion-button:not(.collapsed) {
    background-color: #11ACDA;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(17, 172, 218, 0.3);
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(17, 172, 218, 0.25);
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    content: "+";
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5rem;
    background-image: none; /* Menghapus gambar panah default */
    font-weight: 300;
    transition: transform 0.3s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    content: "−";
    transform: rotate(180deg);
}
.accordion-body {
    padding: 1.5rem;
}
.info-list-v2 {
    list-style: none;
    padding-left: 0;
}
.info-list-v2 li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #6c757d;
}
.info-list-v2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #11ACDA;
    font-weight: bold;
}
.info-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.info-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}









#homepage-customers {
    position: relative;
    overflow: hidden;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}
/* =================================
   Customers , (Home Page)
   ================================= */
.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}
.customer-logo-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}
.customer-logo-card.visible {
    animation: fadeInUp 0.5s ease forwards;
}
.customer-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(17, 172, 218, 0.1);
    border-color: rgba(17, 172, 218, 0.3);
}
.customer-logo-card img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}
/* Animasi Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Styling untuk tombol See More */
#homepage-customers .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

#homepage-customers .btn:hover {
    transform: scale(1.05);
}
/* --- CSS EFEK KILAU & LATAR --- */
.customer-logo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-150%);
    transition: transform 1.5s ease;
}
.customer-logo-card.shimmer::after {
    transform: translateX(250%);
}
#backgroundCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}











/* =================================
   Projects Section (Home Page) - REFINED
   ================================= */

/* --- Latar Belakang & Judul Section --- */
#projects {
    /* Gradient dibuat lebih halus dan modern */
    background: linear-gradient(135deg, #f0f9ff 0%, #d1edf7 100%);
}

#projects h2 {
    color: #0A5A7D;
    font-weight: 700; /* Dibuat sedikit lebih tebal */
}

#projects .text-muted {
    font-size: 1.1rem;
    color: #5a7a8a !important;
}

/* --- Tombol Filter Kategori --- */
.filter-controls .filter-btn {
    border: none; /* Hilangkan border standar */
    background-color: rgba(255, 255, 255, 0.6);
    color: #0A5A7D;
    backdrop-filter: blur(10px);
    margin: 5px;
    border-radius: 50px;
    padding: 10px 25px; /* Sedikit lebih besar agar mudah diklik */
    font-weight: 600; /* Dibuat lebih tebal */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Tambahkan shadow halus */
}

.filter-controls .filter-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px); /* Efek sedikit terangkat */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.filter-controls .filter-btn.active {
    background-color: #11ACDA;
    color: #fff;
    box-shadow: 0 5px 15px rgba(17, 172, 218, 0.4);
}

/* --- Kartu Proyek (Project Card) --- */
.project-card-v2 {
    background: #fff;
    border: none; /* Hilangkan border, gunakan shadow sebagai pemisah */
    border-radius: 15px; /* Sudut lebih tumpul */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Menggunakan flex untuk memastikan layout konsisten */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 90, 125, 0.15);
}

/* --- Gambar Proyek --- */
.project-image-wrapper-v2 {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    height: 200px;
}

.project-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; /* Transisi untuk efek zoom */
}

.project-card-v2:hover img {
    transform: scale(1.05); /* Efek zoom saat disentuh mouse */
}

/* --- Konten Info Proyek --- */
.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Membuat konten memenuhi sisa ruang kartu */
}

/* Kategori diubah menjadi badge/pill */
.project-category {
    align-self: flex-start; /* Membuat lebar badge sesuai konten */
    background-color: #e7f7fc;
    color: #0A5A7D;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-title-v2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-title-v2 a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title-v2 a:hover {
    color: #11ACDA;
}

/* Tambahan styling untuk deskripsi */
.project-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-top: auto; /* Mendorong deskripsi ke bawah (jika perlu) */
}


/* --- Tombol "View All Projects" --- */
/* Ini menargetkan link <a> yang menggantikan #loadMoreBtn */
.btn-outline-primary {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 172, 218, 0.3);
}


/* --- Class Utility untuk Isotope Filter (Tidak perlu diubah) --- */
.project-item.hide,
.project-item.initially-hidden {
    display: none;
}

/* =================================
   Responsive Styles (Projects)
   ================================= */
/* Tablet Devices */
@media (max-width: 991.98px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom untuk tablet */
    }

    #projects h2 {
        font-size: calc(1.325rem + 0.9vw); /* Ukuran font judul responsif */
    }
}
/* Mobile Devices */
@media (max-width: 767.98px) {
    .project-grid {
        grid-template-columns: 1fr; /* 1 kolom untuk mobile */
        gap: 20px;
    }

    #projects .text-center-md-start {
        text-align: center !important;
    }

    .filter-controls {
        justify-content: center; /* Pusatkan tombol filter */
        flex-wrap: wrap; /* Izinkan tombol untuk pindah baris */
    }

    .filter-controls .filter-btn {
        padding: 8px 20px; /* Perkecil padding tombol */
        font-size: 0.9rem;
    }

    .project-image-wrapper-v2 {
        height: 180px; /* Sesuaikan tinggi gambar untuk HP */
    }

    .project-info {
        padding: 20px; /* Kurangi padding di dalam kartu */
    }

    .project-title-v2 {
        font-size: 1.1rem; /* Sesuaikan ukuran font judul kartu */
    }
}










/* =================================
   About Us , (Home Page)
   ================================= */
.swiper-slide {
    padding: 20px 0; /* Memberi ruang untuk bayangan dan efek hover */
}
.category-card {
    position: relative;
    padding: 20px;
}
.card-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
    z-index: 1;
}
.category-card:hover .card-bg-shape {
    transform: rotate(-10deg) scale(1.05);
}
.swiper-slide:nth-child(3n+1) .card-bg-shape {
    background-color: #11ACDA; /* Warna utama Anda */
}
.swiper-slide:nth-child(3n+2) .card-bg-shape {
    background-color: #2A1D74; /* Warna oranye yang serasi */
}
.swiper-slide:nth-child(3n+3) .card-bg-shape {
    background-color: #0A192F; /* Warna biru gelap sebagai aksen ketiga */
}
.card-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    z-index: 2;
    transition: transform 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.category-card:hover .card-content {
    transform: translateY(-10px);
}
.image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.text-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.text-wrapper .card-title {
    margin-bottom: 15px;
    color: #212529;
}
.text-wrapper .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}
.card-dots {
    margin-top: 20px;
}
.card-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #adb5bd;
    margin: 0 2px;
}
.slider-navigation-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-prev,
.swiper-button-next {
    position: static;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #11ACDA !important; /* Warna panah disesuaikan */
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    font-weight: bold;
}
.swiper-pagination {
    position: static;
    width: auto !important;
}
.swiper-pagination-bullet {
    background-color: #adb5bd;
}
.swiper-pagination-bullet-active {
    background-color: #11ACDA; /* Warna titik aktif disesuaikan */
}
#featured-products {
    background-color: #f8f9fa; /* Warna background terang */
}
#testimonials-marquee {
    background-color: #ffffff; /* Warna background putih */
}
#featured-products .container,
#testimonials-marquee .container {
    position: relative;
    overflow: hidden; /* Memotong konten yang keluar dari container */
}
#featured-products .container::before,
#featured-products .container::after,
#testimonials-marquee .container::before,
#testimonials-marquee .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
}
#featured-products .container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 20%, transparent); 
}
#featured-products .container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 20%, transparent);
}
#testimonials-marquee .container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 20%, transparent); 
}
#testimonials-marquee .container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 20%, transparent);
}
#featured-products .swiper-slide { padding: 20px 0; }
#featured-products .category-card { /* ... styling kartu ... */ }
#featured-products .slider-navigation-controls { /* ... styling navigasi ... */ }
#testimonials-marquee .marquee-row { /* ... styling baris marquee ... */ }
#testimonials-marquee .testimony-card-marquee { /* ... styling kartu testimoni ... */ }








/* =================================
   FIX untuk Layout Zoom-Out Product Section
   ================================= */
#featured-products {
    background: linear-gradient(135deg, #e7f4f9 10%, #ffffff 40%, #ecf7ff 50%);
}
#testimonials-marquee {
    background-color: #ffffff; 
}
#featured-products .container,
#testimonials-marquee .container {
    position: relative;
    overflow: hidden; 
}
#featured-products .container::before,
#featured-products .container::after,
#testimonials-marquee .container::before,
#testimonials-marquee .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
}
#featured-products .container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 20%, transparent); 
}
#featured-products .container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 20%, transparent);
}
#testimonials-marquee .container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 20%, transparent); 
}
#testimonials-marquee .container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 20%, transparent);
}
#featured-products .swiper-slide { padding: 20px 0; }
#featured-products .category-card { /* ... styling kartu ... */ }
#featured-products .slider-navigation-controls { /* ... styling navigasi ... */ }
#testimonials-marquee .marquee-row { /* ... styling baris marquee ... */ }
#testimonials-marquee .testimony-card-marquee { /* ... styling kartu testimoni ... */ }







 

/* =================================
   Testimonials , (Home Page)
   ================================= */
#testimonials-marquee {
    /* Kita gunakan warna background terang agar gradasi menyatu sempurna */
    background: linear-gradient(135deg, #f8fdff 10%, #ffffff 50%, #ecf7ff 100%);
    overflow-x: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
#testimonials-marquee .container {
    position: relative;
    overflow: hidden; 
    padding-left: 0;
    padding-right: 0;
}
#testimonials-marquee .container::before,
#testimonials-marquee .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px; /* Lebar gradasi, bisa disesuaikan */
    z-index: 2;
}
#testimonials-marquee .container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 20%, transparent); 
}
#testimonials-marquee .container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 20%, transparent);
}
.rating-pill {
    display: inline-block;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
}
/* Marquee Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.marquee-row {
    display: flex;
    width: 100%;
    margin-bottom: 1.5rem;
}
.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}
.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: around;
    min-width: 100%;
    animation: scroll 40s linear infinite;
}
.marquee-row.reverse .marquee-content {
    animation-direction: reverse;
}
.testimony-card-marquee {
    width: 400px;
    flex-shrink: 0;
    background-color: #ffffff; /* Kartu tetap putih */
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 0 0.75rem;
    display: flex;
    flex-direction: column;
}
.testimony-card-marquee .quote-icon-new {
    color: #9ca3af;
    margin-bottom: 1rem;
}
.testimony-card-marquee p {
    flex-grow: 1;
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1.5rem;
}
.author-info-marquee {
    display: flex;
    align-items: center;
    margin-top: auto;
}
.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    flex-shrink: 0;
}
.profile-icon svg {
    width: 24px;
    height: 24px;
}
.author-info-marquee h6 {
    font-weight: 600;
    color: #111827;
}
.star-rating {
    color: #f59e0b;
    line-height: 1;
    margin-left: auto;
    flex-shrink: 0;
}
.star-rating svg {
    width: 16px;
    height: 16px;
    display: inline-block;
}





/* =================================
   News , (Home Page)
   ================================= */
.news-style-horizontal::before {
    content: '';
    position: absolute;
    top: -100px;         /* Posisi dari atas */
    left: -150px;        /* Pindah ke KIRI */
    width: 400px;
    height: 400px;
    background-color: #eaf8fc; /* Warna biru muda soft */
    transform: rotate(-25deg); /* Ubah rotasi agar berbeda */
    z-index: 0;
    opacity: 0.7;
}
.news-style-horizontal {
    padding: 5rem 0;
    position: relative;
    background-color: #fdfbfb; 
    overflow: hidden;
}
.news-style-horizontal .container {
    position: relative;
    z-index: 1;
}
.news-style-horizontal .section-title {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 2.2rem; 
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}
.news-style-horizontal .more-news-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.news-style-horizontal .more-news-link i {
    margin-left: 5px;
}
.news-style-horizontal .more-news-link:hover {
    color: var(--secondary-color);
}
.news-card-horizontal {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column; 
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
    .news-card-horizontal {
        flex-direction: row; 
    }
}
.news-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.news-card-horizontal .card-img-top {
    height: auto;
    width: 100%;
    object-fit: cover;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
}
@media (min-width: 768px) {
    .news-card-horizontal .card-img-top {
        width: 180px; /* Lebar gambar */
        height: 100%;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        border-top-right-radius: 0;
    }
}
.news-card-horizontal .card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-card-horizontal .post-meta {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 0.5rem;
}
.news-card-horizontal .post-meta .separator {
    margin: 0 0.3rem;
}
.news-card-horizontal .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.news-card-horizontal .card-title a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}
.news-card-horizontal .card-title a:hover {
    color: var(--primary-color);
}
.news-card-horizontal .card-text {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}





/* =================================
   Contact , (Home Page)
   ================================= */
#cta-contact {
    padding: 5rem 0;
    background-color: var(--dark-color); /* Warna biru tua/abu agar kontras */
    color: #fff;
}
#cta-contact .cta-title {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
#cta-contact .cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
#cta-contact .btn-cta-special {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px; /* Bentuk pil */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
#cta-contact .btn-cta-special:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}





/* =================================
   Choose Us , (Home Page)
   ================================= */
#why-choose-us {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8fdff 0%, #ffffff 50%, #f0f9ff 100%);
    overflow: hidden;
}
#why-choose-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #11ACDA15, #11ACDA08);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}
#why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #11ACDA10, #11ACDA05);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}
#why-choose-us .container {
    position: relative;
    z-index: 1;
}
#why-choose-us .section-title {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}
.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #11ACDA, #16c5f0);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    position: relative;
}
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #11ACDA;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(17, 172, 218, 0.3);
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 0;
}
.feature-card {
    background: #ffffff;
    border: none;
    padding: 3rem 2.5rem;
    text-align: center;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(17, 172, 218, 0.03), transparent);
    transition: left 0.6s;
}
.feature-card:hover::before {
    left: 100%;
}
.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(17, 172, 218, 0.15);
}
.feature-card.featured {
    background: linear-gradient(135deg, #11ACDA08, #ffffff);
    border: 2px solid #11ACDA20;
}
.feature-card.featured:hover {
    background: linear-gradient(135deg, #11ACDA12, #ffffff);
}
.icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
}
.icon-bg {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #11ACDA, #16c5f0);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(17, 172, 218, 0.25);
}
.icon-bg::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #11ACDA30;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}
.feature-card:hover .icon-bg {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(17, 172, 218, 0.35);
}
.feature-card:hover .icon-bg::before {
    opacity: 1;
    transform: rotate(-10deg);
}
.icon-bg img {
    height: 45px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.feature-card:hover .icon-bg img {
    transform: scale(1.1);
}
.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    position: relative;
}
.feature-card p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}
.card-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #11ACDA, #16c5f0);
    border-radius: 2px 2px 0 0;
    transition: width 0.4s ease;
}
.feature-card:hover .card-accent {
    width: 60px;
}
.feature-card.featured .card-accent {
    width: 60px;
    background: linear-gradient(90deg, #11ACDA, #0ea5e9);
}
@media (max-width: 768px) {
    #why-choose-us .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .icon-bg img {
        height: 40px;
    }
}
@media (max-width: 576px) {
    #why-choose-us {
        padding: 4rem 0;
    }
    
    #why-choose-us .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}





/* =================================
   Cta Banner, (Home Page)
   ================================= */
.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Agar responsif di layar kecil */
    gap: 1rem; /* Jarak antara teks dan tombol di mobile */
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 1rem;
}
.cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}
.btn-cta {
    background-color: #4a5568; /* Abu-abu tua */
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}
.btn-cta:hover {
    background-color: #2d3748; /* Warna abu-abu lebih gelap saat hover */
    color: #fff;
}






/* =================================
   Footer , (Home Page)
   ================================= */
.site-footer {
    font-size: 0.9rem;
    color: #333; /* Warna teks utama di footer */
}
.footer-top {
    background-color: #ffffffff; /* Warna abu-abu muda seperti di gambar */
    padding: 2rem 0;
}
.footer-logo {
    max-height: 65px;
}
.footer-about {
    line-height: 1.6;
}
.footer-heading {
    font-family: 'Times New Roman', Times, serif; 
    font-weight: 700;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
}
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}
.footer-contact .contact-item i {
    color: var(--secondary-color); 
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    width: 25px; 
}
.footer-contact .contact-item h5 {
    margin-bottom: 0.3rem;
}
.footer-contact .contact-item p {
    margin: 0;
    line-height: 1.5;
}
.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.7rem;
}
.footer-links a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px; 
}
/* =================================
   SubFooter CR , (Home Page)
   ================================= */
.footer-bottom {
    background-color: #11acda; 
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 500;
    color: white;
}






/* =================================
   Advanced Chatbot Styling V2
   ================================= */

/* Tombol Chat */
.chatbot-toggler {
    position: fixed;
    bottom: 30px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#7d9fd2 0%,  #11ACDA 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1051;
    box-shadow: 0 8px 20px rgba(17, 172, 218, 0.3);
    transition: all 0.3s ease;
}
.chatbot-toggler:hover {
    transform: scale(1.1) rotate(10deg);
}
.chatbot-toggler .fa-times { display: none; }
.chatbot-container.show ~ .chatbot-toggler .fa-comment-alt { display: none; }
.chatbot-container.show ~ .chatbot-toggler .fa-times { display: block; }

/* Kontainer Chat */
.chatbot-container {
    position: fixed;
    bottom: 110px;
    right: 35px;
    width: 400px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef0f3;
    display: flex;
    flex-direction: column;
    transform: scale(0.5) translateY(50px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1050;
}
.chatbot-container.show {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    background: linear-gradient(135deg, #30558e 0%, #344a6f 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px 20px 0 0;
    position: relative;
}
.chatbot-header::after { /* Efek kilau */
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.chatbot-header .chatbot-avatar {
    width: 45px; height: 45px; flex-shrink: 0;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-weight: 600;
    background-color: #11ACDA;
}

.chat-log {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    height: 400px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Pesan Chat */
.chat-message {
    display: flex;
    margin-bottom: 1rem;
    gap: 10px;
    animation: fadeInUp 0.4s ease;
}
.chat-message p {
    margin: 0;
    padding: 0.8rem 1.2rem;
    border-radius: 18px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}
.chat-message .timestamp {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    margin-top: 5px;
}

.bot-message p {
    background-color: #f1f5f9; color: #212529; border-top-left-radius: 4px;
}

.user-message { justify-content: flex-end; }
.user-message p { background-color: #11ACDA; color: #fff; border-top-right-radius: 4px; }
.user-message .timestamp { text-align: right; }


/* Input Area */
.chat-input-area { display: flex; padding: 0.75rem 1.5rem; border-top: 1px solid #eef0f3; }
#chat-input { flex-grow: 1; border: none; outline: none; padding: 0.5rem; background: transparent; }
#send-btn { border: none; background: transparent; color: #11ACDA; font-size: 1.2rem; cursor: pointer; }

/* Opsi Pilihan */
.chat-options { padding: 0 0 1rem 0; display: flex; flex-wrap: wrap; gap: 10px; }
.option-btn { background-color: #fff; border: 1px solid #11ACDA; color: #11ACDA; border-radius: 50px; padding: 8px 15px; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; }
.option-btn:hover { background-color: #11ACDA; color: #fff; }

/* Indikator Pengetikan */
.typing-indicator { display: none; padding: 0 1.5rem 1rem; }
.typing-indicator.show { display: flex; }
.typing-indicator .dot { width: 8px; height: 8px; border-radius: 50%; background-color: #adb5bd; margin: 0 3px; animation: bounce 1.2s infinite ease-in-out; }
.typing-indicator .dot:nth-child(2) { animation-delay: -0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: -0.4s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1.0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }










@keyframes movePattern {
            from { background-position: 0 0; }
            to { background-position: 500px 500px; }
        }
        
        .text-primary {
            color: #11ACDA !important;
        }
        
        .partner-logo-wrapper {
            transition: all 0.3s ease-in-out;
            filter: grayscale(100%);
            background-color: #ffffff; /* Ubah ke putih solid */
            border: 1px solid #e9ecef;
        }

        .partner-logo-wrapper:hover {
            transform: scale(1.05);
            filter: none;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
        }

        .partnership-svg {
            max-width: 350px;
            width: 100%;
            margin: 0 auto 1.5rem auto;
        }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideInLeft { from { transform: translateX(-50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        @keyframes slideInRight { from { transform: translateX(50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        @keyframes popIn { 0% { transform: scale(0.5); opacity: 0; } 70% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
        @keyframes handshake { 0%, 100% { transform: translate(0, 0) rotate(0); } 25% { transform: translate(-2px, 2px) rotate(-2deg); } 75% { transform: translate(2px, -2px) rotate(2deg); } }

        .partnership-svg .person-left { animation: slideInLeft 1s ease-out forwards; }
        .partnership-svg .person-right { animation: slideInRight 1s ease-out forwards; }
        .partnership-svg .handshake-group { opacity: 0; animation: fadeIn 0.5s 1s ease-out forwards, handshake 0.8s 1.5s ease-in-out infinite; transform-origin: center; }
        .partnership-svg .background-elements { opacity: 0; animation: popIn 1.2s 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }