/* ======================= CSS DASAR (SHARED) ======================= */
:root {
    --color-primary: #003366;      
    --color-accent: #66CCFF;       
    --color-text-dark: #333333;    
    --color-text-light: #ffffff;   
    --color-background-light: #f4f8ff; 
    --font-family-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-text-light);
}

.container {
    max-width: 1140px; 
    margin: 0 auto;
    padding: 0 25px; 
}

h1, h2, h3 {
    line-height: 1.2;
    color: var(--color-primary);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.content-section {
    padding: 80px 0;
}

/* Tombol CTA Styling */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1rem;
}

.cta-button.primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.cta-button.primary:hover {
    background-color: #4C9BD3;
    transform: translateY(-2px);
}

.cta-button.header-cta {
    padding: 8px 20px;
    font-size: 0.95rem;
    margin-left: 20px;
}

.cta-button.large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* HEADER & NAVBAR */
.header {
    background-color: var(--color-text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px; 
    width: auto;
}

.navbar a {
    text-decoration: none;
    color: var(--color-text-dark);
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.navbar a:hover, .navbar a.active-page {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

/* RUNNING TEXT */
.running-text {
    background-color: var(--color-primary);
    color: var(--color-accent);
    padding: 5px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background-color: var(--color-primary);
    color: #ddd;
    padding-top: 50px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #66CCFF;
}

.footer-col {
    flex-basis: 30%;
}

.logo-footer {
    font-size: 1.5rem;
    color: var(--color-);
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.footer-sitemap ul {
    list-style: none;
}

.footer-sitemap ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-sitemap ul li a:hover {
    color: var(--color-accent);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--color-accent);
}

.footer-bottom {
    padding: 15px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #66CCFF;
}

/* Media Queries Dasar */
@media (max-width: 992px) {
    .navbar a {
        margin: 0 10px;
        font-size: 0.9rem;
    }
    .footer-layout {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col {
        flex-basis: 100%;
    }
}

/* ======================= CSS KHUSUS INDEX.HTML ======================= */

/* ======================= CSS KHUSUS INDEX.HTML ======================= */

/* ======================= CSS KHUSUS INDEX.HTML ======================= */

.hero-section {
    /* --- PERUBAHAN UTAMA UNTUK UKURAN GAMBAR DIMULAI --- 
    */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('gambar/Foto\ Gedung\ \(3\).png'); /* GANTI JALUR INI */
    
    /* Mengubah dari 'cover' menjadi 'contain' agar seluruh gambar terlihat */
    background-size: cover; 
    
    /* Mengubah posisi agar gambar berpusat */
    background-position: center; 
    
    background-repeat: no-repeat;
    
    /* Mengatur tinggi minimum untuk memberikan ruang yang cukup bagi konten dan gambar */
    /* Rasio 928/1120 ≈ 0.83. Kita atur tinggi minimum yang sesuai. */
    min-height: 550px; /* Nilai yang masuk akal dan tetap responsif */
    /* --- PERUBAHAN UTAMA UNTUK UKURAN GAMBAR SELESAI --- 
    */

    color: var(--color-text-light); 
    padding: 130px 0; 
    text-align: center;
    display: flex;
    align-items: center;
}

/* Bagian teks lainnya (h1, tagline, subtext) tetap sama */

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
    color: var(--color-text-light); 
    font-weight: 800;
}

.tagline {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-accent); 
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.subtext {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto 50px auto; 
    color: #eee;
    opacity: 1;
}

.cta-service-home {
    /* ... (Tidak ada perubahan di sini) ... */
}

/* Media Query Khusus Index */
@media (max-width: 768px) {
    /* ... (Tidak ada perubahan di sini) ... */
}

    .subtext {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
/* =======================================
   Gaya untuk Bagian Tentang Kami (about-details-grid)
   ======================================= */

.about-details-grid {
    display: grid;
    /* Membuat tata letak dua kolom */
    grid-template-columns: 1fr 1.2fr; /* Gambar lebih kecil, teks lebih lebar */
    gap: 70px; /* Jarak antar kolom */
    margin-top: 80px; /* Jarak dari subtext di atasnya */
    align-items: center; /* Konten sejajar di tengah vertikal */
    padding-bottom: 80px; /* Jarak sebelum bagian Visi & Misi */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover; /* Memastikan gambar terisi dengan baik */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #003366;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* Gaya untuk daftar ceklis di About */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.check-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #444;
}

.check-list i {
    color: #FF6B6B; /* Warna ikon (sesuaikan dengan warna primary Anda) */
    margin-right: 10px;
    font-size: 1.1em;
}

/* Responsif untuk tablet dan ponsel */
@media (max-width: 992px) {
    .about-details-grid {
        grid-template-columns: 1fr; /* Menjadi satu kolom */
        gap: 40px;
        margin-top: 50px;
    }
    .about-image {
        order: -1; /* Memastikan gambar muncul di atas teks pada mobile */
    }
    .about-text h2 {
        font-size: 1.8em;
    }
}/* =======================================
   Gaya untuk Bagian Banner di Beranda (banner-section)
   (Disesuaikan agar sedikit lebih kecil)
   ======================================= */

.banner-section {
    /* Mengurangi padding vertikal (dari 60px menjadi 40px) */
    padding: 40px 0; 
    background-color: #f7f7f7; 
}

.banner-section .container {
    padding: 0 20px; 
}

.full-width-banner {
    width: 100%;
    height: auto; 
    display: block;
    /* Mengurangi border-radius dan box-shadow agar terlihat lebih ringkas */
    border-radius: 8px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
    object-fit: cover;
}

/* Responsif untuk perangkat kecil */
@media (max-width: 768px) {
    .banner-section {
        /* Padding yang lebih kecil untuk tampilan mobile */
        padding: 30px 0;
    }
    .full-width-banner {
        border-radius: 6px;
    }
}/* =======================================
   Gaya untuk Bagian Banner di Beranda (index.html)
   ======================================= */

.banner-section {
    /* Padding vertikal dikurangi agar banner terlihat lebih ringkas */
    padding: 40px 0; 
    /* Latar belakang opsional */
    background-color: #f7f7f7; 
}

.banner-section .container {
    /* Memastikan gambar tidak menyentuh pinggir container jika ada padding global */
    padding: 0 20px; 
}

/* Gaya untuk Judul Banner Baru */
.banner-title {
    font-size: 1.8em; 
    font-weight: 700;
    color: #003366; 
    text-align: center; 
    margin-top: 0;
    margin-bottom: 30px; 
}

/* Gaya untuk Gambar Banner */
.full-width-banner {
    width: 100%;
    height: auto; 
    display: block;
    /* Mengurangi border-radius dan box-shadow agar terlihat lebih ringkas */
    border-radius: 8px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
    object-fit: cover;
}

/* Media Query untuk Perangkat Kecil (Responsif) */
@media (max-width: 768px) {
    .banner-section {
        /* Padding yang lebih kecil untuk tampilan mobile */
        padding: 30px 0;
    }
    
    .banner-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .full-width-banner {
        border-radius: 6px;
    }
}/* ======================= CSS DASAR (SHARED) ======================= */
:root {
    --color-primary: #003366;      
    --color-accent: #66CCFF;       
    --color-text-dark: #333333;    
    --color-text-light: #ffffff;   
    --color-background-light: #f4f8ff; 
    --font-family-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-text-light);
}

.container {
    max-width: 1140px; 
    margin: 0 auto;
    padding: 0 25px; 
}

h1, h2, h3 {
    line-height: 1.2;
    color: var(--color-primary);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.content-section {
    padding: 80px 0;
}

/* Tombol CTA Styling */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1rem;
}

.cta-button.primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.cta-button.primary:hover {
    background-color: #4C9BD3;
    transform: translateY(-2px);
}

.cta-button.header-cta {
    padding: 8px 20px;
    font-size: 0.95rem;
    margin-left: 20px;
}

.cta-button.large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* HEADER & NAVBAR */
.header {
    background-color: var(--color-text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px; 
    width: auto;
}

.navbar a {
    text-decoration: none;
    color: var(--color-text-dark);
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.navbar a:hover, .navbar a.active-page {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

/* RUNNING TEXT */
.running-text {
    background-color: var(--color-primary);
    color: var(--color-accent);
    padding: 5px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background-color: var(--color-primary);
    color: #ddd;
    padding-top: 50px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex-basis: 30%;
}

.logo-footer {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.footer-sitemap ul {
    list-style: none;
}

.footer-sitemap ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-sitemap ul li a:hover {
    color: var(--color-accent);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--color-accent);
}

.footer-bottom {
    padding: 15px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Media Queries Dasar */
@media (max-width: 992px) {
    .navbar a {
        margin: 0 10px;
        font-size: 0.9rem;
    }
    .footer-layout {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col {
        flex-basis: 100%;
    }
}

/* ======================= CSS KHUSUS INDEX.HTML ======================= */

.hero-section {
    background-color: var(--color-primary); 
    color: var(--color-text-light);
    padding: 130px 0; 
    text-align: center;
    min-height: 500px; 
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
    color: var(--color-text-light); 
    font-weight: 800;
}

.tagline {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.subtext {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto 50px auto; 
    opacity: 0.9;
}

.banner-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.banner-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.full-width-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
}

/* NEW: Sample Product Section Styling */
.sample-product-section {
    background-color: var(--color-background-light);
}

.product-grid {
    display: grid;
    /* Membuat 5 kolom dengan lebar yang sama */
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px; /* Jarak antar gambar */
}

.product-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: scale(1.03);
}

.product-img {
    width: 100%;
    /* Tinggi relatif agar gambar terlihat seragam */
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    display: block;
}
/* END NEW: Sample Product Section Styling */


.cooperation-text-container {
    padding-top: 40px;
}

.cooperation-title {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.secondary-banner-section {
    padding-top: 0; 
    padding-bottom: 40px;
}

.cta-service-home {
    background-color: var(--color-background-light);
    padding: 80px 0;
    text-align: center;
}

/* Media Query Khusus Index */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .subtext {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    /* Responsive untuk 5 produk, diubah menjadi 2 kolom di layar kecil */
    .product-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .product-item:last-child {
        /* Untuk item kelima, buat dia menjadi satu kolom penuh di baris terakhir */
        grid-column: span 2;
        max-width: 50%; /* Batasi lebar */
        margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 kolom di layar yang sangat kecil */
    }
    .product-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* ======================= CSS DASAR (SHARED) ... (TETAP SAMA) ======================= */
/* ... (Bagian CSS Dasar) ... */
/* ... (Bagian Header, Footer, dll.) ... */


/* ======================= CSS KHUSUS INDEX.HTML ======================= */

/* ... (Kode Hero, Banner, Product Grid yang sudah ada) ... */

/* NEW: Testimonial Section Styling */

.testimonial-section {
    background-color: var(--color-background-light);
    overflow: hidden; /* Penting untuk menyembunyikan kartu yang tidak terlihat */
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
}

.testimonial-track {
    display: flex;
    /* Jumlah kartu dikalikan 100% (3 kartu = 300%) */
    width: 300%; 
    animation: testimonial-slide 15s infinite ease-in-out; 
    /* 15s total: 5s di setiap kartu, transisi 0s */
}

.testimonial-card {
    width: calc(100% / 3); /* Lebar setiap kartu (100% / jumlah kartu) */
    padding: 30px;
    background-color: var(--color-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0 15px; /* Memberikan sedikit jarak antar kartu */
    box-sizing: border-box;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    min-height: 100px; /* Memastikan tinggi konsisten */
    display: flex;
    align-items: center;
}

.client-info {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
}

.client-info i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--color-accent);
}

.client-name {
    font-size: 1rem;
}

/* Animasi Otomatis */
@keyframes testimonial-slide {
    0% { transform: translateX(0%); }              /* Kartu 1 (Diam) */
    25% { transform: translateX(0%); }             /* Kartu 1 (Selesai Diam) */
    33% { transform: translateX(-33.3333%); }      /* Transisi ke Kartu 2 */
    58% { transform: translateX(-33.3333%); }      /* Kartu 2 (Diam) */
    66% { transform: translateX(-66.6666%); }      /* Transisi ke Kartu 3 */
    91% { transform: translateX(-66.6666%); }      /* Kartu 3 (Diam) */
    100% { transform: translateX(0%); }            /* Transisi kembali ke Kartu 1 */
}

/* Media Query Khusus Index */
@media (max-width: 768px) {
    /* ... (Kode Product Grid responsive yang sudah ada) ... */
    
    /* Responsive Testimonial */
    .testimonial-track {
        width: 300%; 
        animation: none; /* Matikan animasi carousel di layar kecil */
        flex-direction: column; /* Tumpuk kartu */
        gap: 30px;
        transform: none !important;
    }
    .testimonial-card {
        width: 100%;
        margin: 0;
    }
    .testimonial-carousel {
        padding: 0;
    }
    .testimonial-card .quote {
        min-height: auto;
    }
}/* --- CSS untuk Bagian Logo Partner Berjalan (index.css) --- */

/* Keyframes untuk animasi pergerakan logo */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-255px * 9 - 3 * 255px)); } /* 9 logo asli + 3 duplikat * lebar logo */
}

.logo-partner-section {
    padding: 20px 0;
    background-color: #f7f7f7; /* Warna latar belakang ringan untuk menonjolkan logo */
}

.cooperation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partner-carousel-wrap {
    overflow: hidden; /* Sembunyikan bagian yang keluar dari frame */
    white-space: nowrap;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 10px 0;
}

.partner-logos-track {
    display: flex;
    animation: scroll 40s linear infinite; /* Kecepatan scroll (40s), lurus, tanpa batas */
    will-change: transform;
}

.partner-logo {
    height: 60px; /* Tinggi standar untuk logo */
    width: 250px; /* Lebar standar untuk setiap logo */
    object-fit: contain; /* Memastikan logo terlihat utuh */
    margin: 0 40px; /* Jarak antar logo */
    filter: grayscale(100%); /* Efek grayscale */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%); /* Warna muncul saat dihover */
    opacity: 1;
}

/* Penyesuaian Responsif (Opsional, tapi direkomendasikan) */
@media (max-width: 768px) {
    .partner-logo {
        height: 40px;
        width: 150px;
        margin: 0 20px;
    }
    
    /* Sesuaikan keyframes scroll jika lebar logo berubah */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 9 - 3 * 150px)); } 
    }
}/* --- CSS untuk Bagian Logo Partner Berjalan (index.css) --- */

