html {
    scroll-behavior: smooth;
}
:root {
    --primary: #2E5180;
    --secondary: #0F9D58;
    --accent: #E4723B;
    --yellow: #F4B400;
    --light-bg: #f5f5f5;
    --dark-text: #202124;
    --light-text: #5f6368;
    --white: #f5f5f5;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(32, 33, 36, 0.1);
    --shadow-hover: 0 8px 15px rgba(32, 33, 36, 0.15);
    --transition-speed: 0.2s; /* Faster transition for footer */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Roboto', sans-serif;
}


body {
    background: white;
    color: var(--dark-text);
    line-height: 1.6;
   padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
}

#hero-container {
    margin: 0 0 0 5rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .register form {
    width: 90%;
  }

  .partners .logos {
    gap: 20px;
  }
}

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

  .register h2,
  .partners h2 {
    font-size: 1.5rem;
  }

  .register form {
    width: 100%;
  }
}

/* COUNTDOWN */

.countdown {
  text-align: center;
  background-color: #ffff;
  padding: 20px;
  margin: 0;
}

#timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1.5rem;
  margin-top: 10px;
}

#timer span {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#timer small {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}

@media (max-width: 600px) {
  #timer {
    gap: 10px;
    font-size: 1.2rem;
  }
}

/* PARTNERS */

.partners {
  padding: 40px 20px;
  background: white;
}

.partners .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}


/* ===== NAVBAR STYLING ===== */

/* HEADER */
header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 0 20px;
    box-sizing: border-box; 
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
    padding: 17px 0;
    
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 120px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 600;

    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover .logo-text {
    transform: scale(1.05);
}

/* For transparent header state */
header.transparent .logo-image {
    filter: brightness(1.2); /* Makes the logo slightly brighter on dark background */
}
/* Enhanced navbar */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size:medium;
}

.nav-link {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
   
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: black;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: black;
}

.hero {
    max-height:100%;
    width: 100%;
    background: white;
    text-align: left;
    position: relative;
    overflow: hidden;
    padding: 0px;
}

.hero-image video {
  max-width: 100%;
    height: auto;
    min-height: 250px; /* Menjaga gambar tetap besar */
    max-height: 100%; /* Mencegah gambar terlalu besar */
    object-fit: contain; /
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 2;
    max-width: 65%;
    font-size: 1.2rem; /* Ukuran teks keseluruhan */
    line-height: 1.6; /* Spasi antar baris agar lebih nyaman dibaca */
}

.hero h1 {
    color: #2e5180;

    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    animation: fadeInLeft 1s ease-out;
    max-width: 800px;
    height: 30%;
      font-size: clamp(30px, 6vw, 70px); /* Ukuran lebih besar */
    line-height: 1; /* Jarak antar baris agar tidak terlalu rapat */
}

.hero h1::before,
.hero h1::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    opacity: 0.7;
}

.hero h1::before {
    top: -15px;
    /* left: -100px; */
    border-top-left-radius: 5px;
}

.hero h1::after {
    bottom: -10px;
    border-bottom-right-radius: 5px;
}


.hero p {
    margin: 0 0 40px 0; /* Changed margin to be left-aligned */
    position: relative;
    animation: fadeInLeft 1.2s ease-out;
     font-size: clamp(14px, 1.2vw, 16px); /* Menyesuaikan dengan ukuran layar */
    max-width: 800px;
}

.hero-image {
    flex: 1;
    max-width: 35%;
    display: flex;
    justify-content: center;
}


.cta-button {
    display: inline-block;
    background-color: #e47238; 
    color: white;
    padding: 8px 20px;
    border-radius: 5px; /* Sudut lebih kecil */
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.cta-button:hover {
    background-color: #ca4d0e; /* Warna sedikit lebih terang saat hover */
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

section {
    padding: 40px 0;
}

section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    transition: width 0.3s ease;
    background-color: var(--primary);
}

section:hover h2::after {
    width: 80px;
}

/* Updated card hover to rise up instead of sideways */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.452);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: fadeIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

