.slider {
    position: relative;
    height: 88.5vh;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 88.5vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Overlay dengan opacity */
    z-index: 1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; /* Pastikan teks berada di atas overlay */
}

/* Efek keren untuk h1 */
.content h1 {
    font-size: 3.7em;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(45deg, #ff6f61, #f8ff61);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite, fadeIn 1.5s ease-in-out;
    position: relative;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: rotateX(0deg) rotateY(0deg);
    perspective: 500px;
}

/* Efek Sparkling */
.content h1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.8) 10%,
        transparent 50%
    );
    opacity: 0.7;
    filter: blur(10px);
    animation: sparkle 2s infinite ease-in-out;
}

/* Animasi Gradient Bergerak */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animasi Sparkling */
@keyframes sparkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Animasi Fade In */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efek untuk p */
.content p {
    padding-bottom: 20px;
    font-size: 1.4em;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 255, 255, 0.2);
    animation: fadeIn 2s ease-in-out;
}

.btn-banner {
    background: linear-gradient(45deg, #ff6f61, #f8ff61);
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    font-size: 28px;
    border-top-right-radius: 110px;
    border-bottom-left-radius: 110px;
    transition: all 1s;
    &:after,
    &:before {
        content: " ";
        width: 10px;
        height: 10px;
        position: absolute;
        border: 0px solid #fff;
        transition: all 1s;
    }
    /* &:after {
        top: -1px;
        left: -1px;
        border-top: 2px solid #ffffff;
        border-left: 2px solid #ffffff;
    }
    &:before {
        bottom: -1px;
        right: -1px;
        border-bottom: 2px solid #ffffff;
        border-right: 2px solid #ffffff;
    } */
    &:hover {
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
        /* background:rgba(0,0,0,.5);
        color:white; */
        &:before,
        &:after {
            width: 100%;
            height: 100%;
            /* border-color:white;*/
        }
    }
}

.content a {
    color: #222222;
    font-size: 15px;
    animation: fadeIn 3s ease-in-out;
    text-decoration: none;
}

.btn-banner:hover:hover {
    background: linear-gradient(45deg, #f8ff61, #ff6f61);
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dot:hover,
.nav-dot.active {
    background-color: white;
}

@media (max-width: 768px) {
    /* Gaya khusus untuk layar kecil seperti ponsel */
    .content h1 {
        font-size: 2rem; /* Ukuran lebih kecil */
    }

    .content p {
        font-size: 1rem; /* Ukuran lebih kecil */
        padding-bottom: 0px;
    }

    .content a {
        font-size: 13px;
    }

    .content {
        min-width: 325px;
        top: 48%;
    }
}

@media (max-width: 480px) {
    /* Gaya lebih spesifik untuk layar yang sangat kecil */
    .content h1 {
        font-size: 1.5rem; /* Ukuran lebih kecil */
    }

    .content p {
        font-size: 0.7rem; /* Ukuran lebih kecil */
        padding-bottom: 0px;
    }

    .content a {
        font-size: 0.7rem;
    }

    .slider {
        height: 640px;
    }

    .slide {
        height: 640px;
    }

    .content {
        min-width: 275px;
    }
}

/*halaman tentang kami------------*/
.about-company {
    background: linear-gradient(to top, #2c3e50, #141414);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0px;
}

.about-wrapper {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 2s ease-in-out;
}

.about-icon i {
    font-size: 5rem;
    color: #ffa600;
    animation: pulse 2s infinite;
}

.about-title {
    font-size: 2.5rem;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: textGlow 3s infinite;
    color: #ffffff;
}

.about-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-top: 30px;
    line-height: 1.6;
    color: white;
    text-align: justify;
    text-indent: 25px;
    padding: 0px;
}

@keyframes textGlow {
    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 1);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Jarak antar kartu */
    padding: 10px 0;
}

.service-card {
    width: 280px;
    background: rgba(0, 0, 0, 0.5);
    border: #f8ff61;
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    animation: zoomIn 0.8s ease-in-out;
    backdrop-filter: blur(5px);
}

.services-section {
    background: linear-gradient(to top, #141414, #2c3e50);
    color: white;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
    width: 95vw;
}

.services-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffa600;
    animation: iconPulse 1.5s infinite ease-in-out;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Animasi */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    .about-description {
        font-size: 1rem;
        padding: 35px;
        padding-top: 0%;
    }
    .about-icon i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    /* Gaya lebih spesifik untuk layar yang sangat kecil */
    .about-title {
        font-size: 1.5rem;
    }
    .about-description {
        font-size: 0.7rem;
        padding: 35px;
        padding-top: 0%;
    }
    .about-icon i {
        font-size: 3rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.7rem;
    }
}

/* css halaman story*/
.story-and-experience {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 60px;
    padding-top: 0px;
    background: linear-gradient(to top, #141414, #2c3e50);
    color: white;
}

.left-content,
.right-content {
    flex: 1;
    padding: 20px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: zoomIn 2s ease-in-out;
}

.left-content {
    text-align: center;
}

.left-content .story-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffa600;
}

.left-content .story-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 25px;
}

.left-content .story-btn {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    background: linear-gradient(45deg, #ffa600, #ff6f61);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.left-content .story-btn:hover {
    background: linear-gradient(45deg, #ff6f61, #ffa600);
    transform: translateY(-5px);
}

.right-content .experience-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffa600;
}

.experience-item {
    margin-bottom: 20px;
}

.experience-subtitle {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.progress-bar {
    position: relative;
    height: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #ffa600, #ff6f61);
    position: relative;
    border-radius: 5px;
    animation: progressAnim 2s ease-out;
    transition: width 0.5s ease-in-out;
}

.data-target-text {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: white;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out, moveIn 2s ease-out;
    opacity: 0;
}

.progress:hover .data-target-text {
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

.progress-percent {
    position: absolute;
    right: 10px;
    top: -25px;
    font-size: 0.9rem;
    color: white;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
}

@media (max-width: 768px) {
    .story-and-experience {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Gaya lebih spesifik untuk layar yang sangat kecil */
    .left-content .story-title {
        font-size: 1.8rem;
    }

    .left-content .story-subtitle {
        font-size: 0.8rem;
    }

    .left-content .story-btn {
        font-size: 0.8rem;
    }

    .right-content .experience-title {
        font-size: 1.8rem;
    }

    .right-content .experience-subtitle {
        font-size: 0.8rem;
    }
}

/* Animasi untuk teks */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes moveIn {
    from {
        transform: translateY(-50%) translateX(20px);
    }
    to {
        transform: translateY(-50%) translateX(0);
    }
}

/* Animasi progres bar */
@keyframes progressAnim {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/*bagian fakta tentang kami*/
.image-slider-facts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide-facts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimationfacts 15s infinite;
}

.slide-facts:nth-child(1) {
    animation-delay: 0s;
}

.slide-facts:nth-child(2) {
    animation-delay: 5s;
}

.slide-facts:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideAnimationfacts {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.facts-and-achievements {
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.facts-and-achievements::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.781); /* Overlay */
    z-index: 1;
}

.facts-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    animation: fadeInDown 2s ease-in-out;
}

.facts-title {
    font-size: 2.1rem;
    color: #ffa600;
    letter-spacing: 1.5px;
}

.facts-subtitle {
    font-size: 1.2rem;
    color: #fff;
}

.facts-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.fact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    animation: zoomIn 1s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.fact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.555);
}

.fact-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffa600, #ff6f61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
}

.fact-number::after {
    content: "+";
    font-size: 1.5rem;
    vertical-align: super;
}

.fact-item p {
    color: white;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    /* Gaya lebih spesifik untuk layar yang sangat kecil */
    .facts-header .facts-title {
        font-size: 1.1rem;
    }

    .facts-header .facts-subtitle {
        font-size: 1rem;
    }

    .facts-items p {
        font-size: 1rem;
    }
}

/* halaman kruuuuuuu */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.2);
    filter: brightness(0.7);
}

