/* General reset for padding and margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.6;
    background-color: #0d0d0d;
    color: #eee;
    overflow-x: hidden;
}


/* For smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* =========================
   SEO CONTENT SECTION (HIDDEN BUT SEO SAFE)
========================= */
.seo-content {
  position: relative;
  height: 1px;              /* hampir nol */
  overflow: hidden;         /* konten tidak muncul */
  opacity: 0.01;            /* masih ada di DOM */
  pointer-events: none;     /* tidak bisa diklik */
}

/* Container tetap ada untuk crawler */
.seo-content .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading utama SEO */
.seo-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

/* Sub heading */
.seo-content h3 {
  font-size: 24px;
  color: #f2f2f2;
}

/* Paragraf SEO */
.seo-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
}

/* List layanan */
.seo-content ul {
  padding-left: 20px;
}

.seo-content ul li {
  line-height: 1.6;
  color: #dddddd;
}

/* Mobile tetap aman */
@media (max-width: 768px) {
  .seo-content {
    height: 1px;
  }
}





/* ... Kode CSS lainnya ... */

/* Header */
.header {
    position: fixed; /* Agar header selalu di atas */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100; /* Pastikan header di atas elemen lain */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Transisi untuk background dan box-shadow */
}

/* Navbar */
.navbar {
    padding-top: 1rem; /* Padding atas */
    padding-bottom: 1rem; /* Padding bawah */
    background-color: transparent; /* Background transparan sebelum sticky */
}

/* Navbar saat sticky */
.header.sticky .navbar {
    background-color: #0d0d0d; /* Background gelap saat sticky */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); /* Efek shadow saat sticky */
    padding-top: 0.5rem; /* Padding atas berkurang saat sticky */
    padding-bottom: 0.5rem; /* Padding bawah berkurang saat sticky */
}

/* Logo */
.navbar-brand img {
    height: 20px; /* Ukuran logo */
    transition: transform 0.3s ease-in-out; /* Efek scaling saat hover */
    animation: pulse 2s infinite alternate; /* Animasi pulse */
}

.navbar-brand:hover img {
    transform: scale(1.1); /* Perbesar logo saat hover */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Navbar Links */
.navbar-dark .navbar-nav .nav-link {
    font-weight: 600;
    color: #fff; /* Warna teks putih */
    margin-left: 25px; /* Jarak antar link */
    position: relative; /* Untuk animasi underline */
    padding-bottom: 5px; /* Padding bawah */
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
}

/* Underline Effect */
.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #850d0d, #ff0000); /* Gradient underline */
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%; /* Underline muncul saat hover */
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #850d0d; /* Warna saat hover */
    animation: flicker 1.5s infinite alternate; /* Efek flicker saat hover */
}

/* Animasi Text Shadow Flicker */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 4px #fff,
            0 0 10px #fff,
            0 0 15px #fff,
            0 0 20px #ff0000,
            0 0 35px #ff0000,
            0 0 40px #ff0000,
            0 0 50px #ff0000,
            0 0 75px #ff0000;
    }

    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Active Link */
.navbar-dark .navbar-nav .nav-link.active {
    color: #850d0d; /* Warna link aktif */
}

.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%; /* Underline aktif */
}

/* Navbar Toggler */
.navbar-toggler {
    border: none; /* Hilangkan border */
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none; /* Hilangkan box-shadow */
}

/* Dropdown Menu */
.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-menu {
    background-color: #0d0d0d; /* Background gelap */
    border: none; /* Hapus border */
    border-radius: 10px;
    padding: 0; /* Hapus padding default */
    margin-top: 0px; /* Hapus margin-top */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(136, 2, 2, 0.5); /* Efek shadow dan glow */
    animation: dropdownAnimation 0.3s ease forwards; /* Animasi kemunculan dropdown */
    transform-origin: top; /* Transformasi dimulai dari atas */

}

/* Animasi Dropdown */
@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(-20px); /* Mulai dari atas */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Muncul ke posisi normal */
    }
}

/* Tampilkan Dropdown */
.navbar-dark .navbar-nav .nav-item.dropdown.show .dropdown-menu {
    display: block;
}

/* Style untuk Dropdown Item */
.navbar-dark .navbar-nav .dropdown-item {
    color: #eee;
    padding: 10px 20px; /* Padding item */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease; /* Transisi untuk hover */
    font-weight: 500;
}