/* New style for background card design */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
  
    border-radius: 0 0 0 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px); /* Changed from side movement to upward */
    box-shadow: var(--shadow-hover);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
    position: relative;
    padding-left: 15px;
}

.card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.card p {
    color: black;
    margin-bottom: 20px;
    
    font-size: medium;
}

.sponsor-card, .media-partner-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    max-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sponsor-logo, .media-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

/* Alternating left/right animation with custom classes */
.from-left {
    animation: fadeInLeft 1s ease-out;
}

.from-right {
    animation: fadeInRight 1s ease-out;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    
}

/* All cards consistent with theme cards */
.theme-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(21, 88, 187, 0.452);
    z-index: 1;
}

/* Adding alternating animations for theme cards */
.theme-card:nth-child(odd) {
    animation: fadeInLeft 1s ease-out;
}

.theme-card:nth-child(even) {
    animation: fadeInRight 1s ease-out;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 75%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.theme-card:hover::before {
    opacity: 1;
}

.theme-icon {
    width: 70px;
    height: 70px;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-icon img {
    width: 100%; /* Gambar mengisi area sepenuhnya */
    height: 100%;
    object-fit: cover; /* Memastikan gambar terisi penuh dalam lingkaran */
    /* border-radius: 50%; Pastikan tetap berbentuk lingkaran */
}

.theme-icon video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.theme-card:hover .theme-icon {
    transform: scale(1.1);
}

/* .food-water {
    background-color: rgba(66, 133, 244, 0.1);
    color: var(--primary);
}

.agri {
    background-color: rgba(15, 157, 88, 0.1);
    color: var(--secondary);
}

.climate {
    background-color: rgba(219, 68, 55, 0.1);
    color: var(--accent);
}

.renewable {
    background-color: rgba(244, 180, 0, 0.1);
    color: var(--yellow);
}

.digital {
    background-color: rgba(66, 133, 244, 0.1);
    color: var(--primary);
}

.education {
    background-color: rgba(15, 157, 88, 0.1);
    color: var(--secondary);
}

.startup {
    background-color: rgba(219, 68, 55, 0.1);
    color: var(--accent);
} */

.theme-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.theme-card:hover h4 {
    color: var(--primary);
}

.theme-card p {
    color: var(--light-text);
    font-size: 14px;
}

/* Fixed center line for timeline */
.timeline {
    
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%; /* Ensure centered */
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

/* Left items slide in from left, right items slide in from right */
.timeline-item.left {
    animation: fadeInLeft 1s ease-out;
}

.timeline-item.right {
    animation: fadeInRight 1s ease-out;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    background-color: var(--primary);
    transform: scale(1.2);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--white);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.452);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px); /* Changed to upward movement */
    box-shadow: var(--shadow-hover);
}

.right:hover .timeline-content {
    transform: translateY(-10px); /* Changed to upward movement */
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: var(--accent);
}

/* Prize cards - remove outline */
.prize-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Alternating animation for prize cards */
.prize-card:nth-child(odd) {
    animation: fadeInLeft 1s ease-out;
}

.prize-card:nth-child(even) {
    animation: fadeInRight 1s ease-out;
}

.prize-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: -1;
    transition: height 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.prize-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.prize-card.gold::before {
    background-color: #FFD700;
}

.prize-card.silver::before {
    background-color: #C0C0C0;
}

.prize-card.bronze::before {
    background-color: #CD7F32;
}

.prize-card.special::before {
    background-color: var(--primary);
}

/* Removed border-top from prize cards */

.prize-icon {
    font-size: 36px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.prize-card:hover .prize-icon {
    transform: scale(1.2) rotate(10deg);
}

.prize-amount {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
    color: var(--primary);
    transition: all 0.3s ease;
}

.prize-card:hover .prize-amount {
    transform: scale(1.1);
}

.registration {
    background: white;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.registration::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 70%);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.5);
    }
}

.registration h2 {
    color: black;
    position: relative;
}

.registration h2::after {
    background: var(--primary);
}