.image-container .social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .social-icons {
    opacity: 1;
}

.image-container .social-icons a {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    border-radius: 50%;
    padding: 10px;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.image-container .social-icons a:hover {
    background: #ffa600;
    color: #fff;
    transform: scale(1.1);
}

.meet-the-team-section {
    background: #01080f;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.meet-the-team-section .title h1 {
    font-size: 2.5rem;
    color: #ffa600;
    margin-bottom: 10px;
    animation: fadeInDown 1.5s ease;
}

.meet-the-team-section .title p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Tambahkan jarak antar kartu */
    padding: 20px;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    transition: transform 0.5s ease, box-shadow 0.5s ease,
        background-color 0.5s ease;
    text-align: center;
    backdrop-filter: blur(5px);
    animation: zoomIn 0.8s ease-in-out;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background-color: rgba(
        255,
        255,
        255,
        0.15
    ); /* Warna sedikit berbeda untuk efek hover */
}

.team-card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 1.3rem;
    color: #ffa600;
    margin-bottom: 5px;
    transition: transform 0.5s ease, color 0.5s ease;
}

.team-card p {
    font-size: 1rem;
    color: white;
    margin-bottom: 10px;
    transition: transform 0.5s ease, color 0.5s ease;
}

.team-card:hover h3 {
    color: white;
}