.navbar-dark .navbar-nav .dropdown-item:hover {
    background-color: rgba(136, 2, 2, 0.5);
    color: #fff;
    text-shadow: 0 0 5px #ff0000;
    transform: translateX(5px);
}

.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-toggle.active,
.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-item.active {
    background-color: transparent;
    color: #850d0d;
}

/* Menghilangkan panah bawaan Bootstrap */
.dropdown-toggle::after {
    display: none;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh; /* Tinggi penuh viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Sembunyikan elemen yang keluar */
    color: #fff;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pastikan video menyesuaikan layar */
    z-index: -1; /* Letakkan di belakang konten */
}

.hero-content {
    position: relative; /* Pastikan konten tetap di atas video */
    z-index: 1; /* Letakkan di atas video */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease-out;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-out;
}

.cta-btn {
    padding: 12px 30px;
    background-color: #ffcc00;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    animation: fadeIn 2.5s ease-out;
}

.cta-btn:hover {
    background-color: #cc9900;
    transform: translateY(-5px);
}

.hero-image {
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column; /* Susun elemen secara vertikal */
        align-items: center; /* Pusatkan elemen */
        text-align: center; /* Pusatkan teks */
    }

    .hero-text {
        max-width: 100%; /* Teks memenuhi lebar */
        margin-bottom: 20px; /* Jarak antar elemen */
    }

    .hero-text h1 {
        font-size: 36px; /* Ukuran font lebih kecil */
    }

    .hero-text p {
        font-size: 16px; /* Ukuran deskripsi lebih kecil */
    }

    .cta-btn {
        font-size: 16px; /* Sesuaikan ukuran tombol */
        padding: 10px 20px;
    }

    .hero-image {
        max-width: 80%; /* Gambar lebih kecil untuk layar kecil */
        margin-top: 20px; /* Tambahkan jarak atas */
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px; /* Font lebih kecil untuk layar ekstra kecil */
    }

    .hero-text p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #0d0d0d;
    color: #eee;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.why-choose-us .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    perspective: 1000px;
    position: relative;
    height: 300px; /* Sesuaikan tinggi kartu */
    cursor: pointer;
}

.reason-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Efek flip */
.reason-card.flipped .reason-card-inner {
    transform: rotateY(180deg);
}

.reason-front,
.reason-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reason-front {
    background-color: rgba(136, 2, 2, 0.2);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #850d0d, #5865F2) 1;
    z-index: 2;
}

.reason-back {
    background-color: rgba(0, 0, 0, 0.7);
    transform: rotateY(180deg);
    color: #fff;
    z-index: 1; /* Pastikan reason-back ada di belakang reason-front */
    justify-content: space-between;
}

.reason-icon {
    font-size: 2.5rem;
    color: #850d0d;
    margin-bottom: 15px;
}