/* Countdown timer */
.countdown-text {
    font-size: 24px;
    margin: 30px 0 20px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease-out;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    animation: fadeInUp 1.4s ease-out;
}

.countdown-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 15px;
    min-width: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    animation: pulse-light 2s infinite alternate;
}

.countdown-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@keyframes pulse-light {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: scale(1.03);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
}

/* Footer */

footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    transition: width var(--transition-speed) ease; /* Faster transition */
}

.footer-column:hover h3::after {
    width: 60px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
    transition: transform var(--transition-speed) ease; /* Faster transition */
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    color: #9aa0a6;
    text-decoration: none;
    transition: color var(--transition-speed); /* Faster transition */
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width var(--transition-speed) ease; /* Faster transition */
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #9aa0a6;
    transition: transform var(--transition-speed) ease; /* Faster transition */
}

.contact-info p:hover {
    transform: translateX(5px);
    color: var(--white);
}

.contact-info p i {
    margin-right: 10px;
    color: var(--primary);
    transition: transform var(--transition-speed) ease; /* Faster transition */
}

.contact-info p:hover i {
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9aa0a6;
    font-size: 14px;
}

/* Loading Effect */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Animation for elements */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* New left/right animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Improved Responsiveness */
@media screen and (max-width: 1024px) {
    

    .hero {
            display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
        padding: 10px;
    }
    
    .hero p {
        font-size: 18px;
        padding: 10px;
    }
    
    section h2 {
        font-size: 32px;
    }

    .countdown-container {
        gap: 15px;
    }

    .countdown-box {
        min-width: 80px;
        padding: 12px;
    }

    .countdown-number {
        font-size: 28px;
    }

       .footer {
        margin: 15px;
    }
}

@media screen and (max-width: 768px) {
  .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        box-shadow: var(--shadow);
    }

       .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 31px;
    }

    #hero-container {
        margin: 0 auto;
    }

    .hero {
        height: 100%;
        text-align: center;
        padding: 20px 0;
    }



    .hero h1::before,
    .hero h1::after {
        width: 20px;
        height: 4px;
    }

      .hero-content {
       
        height: 100%;
        margin:0;
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
       
    flex: 2;
    max-width: 100%;
    font-size: 1.2rem; /* Ukuran teks keseluruhan */
    line-height: 1.6; /* Spasi antar baris agar lebih nyaman dibaca */
    }
   
    .hero-image {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center; /* Pusatkan jika perlu */
        align-items: center;
    }

    .hero-image video {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: contain;
    }

    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 19px;
    }
    
    .right {
        left: 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    section {
        padding: 50px 10px;
        margin:0 0 0 10px;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .card-grid {
        gap: 20px;
    }
    
    .prize-cards {
        gap: 20px;
    }

    .countdown-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-box {
        min-width: 70px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 24px;
    }

       .footer {
        margin: 15px;
    }
}

@media screen and (max-width: 480px) {
    .header-content {
        padding: 15px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 20px;
    }
    
    .theme-card {
        padding: 20px;
    }
    
    .theme-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .prize-card {
        padding: 20px;
    }
    
    .prize-amount {
        font-size: 20px;
    }
    
    .footer-content {
        padding: 10px;
        gap: 30px;
    }

    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .countdown-box {
        min-width: 100%;
    }
}

.chat-button-spesial {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0D3B66;
    color: white;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index:100;
    text-decoration: none;
     transition: transform 0.3s ease;
}

.chat-button-spesial:hover {
    transform: scale(1.1);
}

.chat-icon {
    font-size: 20px;
}



/* Grid untuk logo */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 5px;
    justify-content: center;
    align-items: center;
}

/* Kotak logo */
.partner {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px; /* Tinggi kotak */
    /* border: 1px solid var(--primary);  */
    background-color: white;
    border-radius: var(--border-radius);

    /* box-shadow: var(--shadow); */
    transition: transform 0.3s ease-in-out;

}

.partner:hover {
    transform: scale(1.05); /* Efek hover */
}

/* Gambar logo */
.partner img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner .big {
    max-width: 180%;
    max-height: 140px;
    object-fit: contain;
}