.team-card:hover p {
    opacity: 0.9;
}

.team-card .description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: none;
}

.team-card:hover .description {
    display: block;
}

@media (max-width: 480px) {
    /* Gaya lebih spesifik untuk layar yang sangat kecil */
    .container .title h1 {
        font-size: 2rem;
    }

    .container .title p {
        font-size: 1rem;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 90%; /* Lebar kartu disesuaikan */
    }

    .team-card h3 {
        font-size: 1.2rem; /* Ukuran teks lebih kecil */
    }

    .team-card p {
        font-size: 0.9rem;
    }
}

/*sound*/
.audio-controls {
    position: absolute;
    bottom: 10px; /* Jarak dari bawah */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    /* background: rgb(255, 255, 255); */
    border-radius: 20px;
    backdrop-filter: blur(5px); /* Efek blur */
    z-index: 3; /* Pastikan elemen ini tidak menutupi konten utama */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.audio-controls button,
.audio-controls input[type="range"] {
    background: none;
    border: none;
    color: #ffffff27;
    font-size: 1.5rem; /* Ukuran ikon */
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.audio-controls button:hover {
    color: #ffa600; /* Warna ikon saat hover */
}

.audio-controls input[type="range"] {
    width: 100px;
    background: none;
}

/*kata kata biajk*/
.scroll-animated-section {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.scroll-title {
    text-transform: uppercase;
    opacity: 0;
    position: relative;
    animation-fill-mode: forwards;
    font-size: 2rem; /* Ukuran teks */
    color: #2c3e50; /* Warna teks gelap */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8),
        /* Bayangan luar terang */ 0px 0px 10px rgba(255, 255, 255, 0.5); /* Efek cahaya lembut */
}

.scroll-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    opacity: 0;
    position: relative;
    animation-fill-mode: forwards;
    color: #ffffffd8;
}

/* Animasi teks berjalan naik */
.scroll-title {
    animation: scrollTextUp 5s linear forwards;
}

.scroll-subtitle {
    animation: scrollTextUp 6s linear forwards;
}

/* Keyframes untuk teks bergerak naik */
@keyframes scrollTextUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    90% {
        transform: translateY(-10%);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* iklannnnn muncul beberapa detik */
.promo-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 200px;
    background: linear-gradient(45deg, #ff6f61, #f8ff61);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    cursor: grab;
    animation: fadeIn 0.8s ease-in-out;
}

.promo-banner:active {
    cursor: grabbing;
}

.promo-content {
    position: relative;
    padding: 15px;
    text-align: center;
    color: #ffffff;
}

.hidden {
    display: none;
}

.promo-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.promo-text h2 {
    font-size: 1rem;
    margin: 5px 0;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-text p {
    font-size: 0.8rem;
    margin: 3px 0;
}

.promo-btn {
    display: inline-block;
    padding: 8px 15px;
    font-size: 0.8rem;
    color: #000;
    background: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.promo-btn:hover {
    background: #000000c4;
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsif untuk layar lebih kecil */
@media (max-width: 768px) {
    .promo-banner {
        width: 90%;
    }

    .promo-text h2 {
        font-size: 0.9rem;
    }

    .promo-text p {
        font-size: 0.7rem;
    }

    .promo-btn {
        font-size: 0.7rem;
    }
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
    /* Gaya khusus untuk layar kecil seperti ponsel */
    .scroll-title {
        font-size: 1rem; /* Ukuran lebih kecil */
    }

    .scroll-subtitle {
        font-size: 0.4rem; /* Ukuran lebih kecil */
    }

    .content-overlay {
        padding: 5px; /* Sesuaikan padding */
    }

    .audio-controls {
        gap: 10px;
        padding: 8px 10px;
        bottom: 5px; /* Jarak lebih kecil untuk layar kecil */
    }

    .audio-controls input[type="range"] {
        width: 80px;
    }
}

/* produkk spill */
.containerspill h1 {
    margin: 10px 0;
    color: floralwhite;
}

.containerspill h2 {
    margin: 10px 0;
    color: floralwhite;
    margin-bottom: 50px;
    font-size: 20px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-bottom: 20px;
}

/* Gaya dasar tombol */
.filter-btn-prd {
    padding: 10px 20px;
    border: none;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
    min-width: 120px;
    text-align: center;
    background-color: #3a3a3a; /* Warna default biru */
}

/* Gaya hover tombol */
.filter-btn-prd:hover {
    opacity: 0.8;
}

/* Gaya untuk pembungkus tombol */
.button-wrapper {
    position: relative;
    display: inline-block;
    margin: 10px;
}

/* Gaya untuk angka total produk */
.product-count {
    position: absolute;
    top: -25px; /* Lokasi awal di atas tombol */
    left: 50%; /* Pusatkan secara horizontal */
    transform: translateX(-50%);
    background: #ffac40;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    opacity: 0; /* Tidak terlihat secara default */
    transition: top 0.3s ease, opacity 0.3s ease; /* Transisi untuk kemunculan */
}

/* Tampilkan angka saat hover tombol */
.button-wrapper:hover .product-count {
    top: -40px; /* Geser lebih tinggi saat hover */
    opacity: 1; /* Angka terlihat */
}

/* Gaya aktif tombol ketika diklik */
.filter-btn-prd.clicked {
    background: linear-gradient(
        45deg,
        #ffa600,
        #ff6f61
    ); /* Merah ketika tombol diklik */
}

/* Gaya untuk container dan produk */
.containerspill {
    max-width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #2c3e50, #141414);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    text-align: center;
    margin: 0 auto; /* Centang konten */
}

.product-display {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    min-height: 200px;
}

.product-item {
    width: 250px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-out,
        box-shadow 1s ease-in-out;
}

.product-item.show {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
}

.product-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.6; /* Kurangi opacity agar gambar lebih terlihat */
    transform: scale(1.5);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.product-item.show::before {
    opacity: 0.2; /* Mengurangi opacity supaya tidak terlalu terang */
    transform: scale(1);
}

.product-item:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.see-more-btn {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    background: linear-gradient(45deg, #ffa600, #ff6f61);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-bottom: 20px;
}

.see-more-btn:hover {
    background: linear-gradient(45deg, #ff6f61, #ffa600);
    transform: translateY(-5px);
}

/* link dan zoom produk */
.product-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image {
    transform: scale(1.1);
}

.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.zoom-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.zoom-icon i {
    font-size: 1.2rem;
}

/* Media Query untuk tampilan tablet dan ponsel */
@media (max-width: 768px) {
    /* Container */
    .containerspill {
        max-width: 95%;
        padding: 15px;
        max-width: 100%;
        border-radius: 0px;
    }

    .containerspill h1 {
        font-size: 25px;
    }

    .containerspill h2 {
        font-size: 15px;
        margin: 30px;
    }

    .button-group {
        flex-wrap: wrap; /* Atur tombol dalam beberapa baris jika tidak cukup ruang */
        gap: 10px;
    }

    /* Tombol filter dan jumlah produk */
    .button-wrapper {
        display: block;
        margin: 5px 0;
        text-align: center;
    }

    .filter-btn-prd {
        width: 100%; /* Membuat tombol lebar penuh */
        font-size: 16px;
        padding: 12px;
    }

    .product-display {
        gap: 0px;
    }

    .product-count {
        font-size: 12px;
        padding: 4px 8px;
    }

    .product-item {
        width: 175px;
        height: 175px;
        margin: 10px;
        border-radius: 0px;
    }

    .see-more-btn {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .containerspill {
        max-width: 95%;
        padding: 10px;
        max-width: 100%;
        border-radius: 0px;
    }

    .button-group {
        flex-wrap: wrap; /* Atur tombol dalam beberapa baris jika tidak cukup ruang */
        gap: 10px;
    }

    .product-display {
        gap: 0px;
    }

    /* Tombol filter dan jumlah produk */
    .filter-btn-prd {
        width: 100%; /* Membuat tombol lebar penuh */
        font-size: 14px;
        padding: 10px;
    }

    .product-count {
        font-size: 10px;
        padding: 4px 8px;
    }
    .product-item {
        width: 150px;
        height: 150px;
        margin: 7px;
        border-radius: 0px;
    }

    .see-more-btn {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #ff8330; /* Warna biru cerah */
    padding: 3px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: bold;
}
.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    color: #fff;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .client-section h1 {
        font-size: 1.8rem;
    }

    .client-section h2 {
        font-size: 1rem;
    }

    .logo {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .client-section h1 {
        font-size: 1.5rem;
    }

    .client-section h2 {
        font-size: 0.9rem;
    }

    .logo {
        width: 90px;
    }
}


/* BAGIAN TESTIMONI YAAAAAAAAAAAAA */
.testimoni {
    background: linear-gradient(to top, #2c3e50, #141414);
    /* background: #2c3e50; */
    padding: 5px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.testimoni .text-testimoni h1 {
    color: #ffffff;
    padding-bottom: 25px;
    font-size: 30px;
}

.next-text {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.next-text .button {
    background-color: #ff8d58;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.testi-slider {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.testi-slider .card-testi {
    display: none; /* Hide all cards initially */
    width: 100%;
    max-width: 800px; /* Optional: limit the width of the testimonial */
    height: 400px;
    background: linear-gradient(135deg, #ffffff, #e3e3e3);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;


}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.card-testi:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-testi p {
    margin: 20px 0 40px 0;
    padding: 0 60px;
    text-align: justify;
}

/* Style untuk bintang */
.star-testi i {
    color: #ffc107;
    opacity: 0; /* Bintang tidak terlihat di awal */
    transform: scale(0); /* Ukuran bintang diatur jadi 0 */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Animasi opacity dan transform */
    font-size: 40px;
    margin-top: 80px;
}

/* Aktifkan animasi saat bintang terlihat */
.star-testi.animate i {
    opacity: 1;
    transform: scale(1); /* Membuat bintang muncul dengan ukuran normal */
}

.star-testi.animate i:nth-child(1) {
    transition-delay: 0.1s;
}
.star-testi.animate i:nth-child(2) {
    transition-delay: 0.2s;
}
.star-testi.animate i:nth-child(3) {
    transition-delay: 0.3s;
}
.star-testi.animate i:nth-child(4) {
    transition-delay: 0.4s;
}
.star-testi.animate i:nth-child(5) {
    transition-delay: 0.5s;
}

.card-testi.active {
    display: block; /* Only show the active card */
    margin: 40px 0;
    padding: 0 0px;
}

.profil-testi {
    display: flex;
    align-items: center;
    text-align: left;
    margin-top: 15px;
    justify-content: center;
}

.profil-testi img {
    border-radius: 50%;
}

.profil-testi img:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


.profil {
    margin-left: 10px;
}

.profil h3 {
    margin: 0;
    font-size: 16px;
}

.profil small {
    color: #777;
}

@media (max-width: 768px) {
    .testi-slider .card-testi {
        max-width: 350px;
        font-size: 16px;
        height: 310px;
    }

    .testimoni .text-testimoni h1 {
        font-size: 20px;
        padding-bottom: 20px;
    }

    .card-testi p {
        font-size: 0.8rem;
    }

    .star-testi i {
        font-size: 20px;
        margin-top: 30px;
    }

    .marquee-container {
        font-size: 12px;
    }
}