.reason-title {
    font-size: 1.4rem; /* Perbesar sedikit ukuran font */
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.reason-description {
    font-size: 1rem; /* Perbesar sedikit ukuran font */
    color: #ddd;
    line-height: 1.6;
    text-align: center;
    margin: 0; /* Hapus margin default */
}

.reason-card:hover {
    box-shadow: 0 6px 20px rgba(136, 2, 2, 0.5);
    border-image: linear-gradient(to left, #ff0000, #7289da) 1;
}

/* About Us Section */
.about {
    padding: 100px 0;
    background-color: #0d0d0d;
    color: #eee;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1800px;
    margin: auto;
    padding: 50px;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    margin-bottom: 20px;
    font-size: 3rem;
    text-transform: uppercase;
}

.about-tagline {
    font-size: 1.2rem;
    color: #850d0d;
    font-weight: bold;
}

.about-content {
    text-align: center;
    margin-bottom: 40px;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

/* About Team Section */
.about-team {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Team Member */
.team-member {
    perspective: 1000px;
    position: relative;
    width: 350px;
    height: 450px;
}

.member-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.8s, box-shadow 0.8s;
    transform-style: preserve-3d;
}

.team-member:hover .member-card {
    transform: rotateY(180deg);
}

.member-front,
.member-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.member-front {
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.05);
}

.member-back {
    transform: rotateY(180deg);
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.team-member:hover .member-image img {
    filter: grayscale(0%);
}

.member-info {
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.member-role {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.member-social a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    line-height: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.member-social a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #850d0d;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.member-social a:hover:before {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

.member-social a:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

.member-social a[title="Infinity"]:before {
    background: linear-gradient(45deg, #ff6b6b, #f06595);
}

.member-social a[title="Twitter"]:before {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd8);
}

.member-social a[title="Instagram"]:before {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
}

.member-quote {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.member-quote:before {
    content: '“';
    font-size: 2rem;
    color: #850d0d;
    position: absolute;
    left: 20px;
    top: -5px;
}

.member-quote:after {
    content: '”';
    font-size: 2rem;
    color: #850d0d;
    position: absolute;
    right: 20px;
    bottom: -10px;
}

.company-info {
    text-align: left;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #850d0d;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-content {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsif */
@media (max-width: 768px) {
    .about-team {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }

    .member-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }

    .member-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .member-image {
        width: 120px;
        height: 120px;
    }

    .member-name {
        font-size: 1.2rem;
    }

    .member-role {
        font-size: 0.9rem;
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: white;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 0 0 0);
}

.glitch:before {
    left: -2px;
    text-shadow: 2px 0 #ff6b6b;
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch:after {
    left: 2px;
    text-shadow: -2px 0 #00ffff;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(93px 0 13px 0);
        transform: skewX(0deg);
    }
    5% {
        clip-path: inset(93px 0 50px 0);
        transform: skewX(2deg);
    }
    10% {
        clip-path: inset(15px 0 63px 0);
        transform: skewX(0deg);
    }
    15% {
        clip-path: inset(59px 0 36px 0);
        transform: skewX(-2deg);
    }
    20% {
        clip-path: inset(46px 0 4px 0);
        transform: skewX(2deg);
    }
    25% {
        clip-path: inset(51px 0 43px 0);
        transform: skewX(1deg);
    }
    30% {
        clip-path: inset(87px 0 9px 0);
        transform: skewX(1deg);
    }
    35% {
        clip-path: inset(92px 0 98px 0);
        transform: skewX(1deg);
    }
    40% {
        clip-path: inset(71px 0 36px 0);
        transform: skewX(1deg);
    }
    45% {
        clip-path: inset(80px 0 48px 0);
        transform: skewX(1deg);
    }
    50% {
        clip-path: inset(28px 0 28px 0);
        transform: skewX(-2deg);
    }
    55% {
        clip-path: inset(61px 0 95px 0);
        transform: skewX(0deg);
    }
    60% {
        clip-path: inset(21px 0 6px 0);
        transform: skewX(1deg);
    }
    65% {
        clip-path: inset(87px 0 70px 0);
        transform: skewX(-1deg);
    }
    70% {
        clip-path: inset(83px 0 28px 0);
        transform: skewX(2deg);
    }
    75% {
        clip-path: inset(61px 0 49px 0);
        transform: skewX(-1deg);
    }
    /* Lanjutan kode CSS untuk glitch effect dan animasi lainnya */
    80% {
        clip-path: inset(96px 0 62px 0);
        transform: skewX(1deg);
    }
    85% {
        clip-path: inset(79px 0 99px 0);
        transform: skewX(0deg);
    }
    90% {
        clip-path: inset(47px 0 53px 0);
        transform: skewX(2deg);
    }
    95% {
        clip-path: inset(2px 0 55px 0);
        transform: skewX(-2deg);
    }
    100% {
        clip-path: inset(88px 0 11px 0);
        transform: skewX(-1deg);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(53px 0 98px 0);
        transform: skewX(1deg);
    }
    5% {
        clip-path: inset(32px 0 6px 0);
        transform: skewX(1deg);
    }
    10% {
        clip-path: inset(3px 0 46px 0);
        transform: skewX(-2deg);
    }
    15% {
        clip-path: inset(43px 0 25px 0);
        transform: skewX(0deg);
    }
    20% {
        clip-path: inset(63px 0 90px 0);
        transform: skewX(1deg);
    }
    25% {
        clip-path: inset(88px 0 77px 0);
        transform: skewX(1deg);
    }
    30% {
        clip-path: inset(4px 0 48px 0);
        transform: skewX(0deg);
    }
    35% {
        clip-path: inset(70px 0 80px 0);
        transform: skewX(0deg);
    }
    40% {
        clip-path: inset(64px 0 54px 0);
        transform: skewX(1deg);
    }
    45% {
        clip-path: inset(31px 0 53px 0);
        transform: skewX(2deg);
    }
    50% {
        clip-path: inset(28px 0 70px 0);
        transform: skewX(-2deg);
    }
    55% {
        clip-path: inset(93px 0 61px 0);
        transform: skewX(1deg);
    }
    60% {
        clip-path: inset(21px 0 8px 0);
        transform: skewX(-2deg);
    }
    65% {
        clip-path: inset(99px 0 97px 0);
        transform: skewX(0deg);
    }
    70% {
        clip-path: inset(63px 0 62px 0);
        transform: skewX(1deg);
    }
    75% {
        clip-path: inset(47px 0 58px 0);
        transform: skewX(0deg);
    }
    80% {
        clip-path: inset(93px 0 64px 0);
        transform: skewX(1deg);
    }
    85% {
        clip-path: inset(87px 0 64px 0);
        transform: skewX(0deg);
    }
    90% {
        clip-path: inset(50px 0 60px 0);
        transform: skewX(-1deg);
    }
    95% {
        clip-path: inset(68px 0 47px 0);
        transform: skewX(1deg);
    }
    100% {
        clip-path: inset(63px 0 2px 0);
        transform: skewX(-2deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skewX(0deg);
    }
    10% {
        transform: skewX(2deg);
    }
    20% {
        transform: skewX(-2deg);
    }
    30% {
        transform: skewX(1deg);
    }
    40% {
        transform: skewX(-1deg);
    }
    50% {
        transform: skewX(2deg);
    }
    60% {
        transform: skewX(-2deg);
    }
    70% {
        transform: skewX(0deg);
    }
    80% {
        transform: skewX(1deg);
    }
    90% {
        transform: skewX(-1deg);
    }
    100% {
        transform: skewX(0deg);
    }
}




/* ... (CSS untuk bagian lain) ... */

/* Services Section */
/* Services Section */
/* Services Section */
/* ... (Kode CSS untuk bagian lain, body, header, footer, dll.) ... */

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #0d0d0d;
    color: #eee;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efek Parallax (Opsional) */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your/background-image.jpg'); /* Ganti dengan gambar background Anda */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.services-container {
    max-width: 1400px;
    margin: auto;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}


.section-description {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Service Card */
.service-card {
    position: relative;
    height: auto;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5); /* Background gelap transparan */
    border: none;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Main shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10; /* Pastikan card di atas parallax */
}

/* Glassmorphism Effect */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    border-radius: 15px;
    filter: blur(10px); /* Efek blur untuk glassmorphism */
    opacity: 0.7;
}

/* Neon Border Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 0 10px 1px #850d0d, inset 0 0 10px 1px #850d0d; /* Efek glow */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::after {
    opacity: 1; /* Tampilkan glow saat hover */
}

/* Hover Effect */
.service-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(136, 2, 2, 0.7); /* Shadow lebih kuat */
}

.service-icon {
    font-size: 3rem;
    color: #850d0d;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 0.3s ease; /* Transisi untuk hover */
}

.service-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-50px);
    width: 70px;
    height: 70px;
    background-color: rgba(136, 2, 2, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animasi ikon saat hover */
.service-card:hover .service-icon {
    transform: scale(1.1); /* Perbesar ikon */
}

.service-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-50px);
    width: 80px;
    height: 80px;
    background-color: rgba(136, 2, 2, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    position: relative;
}

.service-title.glitch:before,
.service-title.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 0, 0, 0);
}

.service-title.glitch:before {
    left: -1px;
    text-shadow: 2px 0 #ff0000;
    /* Warna merah */
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.service-title.glitch:after {
    left: 1px;
    text-shadow: -2px 0 #00ffff;
    /* Warna cyan */
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

.service-features li {
    margin-bottom: 10px;
    color: #ddd;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #850d0d;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Efek hover pada kartu */
.service-card:hover {
    box-shadow: 0 15px 40px -5px rgba(136, 2, 2, 0.5);
}

/* Animasi ikon */
@keyframes icon-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsif */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .close-details {
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-features li {
        font-size: 0.75rem;
    }

    .close-details {
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

/* Animasi Glitch */
@keyframes glitch-anim-1 {
    0% {
        clip: rect(55px, 9999px, 56px, 0);
    }

    5% {
        clip: rect(37px, 9999px, 78px, 0);
    }

    10% {
        clip: rect(81px, 9999px, 73px, 0);
    }

    15% {
        clip: rect(64px, 9999px, 88px, 0);
    }

    20% {
        clip: rect(98px, 9999px, 68px, 0);
    }

    25% {
        clip: rect(30px, 9999px, 3px, 0);
    }

    30% {
        clip: rect(24px, 9999px, 83px, 0);
    }

    35% {
        clip: rect(24px, 9999px, 63px, 0);
    }

    40% {
        clip: rect(54px, 9999px, 87px, 0);
    }

    45% {
        clip: rect(98px, 9999px, 84px, 0);
    }

    50% {
        clip: rect(82px, 9999px, 76px, 0);
    }

    55% {
        clip: rect(44px, 9999px, 94px, 0);
    }

    60% {
        clip: rect(95px, 9999px, 72px, 0);
    }

    65% {
        clip: rect(80px, 9999px, 84px, 0);
    }

    70% {
        clip: rect(53px, 9999px, 45px, 0);
    }

    75% {
        clip: rect(81px, 9999px, 86px, 0);
    }

    80% {
        clip: rect(36px, 9999px, 34px, 0);
    }

    85% {
        clip: rect(70px, 9999px, 89px, 0);
    }

    90% {
        clip: rect(31px, 9999px, 93px, 0);
    }

    95% {
        clip: rect(87px, 9999px, 54px, 0);
    }

    100% {
        clip: rect(74px, 9999px, 77px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(34px, 9999px, 58px, 0);
    }

    5% {
        clip: rect(94px, 9999px, 69px, 0);
    }

    10% {
        clip: rect(28px, 9999px, 36px, 0);
    }

    15% {
        clip: rect(75px, 9999px, 67px, 0);
    }

    20% {
        clip: rect(65px, 9999px, 87px, 0);
    }

    25% {
        clip: rect(80px, 9999px, 85px, 0);
    }

    30% {
        clip: rect(32px, 9999px, 65px, 0);
    }

    35% {
        clip: rect(88px, 9999px, 66px, 0);
    }

    40% {
        clip: rect(56px, 9999px, 64px, 0);
    }

    45% {
        clip: rect(32px, 9999px, 32px, 0);
    }

    50% {
        clip: rect(33px, 9999px, 87px, 0);
    }

    55% {
        clip: rect(70px, 9999px, 99px, 0);
    }

    60% {
        clip: rect(78px, 9999px, 62px, 0);
    }

    65% {
        clip: rect(35px, 9999px, 71px, 0);
    }

    70% {
        clip: rect(37px, 9999px, 78px, 0);
    }

    75% {
        clip: rect(87px, 9999px, 94px, 0);
    }

    80% {
        clip: rect(79px, 9999px, 85px, 0);
    }

    85% {
        clip: rect(99px, 9999px, 96px, 0);
    }

    90% {
        clip: rect(41px, 9999px, 49px, 0);
    }

    95% {
        clip: rect(21px, 9999px, 88px, 0);
    }

    100% {
        clip: rect(64px, 9999px, 97px, 0);
    }
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* Efek 3D pada ikon */
.service-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-50px);
    width: 80px;
    height: 80px;
    background-color: rgba(136, 2, 2, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

/* Animasi ikon */
@keyframes icon-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

.service-features li {
    margin-bottom: 10px;
    color: #ddd;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #850d0d;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Responsif */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-features li {
        font-size: 0.75rem;
    }
}

/* Efek Glitch */
.service-title.glitch {
    position: relative;
    color: #fff;
    animation: glitch-anim 5s infinite;
}

.service-title.glitch:before,
.service-title.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 0, 0, 0);
}

.service-title.glitch:before {
    left: -1px;
    text-shadow: 1px 0 #ff0000;
    /* Warna merah */
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.service-title.glitch:after {
    left: 1px;
    text-shadow: -1px 0 #00ffff;
    /* Warna cyan */
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

/* Keyframes untuk animasi glitch */
@keyframes glitch-anim-1 {
    0% {
        clip: rect(55px, 9999px, 56px, 0);
    }

    5% {
        clip: rect(37px, 9999px, 78px, 0);
    }

    10% {
        clip: rect(81px, 9999px, 73px, 0);
    }

    15% {
        clip: rect(64px, 9999px, 88px, 0);
    }

    20% {
        clip: rect(98px, 9999px, 68px, 0);
    }

    25% {
        clip: rect(30px, 9999px, 3px, 0);
    }

    30% {
        clip: rect(24px, 9999px, 83px, 0);
    }

    35% {
        clip: rect(24px, 9999px, 63px, 0);
    }

    40% {
        clip: rect(54px, 9999px, 87px, 0);
    }

    45% {
        clip: rect(98px, 9999px, 84px, 0);
    }

    50% {
        clip: rect(82px, 9999px, 76px, 0);
    }

    55% {
        clip: rect(44px, 9999px, 94px, 0);
    }

    60% {
        clip: rect(95px, 9999px, 72px, 0);
    }

    65% {
        clip: rect(80px, 9999px, 84px, 0);
    }

    70% {
        clip: rect(53px, 9999px, 45px, 0);
    }

    75% {
        clip: rect(81px, 9999px, 86px, 0);
    }

    80% {
        clip: rect(36px, 9999px, 34px, 0);
    }

    85% {
        clip: rect(70px, 9999px, 89px, 0);
    }

    90% {
        clip: rect(31px, 9999px, 93px, 0);
    }

    95% {
        clip: rect(87px, 9999px, 54px, 0);
    }

    100% {
        clip: rect(74px, 9999px, 77px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(34px, 9999px, 58px, 0);
    }

    5% {
        clip: rect(94px, 9999px, 69px, 0);
    }

    10% {
        clip: rect(28px, 9999px, 36px, 0);
    }

    15% {
        clip: rect(75px, 9999px, 67px, 0);
    }

    20% {
        clip: rect(65px, 9999px, 87px, 0);
    }

    25% {
        clip: rect(80px, 9999px, 85px, 0);
    }

    30% {
        clip: rect(32px, 9999px, 65px, 0);
    }

    35% {
        clip: rect(88px, 9999px, 66px, 0);
    }

    40% {
        clip: rect(56px, 9999px, 64px, 0);
    }

    45% {
        clip: rect(32px, 9999px, 32px, 0);
    }

    50% {
        clip: rect(33px, 9999px, 87px, 0);
    }

    55% {
        clip: rect(70px, 9999px, 99px, 0);
    }

    60% {
        clip: rect(78px, 9999px, 62px, 0);
    }

    65% {
        clip: rect(35px, 9999px, 71px, 0);
    }

    70% {
        clip: rect(37px, 9999px, 78px, 0);
    }

    75% {
        clip: rect(87px, 9999px, 94px, 0);
    }

    80% {
        clip: rect(79px, 9999px, 85px, 0);
    }

    85% {
        clip: rect(99px, 9999px, 96px, 0);
    }

    90% {
        clip: rect(41px, 9999px, 49px, 0);
    }

    95% {
        clip: rect(21px, 9999px, 88px, 0);
    }

    100% {
        clip: rect(64px, 9999px, 97px, 0);
    }
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}


/* ... (CSS untuk bagian lain) ... */

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: #0d0d0d;
    color: #eee;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

.portfolio-container {
    max-width: 1400px;
    margin: auto;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-title {
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-title {
    transform: translateY(0);
}


.clients-section {
    margin-bottom: 50px;
  }
  
  .clients-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .clients-carousel {
    overflow: hidden; 
    padding-bottom: 20px;
    position: relative; 
  }
  
  .clients-track {
    display: flex;
    animation: marquee 60s linear infinite; 
    width: fit-content;
  }
  
  
  /* Animasi marquee untuk gerakan ke kiri */
  @keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } 
  }
  
  
  .client-logo {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .client-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(150%);
    transition: filter 0.4s ease;
  }
  
  .client-logo:hover img {
    filter: grayscale(0) brightness(100%);
  }
  
  /* Responsif */
  @media (max-width: 768px) {
    .client-logo {
      width: 120px;
      height: 60px;
      margin-right: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  }


/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #0d0d0d;
    color: #eee;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.contact-container {
    max-width: 1800px;
    margin: auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 4;
}

.contact-content {
    text-align: center;
}

.section-title {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.contact-description {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Contact Card */
.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    cursor: pointer; /* Menampilkan cursor pointer */
    text-decoration: none; /* Menghilangkan garis bawah */
    color: inherit; /* Mengikuti warna teks dari parent */
}

/* Contact Card Hover Effect */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -5px rgba(255, 107, 107, 0.5);
}

/* Contact Icon */
.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    font-size: 2rem;
    text-align: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

/* Contact Icon Before (Blur Effect) */
.contact-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-50px) scale(0);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Contact Icon Before Hover Effect */
.contact-card:hover .contact-icon:before {
    transform: translate(-50%, -50%) translateZ(-50px) scale(1);
    opacity: 1;
}

/* Contact Info */
.contact-info {
    text-align: center;
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 0.9rem;
    color: #bbb;
}

/* Contact Card Specific Styles */
.contact-card[data-method="whatsapp"] .contact-icon {
    background-color: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.contact-card[data-method="whatsapp"] .contact-icon:before {
    background-color: rgba(37, 211, 102, 0.2);
}

.contact-card[data-method="instagram"] .contact-icon {
    background-color: rgba(225, 48, 108, 0.2);
    color: #E1306C;
}

.contact-card[data-method="instagram"] .contact-icon:before {
    background-color: rgba(225, 48, 108, 0.2);
}

.contact-card[data-method="email"] .contact-icon {
    background-color: rgba(234, 67, 53, 0.2);
    color: #EA4335;
}

.contact-card[data-method="email"] .contact-icon:before {
    background-color: rgba(234, 67, 53, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-card {
        padding: 35px; /* Padding lebih besar di layar kecil */
        /* transform: scale(1.03);  Hilangkan dulu scale */
    }

    /* .contact-card:hover {
        transform: translateY(-10px) scale(1.03); 
    } */

    section:hover {
        transform: none; /* Hilangkan efek zoom pada section di layar kecil */
    }
}


/* Social Media */
.social-media {
    text-align: center;
}

.social-media p {
    color: #ddd;
    margin-bottom: 15px;
}

.social-media a {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    line-height: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-media a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ff6b6b;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.social-media a:hover:before {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
}

.social-media a:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

.social-media a[title="YouTube"]:before {
    background: linear-gradient(45deg, #FF0000, #cc0000);
}

.social-media a[title="Twitter"]:before {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd8);
}

.social-media a[title="Instagram"]:before {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
}

.social-media a[title="TikTok"]:before {
    background: linear-gradient(45deg, #000, #222);
}

.social-media a[title="Infinity"]:before {
    background: linear-gradient(45deg, #ff6b6b, #f06595);
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}


/* Animasi ikon */
@keyframes move-icons {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0);
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg); /* Ikon bergerak ke atas dan berputar */
    }
}

/* Responsif */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px;
    }
    .infinity-loop {
        width: 250px;
        height: 125px;
    }

    .infinity-loop:before,
    .infinity-loop:after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 20px;
    }

    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-method i {
        font-size: 1.5rem;
    }

    .social-media a {
        font-size: 1.4rem;
    }

    .contact-description {
        font-size: 1rem;
    }
    .infinity-loop {
        width: 200px;
        height: 100px;
    }

    .infinity-loop:before,
    .infinity-loop:after {
        width: 30px;
    }
}

/* Footer Section */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}



/* List Event Section */
.list-event {
    padding: 50px 0;
    background-color: #111;
}

.list-event .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.event-card {
    background-color: #222;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    color: #eee;
    transition: transform 0.3s ease-in-out;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-banner {
    position: relative;
    height: 220px;
}

.event-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.event-prize {*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    left: 10px;*/
/*    background: linear-gradient(to right, #7289da, #5865F2);*/
/*    color: #fff;*/
/*    padding: 5px 10px;*/
/*    border-radius: 5px;*/
/*    font-weight: bold;*/
/*}*/

/*.event-prize p {*/
/*    margin: 0;*/
/*    font-size: 24px;*/
/*    line-height: 1;*/
/*}*/

/*.event-prize span {*/
/*    font-size: 10px;*/
/*    display: block;*/
/*}*/

.event-location {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
}

.event-location p {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
}

.event-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #7289da;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
}

.event-details {
    padding: 20px;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-details table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.event-details table td {
    padding: 5px 0;
    font-size: 14px;
}

.event-details table td:first-child {
    font-weight: 500;
}

.event-details table td:last-child {
    text-align: right;
}

.daftar-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(to right, #7289da, #5865F2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
}

.daftar-button:hover {
    background: linear-gradient(to right, #5865F2, #404EED);
    transform: translateY(-5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .event-card {
        max-width: 350px;
    }

    .event-details h3 {
        font-size: 1.3rem;
    }

    .event-details table td {
        font-size: 13px;
    }

    .daftar-button {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .event-card {
        max-width: 100%;
    }
    .event-banner {
        height: auto;
    }
    .event-list {
        gap: 20px;
    }
}
/* Style untuk Leaderboard */
.leaderboard table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.leaderboard th,
.leaderboard td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.leaderboard th {
    background-color: #333;
    color: #fff;
}