/* TINGGI LOGO BARU: 70px, LEBAR LOGO BARU: 280px, MARGIN: 45px */
/* Keyframes untuk animasi pergerakan logo */
@keyframes scroll {
    /* 9 logo asli + 3 duplikat * lebar logo (280px) */
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 9 - 3 * 280px)); } 
}

.logo-partner-section {
    padding: 20px 0;
    background-color: #f7f7f7; 
}

.cooperation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partner-carousel-wrap {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 10px 0;
}

.partner-logos-track {
    display: flex;
    animation: scroll 40s linear infinite; /* Kecepatan scroll (40s), lurus, tanpa batas */
    will-change: transform;
}

.partner-logo {
    /* NILAI BARU */
    height: 70px; /* Diperbesar dari 60px */
    width: 280px; /* Diperbesar dari 250px */
    
    object-fit: contain;
    margin: 0 45px; /* Jarak antar logo (sedikit disesuaikan) */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Penyesuaian Responsif (Opsional, tapi direkomendasikan) */
@media (max-width: 768px) {
    .partner-logo {
        height: 50px; /* Sedikit diperbesar juga untuk mobile */
        width: 180px;
        margin: 0 25px;
    }
    
    /* Sesuaikan keyframes scroll untuk mobile */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 9 - 3 * 180px)); } 
    }
}