/* Mode Mobile: Hanya 4 logo per baris */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom per baris */
    }
    .partner img.big {
    max-width: 149px; /* 2.5x dari 100px */
    max-height: 98px; /* 2.5x dari 80px */
}
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* Tetap 2 kolom per baris */
    }

    .partner {
        height: 100px; /* Sesuaikan tinggi */
        padding: 15px;
    }

    .partner img {
        max-height: 60px;
    }
}

  #rundown .container {
        max-width: 800px;
        margin: auto;
        padding: 20px;
    }

    #rundown .card {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    #rundown h2, #rundown h3 {
        text-align: center;
    }

    .schedule-list {
        list-style-type: none;
        padding: 0;
    }

    .schedule-list li {
        padding: 0.5rem;
        border-bottom: 1px solid #ddd;
    }

    .schedule-list li:last-child {
        border-bottom: none;
    }
    #register .container {
        max-width: 850px;
        margin: auto;
        padding: 20px;
    }

    /* Card Styling */
    #register .card {
        background: #f8f9fa; /* Light gray background */
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-left: 6px solid #007bff; /* Blue accent */
    }

    /* Section Titles with Different Colors */
    .section-title {
        font-size: 1.4rem;
        padding: 10px 0;
        border-bottom: 3px solid;
    }

    .requirements-title { border-color: #28a745; } /* Green */
    .registration-title { border-color: #ffc107; } /* Yellow */
    .terms-title { border-color: #dc3545; } /* Red */

    /* Requirements Grid */
    .requirements-grid {
        display: flex;
        justify-content: space-between;
    }

    .requirements-list {
        list-style-type: none;
        padding: 0;
        flex: 1;
    }

    /* General List Styling */
    .registration-list, .terms-list, .sub-list {
        list-style-type: none;
        padding: 0;
    }

    .registration-list li, .terms-list li {
        padding: 0.6rem;
        border-bottom: 1px solid #ddd;
        display: flex;
        align-items: center;
    }

    /* Sub List for Documents */
    .sub-list {
        padding-left: 20px;
        margin-top: -5px;
    }

    /* Icons */
    .registration-list li::before,
    .terms-list li::before,
    .requirements-list li::before,
    .sub-list li::before {
        content: "Ã¢Å“â€�Ã¯Â¸ï¿½"; /* Default check icon */
        margin-right: 10px;
        color: #007bff;
    }

    /* Links */
    .registration-list a {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }

    .registration-list a:hover {
        text-decoration: underline;
    }

    /* Responsive for Mobile */
    @media (max-width: 600px) {
        .requirements-grid {
            flex-direction: column;
        }
    }

     /* General Container */
    #essay .container {
        max-width: 850px;
        margin: auto;
        padding: 20px;
    }

    /* Card Styling */
    .essay-card {
        background: #fdf6e3; /* Light cream background */
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-left: 6px solid #ff9800; /* Orange accent */
    }

    /* Intro Text */
    .essay-intro {
        font-size: 1.1rem;
        background: #fff3cd; /* Light yellow background */
        padding: 10px;
        border-left: 4px solid #ff9800;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    /* Section Titles */
    .essay-title {
        font-size: 1.3rem;
        padding: 10px 0;
        border-bottom: 3px solid;
    }

    .project-title { border-color: #007bff; } /* Blue */
    .format-title { border-color: #28a745; } /* Green */

    /* Project Details Boxes */
    .project-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 10px;
    }

    .project-box {
        background: #ffffff;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #007bff;
    }

    /* Table Styling */
    .essay-table {
        width: 100%;
        margin-top: 15px;
        border-collapse: collapse;
    }

    .essay-table th, .essay-table td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .essay-table th {
        background: #e3f2fd; /* Light blue */
        font-weight: bold;
    }

    /* Responsive for Mobile */
    @media (max-width: 600px) {
        .project-details {
            grid-template-columns: 1fr;
        }
    }

.big {
  max-width: 300%; /* Perbesar gambar */
  height: auto;
}
/* end of code */
