        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 0px;
            padding-bottom: 0px;
        }

        .hero {
            background-image: url('background.jpg'); /* Ganti dengan path gambar Anda */
            background-size: cover; /* Membuat gambar menutupi seluruh area */
            background-position: center; /* Memposisikan gambar di tengah */
            background-repeat: no-repeat; /* Mencegah gambar diulang */
            padding-top: calc(120px + 5rem);
            padding-bottom: 200px;
            text-align: left;
            position: relative;
            display: block;
            color: white; /* Opsional: Ubah warna teks jika gambar latar belakang gelap */
        }
        .hero-content {
            margin-bottom: 30px;
            height: 500px;
        }

        .hero-subtitle-top {
            font-size: 1.2rem;
            color: #615F5F;
            margin-bottom: 0.5rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #484646;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .hero-subtitle-bottom {
            font-size: 1.2rem;
            color: #615F5F;
            margin-top: 1rem;
            margin-bottom: 30px;
        }

        .btn-diagnosa {
            background-color: #1A2B4C;
            color: white;
            border: none;
            border-radius: 100px;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            float: right;
            margin-bottom: 30px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .btn-diagnosa:hover {
            background-color: #dedede;
            color: #1A2B4C;
        }

        /* Style untuk card hero (warna emas) */
        .hero-diagnosa-card {
            background: linear-gradient(to right, #FFD700, #FFA500);
            width: 60%; /* Lebih lebar di mobile */
            margin: 20px auto;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 20px;
            z-index: 10;
        }

        .hero-diagnosa-card-title {
            color: #484646;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero-diagnosa-card-paragraph {
            color: #333;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .hero-diagnosa-form {
            gap: 15px;
            margin-bottom: 25px;
        }

        .hero-diagnosa-form input[type="text"],
        .hero-diagnosa-form input[type="email"],
        .hero-diagnosa-form input[type="tel"] {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 100px;
            margin: 5px;
        }

        .hero-diagnosa-card .btn-diagnosa {
            width: 80%;
            font-size: 1.2rem;
            padding: 1rem 2rem;
            float: none;
            margin: 20px auto 0;
            display: block;
        }

        /* Style untuk Why Us section */
        .why-us {
            padding: 0px !important;
            padding-top: 80px !important;
            height: 900px;
            position: relative; /* Menjadikan container sebagai positioning context */
            overflow: hidden; /* Mencegah overflow dari gambar */
            display: flex; /* Mengatur tata letak flex untuk gambar dan card */
            align-items: flex-end; /* Mengalign item ke bagian bawah container */
            justify-content: space-between; /* Memberi ruang antara gambar dan card */
        }

        .why-us-title {
            color: #1A2B4C;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 40px;
            text-align: center;
            font-style: italic; /* Title dibuat italic */
            position: absolute; /* Agar tidak terpengaruh flex layout */
            top: 40px; /* Atur posisi atas title */
            left: 50%;
            transform: translateX(-50%);
            z-index: 3; /* Lebih tinggi dari gambar dan card */
            width: 100%; /* Agar bisa center dengan baik */
        }

        .why-us-content {
            /* display: flex; */ /* Dihapus karena layout flex sudah di .why-us */
            align-items: center;
            /* justify-content: center; */ /* Dihapus */
            gap: 50px;
            width: 95%;
            margin: 0 auto;
            position: relative; /* Untuk positioning card */
            z-index: 2; /* Agar card berada di atas gambar */
        }

        .why-us-image {

            flex: 0 0 auto; /* Jangan tumbuh atau menyusut, ukuran otomatis */
            width: auto; /* Lebar otomatis */
            height: auto; /* Tinggi otomatis */
            max-width: 35%; /* Lebar maksimum 60% untuk memberi ruang pada card */
            z-index: 3 !important; /* Agar gambar berada di bawah card */
            margin-bottom: 0; /* Hilangkan margin bawah yang mungkin ada */
            position: absolute;
            bottom: 0px;
        }

        .why-us-card {
            flex: 1; /* Mengisi sisa ruang */
            background-color: #EEEEEE;
            padding-left: 60px !important;
            padding: 40px ;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            line-height: 1.8;
            margin-left: 45%; /* Berikan jarak dari gambar */
            margin-top: 60px; /* Berikan jarak dari gambar */
            margin-bottom: 60px; /* Berikan jarak dari gambar */
        }

        .why-us-quote {
            font-style: italic;
            margin: 20px 0;
            padding-left: 30px;
            position: relative;
            text-align: center;
            z-index: 3; /* Lebih tinggi dari gambar */
        }

        .why-us-quote::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background-color: #D9D9D9;
            border-radius: 5px;
            z-index: 3; /* Lebih tinggi dari gambar */
        }

        /* Style untuk Apa Kata Mereka section (Carousel) */
        .testimonials-section {
            background-color: #1A2B4C;
            padding: 80px 0;
            text-align: center;
        }

        .testimonials-title {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 40px;
            font-style: italic; /* Title dibuat italic */
        }

        #carouselExampleIndicators {
            width: 90%;
            margin: 0 auto;
        }

        .carousel-inner {
            padding-bottom: 40px; /* Ruang untuk indikator */
        }

        .carousel-item {
            text-align: center;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            max-width: 350px; /* Batasi lebar card */
            min-height: 450px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-card-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .testimonial-comment {
            font-style: italic;
            color: #555;
            margin-bottom: 15px;
            min-height: 80px;
            white-space: normal;
        }

        .testimonial-client-info {
            text-align: left;
            border-top: 5px solid #D9D9D9; /* Tambahkan garis atas */
            padding-top: 10px; /* Berikan sedikit ruang antara garis dan teks */
            margin-top: 15px; /* Berikan jarak dari elemen sebelumnya */
        }

        .testimonial-client-name {
            font-weight: bold;
            font-style: italic;
            color: #333;
            margin-bottom: 5px;
        }

        .testimonial-client-role {
            font-size: 0.9rem;
            font-style: italic;
            color: #777;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 0;
            left: 35%;
            transform: translateX(-50%);
            z-index: 15;
            display: flex;
            justify-content: center;
            margin-top: 0;
        }

        .carousel-indicators button {
            width: 20px; /* Lebar garis */
            height: 3px; /* Tinggi garis */
            border-radius: 0; /* Hilangkan border radius agar berbentuk garis */
            border: 0;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            opacity: 0.7;
            transition: opacity 0.6s ease;
        }

        .carousel-indicators .active {
            opacity: 1;
            background-color: white; /* Warna garis aktif */
        }

        #fitur, #cta {
            padding: 80px 0;
            text-align: left;
        }

        #fitur h2, #cta h2 {
            text-align: left !important;
            margin-bottom: 30px;
        }

        footer {
            background-color: #343a40;
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        footer a {
            color: #adb5bd;
            text-decoration: none;
            margin: 0 10px;
        }

        footer a:hover {
            color: white;
        }

        .navbar {
            padding: 2rem 1rem;
            background-color: transparent !important;
            transition: background-color 0.3s ease-in-out;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between; /* Distribute logo and search */
            align-items: center;
        }

        .navbar.scrolled {
            background-color: white !important;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled .navbar-brand-centered-logo,
        .navbar.scrolled .search-input,
        .navbar.scrolled .search-icon {
            color: #333;
        }

        .navbar-brand-centered-logo,
        .search-input{
            color: white;
        }

        .navbar-brand-centered-logo {
            display: flex;
            align-items: center;
        }

        .navbar-brand-centered-logo img {
            margin-right: 15px;
            height: 50px;
        }

        .navbar-search-wrapper {
            display: flex;
            align-items: center;
        }

        .search-input-group {
            position: relative;
            display: flex;
            align-items: center;
            border-radius: 100px; /* Membuat sudut rounded */
            overflow: hidden; /* Mencegah elemen dalam meluber dari border rounded */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Menambahkan shadow tipis */
        }

        .search-input {
            padding: 10px 40px 10px 15px; /* Tambah padding kanan untuk ikon */
            font-size: 1.1rem;
            border: none;
            border-radius: 100px; /* Membuat sudut rounded */
            outline: none; /* Hilangkan outline default saat fokus */
            background-color: rgba(255, 255, 255, 0.8); /* Latar belakang semi-transparan */
            color: white;
            margin-right: 0px !important;
        }

        .navbar.scrolled .search-input {
            color: #333;
            background-color: rgba(0, 0, 0, 0.05); /* Warna latar belakang saat di-scroll */
        }

        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #333;
            font-size: 1.2rem;
            z-index: 1; /* Pastikan ikon berada di atas input */
        }

        .navbar.scrolled .search-icon {
            color: #6c757d;
        }

        /* Style untuk Bersama section */
        .bersama-section {
            background: White; /* Gradasi emas lebih cerah */
            padding: 80px;
        }
        .bersama-image{
            margin: 100px 0;
            width: 100%;
        }

        .bersama-title {
            color: #1A2B4C;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 40px;
            text-align: center;
            font-style: italic; /* Title dibuat italic */
            position: absolute; /* Agar tidak terpengaruh flex layout */
            left: 50%;
            transform: translateX(-50%);
            width: 100%; /* Agar bisa center dengan baik */
        }

        /* Style untuk Solusi Kami section */
        .solusi-section {
            background: linear-gradient(to right, #FFD700, #FFB84D); /* Gradasi emas lebih cerah */
            padding: 80px 0;
        }

        .solusi-container {
            position: relative;
            display: flex;
            align-items: stretch; /* Agar tinggi list dan gambar sama */
            max-width: 1200px; /* Optional: Batasi lebar konten */
            margin: 0 auto;
        }

        .solusi-title {
            color: #1A2B4C; /* Warna biru seperti title "WHY US ?" */
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 40px;
            width: 100%; /* Agar berada di tengah atas */
        }

        .solusi-content {
            display: flex;
            flex-direction: row;
            width: 100%;
        }

        .solusi-list {
            flex: 1; /* Mengisi sisa lebar di kiri */
            padding: 20px;
        }

        .solusi-item {
            margin-bottom: 15px;
        }

        .solusi-link {
            display: block;
            background-color: #1A2B4C; /* Warna background seperti button */
            color: white; /* Warna teks seperti button */
            padding: 10px 15px;
            border-radius: 100px;
            font-weight: bold;
            text-decoration: none;
            margin-bottom: 5px;
            text-align: center;
        }

        .solusi-description {
            font-size: 0.8rem;
            color: #555;
            margin-top: 5px;
            text-align: center;
        }

        .solusi-image-wrapper {
            flex: 0 0 25%; /* Lebar 25% */
            position: relative;
            overflow: hidden; /* Untuk memastikan gambar terpotong sesuai wrapper */
            height: auto; /* Biarkan tinggi otomatis */
        }

        .solusi-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Mengisi container tanpa mengubah aspek rasio (crop jika perlu) */
        }

        .floating-button {
            display: none; /* Sembunyikan secara default */
            position: fixed;
            bottom: 20px;
            right: 85px;
            background-color: #25D366; /* Warna WhatsApp */
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: opacity 0.3s ease;

            display: flex;
            align-items: center;
            gap: 10px;
        }

        .floating-button i {
            font-size: 1.5rem;
        }

        .floating-button.show {
            display: flex; /* Tampilkan saat class 'show' ditambahkan */
            opacity: 1;
        }

        .floating-button:hover {
            opacity: 0.8;
        }

        .floating-button-2 {
            display: none; /* Sembunyikan secara default */
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: dimgrey; /* Warna WhatsApp */
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: opacity 0.3s ease;

            display: flex;
            align-items: center;
            gap: 10px;
        }

        .floating-button-2 i {
            font-size: 1.5rem;
        }

        .floating-button-2.show {
            display: flex; /* Tampilkan saat class 'show' ditambahkan */
            opacity: 1;
        }

        .floating-button-2:hover {
            opacity: 0.8;
        }


        /* Responsive adjustments */
        @media (max-width: 456px) {

            .why-us-image {
                display: none;
            }

            .why-us-card {
                font-size: 12px;
            }

            .hero {
                padding-top: 120px !important;
                padding-bottom: 20px !important;
            }

            .hero-title {
                font-size: 1.5rem;
                font-weight: bold;
                color: #484646;
                margin-bottom: 1rem;
                text-transform: uppercase;
            }
            .hero-subtitle-bottom {
                font-size: 0.9rem;
            }
            .hero-content {
                margin-bottom: 30px;
                height: 300px;
            }
            .hero-diagnosa-card {
                width: 100%; /* Lebih lebar di mobile */
                margin: 10px auto;
                padding: 10px;
                border-radius: 5px;
            }

            .hero-diagnosa-card-title {
                color: #484646;
                font-size: 1.2rem;
                font-weight: bold;
                margin-bottom: 15px;
            }

            .hero-diagnosa-card-paragraph {
                color: #333;
                line-height: 1.2;
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .btn-diagnosa {
                background-color: #1A2B4C;
                color: white;
                border: none;
                border-radius: 100px;
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                float: right;
                margin-bottom: 30px;
                font-weight: bold;
                text-transform: uppercase;
            }

        }

        @media (max-width: 768px) {

            .bersama-title {
                font-size: 1.5rem !important;
            }

            .bersama-section {
                padding:5px !important;
            }

            .floating-button {
                bottom: 10px;
                right: 10px;
                padding: 8px 16px;
                font-size: 1rem;
            }

            .floating-button i {
                font-size: 1.2rem;
            }

            .floating-button-2 {
                bottom: 10px;
                right: 10px;
                padding: 8px 16px;
                font-size: 1rem;
            }

            .floating-button-2 i {
                font-size: 1.2rem;
            }
            .why-us {
                flex-direction: column; /* Tumpuk gambar dan card di layar kecil */
                align-items: flex-start; /* Center item secara horizontal */
                height: 1460px !important;
            }

            .why-us-card {
                text-align: left;
                margin-left: 0; /* Hilangkan margin kiri pada card */
                margin-bottom: 15px; /* Hilangkan margin kiri pada card */
                width: 100%; /* Card mengisi hampir seluruh lebar */
                font-size: 14px;
            }

            .why-us-title {
                position: static; /* Kembali ke posisi static */
                transform: none; /* Hilangkan transform */
                text-align: center; /* Center title di layar kecil */
            }

            .why-us-content {
                flex-direction: column; /* Tumpuk konten di layar kecil */
                align-items: center; /* Center konten */
            }

            .why-us-image {
                flex: 0 0 auto; /* Jangan tumbuh atau menyusut, ukuran otomatis */
                width: auto; /* Lebar otomatis */
                height: auto; /* Tinggi otomatis */
                max-width: 50%; /* Lebar maksimum 60% untuk memberi ruang pada card */
                z-index: -1 !important; /* Agar gambar berada di bawah card */
                margin-bottom: 0; /* Hilangkan margin bawah yang mungkin ada */
                position: absolute;
                bottom: 0px;
                left: 28% !important;
            }

            .hero{
                padding-top: 150px;
                padding-bottom: 150px;
            }

            .hero-diagnosa-card {
                width: 80%; /* Margin kiri kanan lebih minim */
                margin-left: 0px;
                margin-right: 0px;
                bottom: auto; /* Biarkan flow normal */
                position: relative;
                margin-top: 20px;
            }

            .hero-diagnosa-form {
                flex-direction: column;
                gap: 10px;
            }

            .hero-diagnosa-card .btn-diagnosa {
                width: 100%;
            }

            #carouselExampleIndicators {
                width: 100%;
            }

            .navbar-search-wrapper {
                display: none; /* Hilangkan search bar di layar kecil */
            }

            .navbar {
                justify-content: center; /* Center logo di layar kecil */
            }

            .solusi-container {
                flex-direction: column; /* Tumpuk konten di layar kecil */
                align-items: center;
            }

            .solusi-title {
                margin-bottom: 20px;
            }

            .solusi-content {
                flex-direction: column;
            }

            .solusi-list {
                width: 95%;
                margin: 0 auto 20px;
            }

            .solusi-image-wrapper {
                width: 95%;
                height: 300px; /* Atur tinggi gambar proporsional */
                margin: 0 auto;
            }

        }
        @media (min-width: 769px) and (max-width: 993px) {
            .hero{
                padding-bottom: 400px !important;
            }
            
            .hero-diagnosa-card {
                width: 80%;
            }

            .hero-diagnosa-form {
                flex-direction: column;
                gap: 10px;
            }

            #carouselExampleIndicators {
                width: 90%;
            }

            .why-us {
                padding: 0px !important;
                padding-top: 40px !important;
                height: 1240px;
                align-items: flex-start !important; /* Mengalign item ke bagian bawah container */
            }

            .why-us-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
            }

            .why-us-quote {
                text-align: center;
                padding-left: 0;
            }

            .why-us-quote::before {
                display: none;
            }


            .why-us-image {
                flex: 0 0 auto; /* Jangan tumbuh atau menyusut, ukuran otomatis */
                width: auto; /* Lebar otomatis */
                height: auto; /* Tinggi otomatis */
                max-width: 45%; /* Lebar maksimum 60% untuk memberi ruang pada card */
                z-index: -1 !important; /* Agar gambar berada di bawah card */
                margin-bottom: 0; /* Hilangkan margin bawah yang mungkin ada */
                position: absolute;
                bottom: 0px;
                left: 28% !important;
            }

            .why-us-card {
                text-align: left;
                margin-left: 0; /* Hilangkan margin kiri pada card */
                margin-bottom: 15px; /* Hilangkan margin kiri pada card */
                width: 100%; /* Card mengisi hampir seluruh lebar */
            }

            .bersama-title {
                text-align: center; /* Center title di layar kecil */
                font-size: 1.5rem;
            }
        }

        @media (min-width: 993px) and (max-width: 1200px){
            .hero{
                padding-bottom: 400px !important;
            }
            
            .hero-diagnosa-card {
                width: 80%;
            }

            .hero-diagnosa-form {
                flex-direction: column;
                gap: 10px;
            }

            .bersama-title {
                text-align: center; /* Center title di layar kecil */
                font-size: 1.5rem;
            }

            .why-us {
                padding: 0px !important;
                padding-top: 40px !important;
                height: 1240px;
                align-items: flex-start !important; /* Mengalign item ke bagian bawah container */
            }

            .why-us-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
            }

            .why-us-quote {
                text-align: center;
                padding-left: 0;
            }

            .why-us-quote::before {
                display: none;
            }

            .why-us-image {
                flex: 0 0 auto; /* Jangan tumbuh atau menyusut, ukuran otomatis */
                width: auto; /* Lebar otomatis */
                height: auto; /* Tinggi otomatis */
                max-width: 45%; /* Lebar maksimum 60% untuk memberi ruang pada card */
                z-index: -1 !important; /* Agar gambar berada di bawah card */
                margin-bottom: 0; /* Hilangkan margin bawah yang mungkin ada */
                position: absolute;
                bottom: 0px;
                left: 28% !important;
            }

            .why-us-card {
                text-align: left;
                margin-left: 0; /* Hilangkan margin kiri pada card */
                margin-bottom: 15px; /* Hilangkan margin kiri pada card */
                width: 100%; /* Card mengisi hampir seluruh lebar */
            }
        }
