/* Card Carousel for International Workshop Section */


.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 32px auto 0 auto;
    padding: 0 24px;
}
.carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}
.carousel-card {
    min-width: 160px;
    max-width: 160px;
    margin: 0 10px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.carousel-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
    padding: 12px;
    transition: width 0.3s, height 0.3s;
}

@media (max-width: 600px) {
    .carousel-container {
        max-width: 100%;
        padding: 0 8px;
    }
    .carousel {
        gap: 8px;
    }
    .carousel-card {
        min-width: 110px;
        max-width: 110px;
        margin: 0 6px;
    }
    .carousel-card img {
        width: 80px;
        height: 80px;
        padding: 6px;
    }
    .carousel-prev, .carousel-next {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(34,197,94,0.15);
    transition: background 0.2s, transform 0.2s;
}
.carousel-prev:hover, .carousel-next:hover {
    background: #16a34a;
    transform: scale(1.1) translateY(-50%);
}
.carousel-prev {
    left: 0;
}
.carousel-next {
    right: 0;
}
#callForPapersCarousel {
    position: relative;
    padding: 0 80px;
}

#callForPapersCarousel .carousel-control-prev,
#callForPapersCarousel .carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: none;
    z-index: 10;
}

#callForPapersCarousel .carousel-control-prev {
    left: 10px;
}

#callForPapersCarousel .carousel-control-next {
    right: 10px;
}

#callForPapersCarousel .carousel-control-prev-icon,
#callForPapersCarousel .carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.7);
    border-radius: 50%;
    padding: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#callForPapersCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#callForPapersCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(134, 239, 172, 0.4);
}

#callForPapersCarousel .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

#callForPapersCarousel .description-slide,
#callForPapersCarousel .timeline-slide {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Community Service Carousel */
#communityServiceCarousel {
    position: relative;
    margin-top: 2rem;
    padding: 0 60px;
}

#communityServiceCarousel .carousel-control-prev,
#communityServiceCarousel .carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: none;
    z-index: 10;
}

#communityServiceCarousel .carousel-control-prev {
    left: 10px;
}

#communityServiceCarousel .carousel-control-next {
    right: 10px;
}

#communityServiceCarousel .carousel-control-prev-icon,
#communityServiceCarousel .carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.7);
    border-radius: 50%;
    padding: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#communityServiceCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#communityServiceCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(134, 239, 172, 0.4);
}

#communityServiceCarousel .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

#communityServiceCarousel .description-slide,
#communityServiceCarousel .service-detail-slide {
    animation: fadeInUp 0.8s ease-out;
}

.service-detail-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #86efac;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(134, 239, 172, 0.25);
}

.detail-icon {
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    color: #0f5132;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.detail-content h4 {
    color: #86efac;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin: 0 0 0.5rem 0;
}

.detail-content p {
    color: #e5e7eb;
    font-size: 1.1rem;
    margin: 0.25rem 0;
    line-height: 1.5;
}

.detail-content .time {
    font-size: 0.95rem;
    color: #d1d5db;
}

.timeline-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Horizontal Day-by-Day Rundown */
.rundown-title {
    text-align: center;
    color: #86efac;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.timeline-horizontal {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start; /* align from left so first day isn't pushed off-screen */
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2rem 4rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4rem; /* ensure first card snaps fully into view */
    scroll-padding-right: 4rem;
}

/* Custom scrollbar for horizontal timeline */
.timeline-horizontal::-webkit-scrollbar {
    height: 10px;
}
.timeline-horizontal::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}
.timeline-horizontal::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.timeline-horizontal .timeline-day {
    flex: 0 0 320px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    scroll-snap-align: center;
    margin: 0 0.5rem;
}

.timeline-horizontal .timeline-day h2,
.timeline-horizontal .timeline-day h3 {
    text-align: center;
    color: #86efac;
    margin: 0.5rem 0;
}

.timeline-horizontal .timeline-day ul {
    padding-left: 0;
    list-style: none;
    margin: 0.5rem 0 0 0;
}

.timeline-horizontal .timeline-day .timeline-step {
    display: block;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-horizontal {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    .timeline-horizontal .timeline-day {
        flex: 0 0 80%;
    }
    .rundown-title {
        font-size: 1.6rem;
    }
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(134, 239, 172, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.step-content {
    max-width: 260px;
    min-height: 120px;
}

.pipeline-line {
    width: 100px;
    height: 4px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(134, 239, 172, 0.3);
    flex-shrink: 0;
    margin-top: 35px;
    margin-left: 15px;
    margin-right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.8);
    border-radius: 50%;
    padding: 20px;
    width: 50px;
    height: 50px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #86efac;
    opacity: 0.5;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-indicators .active {
    opacity: 1;
    box-shadow: 0 0 15px rgba(134, 239, 172, 0.8);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(134, 239, 172, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(134, 239, 172, 0.6), 0 6px 16px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 1024px) {
    .timeline-pipeline {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        align-items: flex-start;
    }
    
    .pipeline-line {
        width: 120px;
        height: 4px;
        margin: 35px 15px 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        max-width: 220px;
        min-height: auto;
    }
    
    .step-content h4 {
        font-size: 1.1rem !important;
    }
    
    .step-content p {
        font-size: 0.85rem !important;
    }
}

#culturalExchangeCarousel {
    position: relative;
    padding: 0 80px;
}

#culturalExchangeCarousel .carousel-control-prev,
#culturalExchangeCarousel .carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: none;
    z-index: 10;
}

#culturalExchangeCarousel .carousel-control-prev {
    left: 10px;
}

#culturalExchangeCarousel .carousel-control-next {
    right: 10px;
}

#culturalExchangeCarousel .carousel-control-prev-icon,
#culturalExchangeCarousel .carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.7);
    border-radius: 50%;
    padding: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#culturalExchangeCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#culturalExchangeCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
    transform: scale(1.1);
}

#culturalExchangeCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #86efac;
    opacity: 0.5;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#culturalExchangeCarousel .carousel-indicators .active {
    opacity: 1;
    box-shadow: 0 0 15px rgba(134, 239, 172, 0.8);
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.slide-content h3 {
    color: #86efac;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1rem;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.slide-content ul {
    list-style: none;
    padding: 0;
}

.slide-content ul li {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.slide-content ul li strong {
    color: #86efac;
}

@media (max-width: 768px) {
    #culturalExchangeCarousel {
        padding: 0 40px;
    }
    
    .slide-content {
        padding: 1rem 0.5rem;
        min-height: 250px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

/* Competition Categories Section */
#competition-categories {
    background-color: #0f5132; /* Hijau tua */
    padding: 0;
}

.competition-section {
    background-color: #0f5132;
    padding: 0;
}

.competition-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.competition-categories {
    width: 100%;
    text-align: left;
    padding: 0;
    max-width: 900px;
}

.competition-categories h3 {
    color: #86efac;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.categories-subtitle {
    color: #d1fae5;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    padding: 2rem 2.25rem;
    border-radius: 16px;
    border-left: 5px solid #86efac;
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.18) 100%);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(134, 239, 172, 0.25);
    border-left-color: #22c55e;
}

.category-number {
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    color: #0f5132;
    font-weight: 700;
    font-size: 1.6rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(134, 239, 172, 0.4);
}

.category-content {
    flex: 1;
}

.category-card h4 {
    color: #e5e7eb;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.category-desc {
    color: #d1d5db;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 768px) {
    .competition-content-wrapper {
        padding: 0 1rem;
    }
    
    .competition-categories h3 {
        font-size: 1.8rem;
    }
    
    .categories-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .category-card {
        padding: 1.5rem 1.75rem;
        gap: 1.25rem;
    }
    
    .category-card h4 {
        font-size: 1.1rem;
    }
    
    .category-desc {
        font-size: 0.9rem;
    }
    
    .category-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .competition-content li {
        font-size: 1rem;
        text-align: left;
    }
}

/* Business Competition Carousel */
#businessCompetitionCarousel {
    position: relative;
    padding: 0 80px;
}

#businessCompetitionCarousel .carousel-control-prev,
#businessCompetitionCarousel .carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: none;
    z-index: 10;
}

#businessCompetitionCarousel .carousel-control-prev {
    left: 10px;
}

#businessCompetitionCarousel .carousel-control-next {
    right: 10px;
}

#businessCompetitionCarousel .carousel-control-prev-icon,
#businessCompetitionCarousel .carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.7);
    border-radius: 50%;
    padding: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#businessCompetitionCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#businessCompetitionCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
    transform: scale(1.1);
}

#businessCompetitionCarousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #86efac;
    opacity: 0.5;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#businessCompetitionCarousel .carousel-indicators .active {
    opacity: 1;
    box-shadow: 0 0 15px rgba(134, 239, 172, 0.8);
}

@media (max-width: 768px) {
    #businessCompetitionCarousel {
        padding: 0 40px;
    }
    
    .slide-content {
        padding: 1rem 0.5rem;
        min-height: 300px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slide-content h4 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    
    .slide-content ul {
        padding-left: 1rem;
    }
    
    .slide-content li {
        font-size: 0.85rem;
    }
}

/* Business Competition Details */
.competition-details {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.competition-details h3 {
    color: #86efac;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.competition-details p {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.timeline-section {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #86efac;
    flex: 1 1 0;
    min-width: 0;
    max-width: 280px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.timeline-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.18) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(134, 239, 172, 0.25);
    border-left-color: #22c55e;
}

.timeline-item h4 {
    color: #86efac;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #e5e7eb;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.requirements-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.requirement-item h4 {
    color: #86efac;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.requirement-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.requirement-item li {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    text-align: center;
}

.requirement-item li::before {
    content: "•";
    color: #86efac;
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .competition-details h3 {
        font-size: 1.5rem;
    }
    
    .timeline-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .requirements-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item, .requirement-item {
        padding: 1rem;
    }
}

.timeline-pipeline.compact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;              /* KUNCI */
    justify-content: center;
    gap: 1.5rem;
}

.timeline-pipeline.compact .timeline-step {
    flex: 0 1 220px;              /* batasi lebar step */
}

.timeline-pipeline.compact .pipeline-line {
    width: 60px;                  /* dari 120px → 60px */
}

/* RESPONSIVE FIX */
@media (max-width: 992px) {
    .timeline-pipeline.compact {
        gap: 2rem;
    }

    .timeline-pipeline.compact .pipeline-line {
        display: none;            /* garis dimatikan di layar kecil */
    }
}

.timeline-vertical {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
    padding-left: 40px;
}

.timeline-vertical::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #86efac, #22c55e);
    border-radius: 2px;
}

.timeline-day {
    margin-bottom: 3rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    color: #86efac;
    margin-bottom: 0.8rem;
}

.step-content ul {
    padding-left: 1.2rem;
    margin: 0;
}

.step-content li {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-vertical {
        padding-left: 20px;
    }

    .timeline-vertical::before {
        left: 10px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Background hijau tua untuk Program Rundown */
#program-rundown {
    background: linear-gradient(
        135deg,
        #0f5132 25%,   /* hijau tua */
        #022c22 100%  /* lebih gelap */
    );
    padding: 3rem 0 1.5rem 0;
}

/* Jaga keterbacaan teks */
#program-rundown h2,
#program-rundown h3,
#program-rundown h4 {
    color: #d1fae5; /* hijau terang */
}

#program-rundown p,
#program-rundown li {
    color: #ecfdf5;
}

.timeline-horizontal {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    align-items: stretch;
    margin: 2rem auto 0;
    flex-wrap: wrap; /* penting untuk mobile */
    overflow: visible;
}

.timeline-horizontal .timeline-day {
    background: rgba(6, 78, 59, 0.85); /* hijau tua */
    border-radius: 16px;
    padding: 2rem;
    flex: 1 1 300px; /* 3 kolom ideal */
    max-width: 360px;
    height: 340px;
    min-height: 340px;
    max-height: 340px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.timeline-horizontal .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #86efac, #22c55e);
    color: #064e3b;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.timeline-horizontal h3 {
    color: #d1fae5;
    margin-bottom: 1rem;
}

.timeline-horizontal li {
    color: #ecfdf5;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

/* Conference Sub-Themes & Program Rundown slider */
.conference-slider {
    background-image: url('/assets/international-workshop.jpg');
    background-color: #0a2e1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.conference-slider .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 30, 19, 0.5), rgba(4, 24, 15, 0.68));
}

.conference-slider .call-content {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem 3rem 2rem;
}

.conference-slider .carousel-inner {
    min-height: auto;
    overflow: visible !important;
}

.conference-slider .carousel-item {
    overflow: visible !important;
}

.conference-slider .slide-panel {
    background: rgba(7, 26, 15, 0.92);
    border: 2px solid rgba(134, 239, 172, 0.25);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    min-height: auto;
    width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.carousel-item .slide-panel {
    width: 100%;
    max-width: 100%;
    padding: 2.75rem 1.5rem;
}

.conference-slider .slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.conference-slider .slide-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #86efac;
    text-align: center;
    margin-bottom: 1.5rem;
}

.conference-slider .carousel-indicators [data-bs-target] {
    background-color: #86efac;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.conference-slider .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    gap: 12px;
}

.conference-slider .sub-themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.conference-slider .sub-theme-card {
    background: rgba(15, 81, 50, 0.4);
    border: 2px solid rgba(134, 239, 172, 0.5);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 1.2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.6s ease-out forwards;
}

.conference-slider .sub-theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #86efac 0%, #22c55e 100%);
}

.conference-slider .sub-theme-card:hover {
    transform: translateY(-8px);
    border-color: rgba(134, 239, 172, 0.8);
    box-shadow: 0 16px 40px rgba(134, 239, 172, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    background: rgba(22, 163, 74, 0.5);
}

.conference-slider .sub-theme-card h4 {
    color: #86efac;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conference-slider .sub-theme-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.conference-slider .sub-theme-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d1fae5;
    opacity: 0.9;
    text-align: left;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.conference-slider .sub-theme-card li:hover {
    color: #ffffff;
    padding-left: 1.75rem;
}

.conference-slider .sub-theme-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #86efac;
    font-weight: 800;
    font-size: 1.1rem;
}


.conference-slider .sub-themes-grid > div:nth-child(1) .sub-theme-card { animation-delay: 0.1s; }
.conference-slider .sub-themes-grid > div:nth-child(2) .sub-theme-card { animation-delay: 0.2s; }
.conference-slider .sub-themes-grid > div:nth-child(3) .sub-theme-card { animation-delay: 0.3s; }
.conference-slider .sub-themes-grid > div:nth-child(4) .sub-theme-card { animation-delay: 0.4s; }
.conference-slider .sub-themes-grid > div:nth-child(5) .sub-theme-card { animation-delay: 0.5s; }

.conference-slider .timeline-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible !important;
}

.conference-slider .timeline-horizontal .timeline-day {
    background: rgba(22, 163, 74, 0.2);
    border: 2px solid rgba(134, 239, 172, 0.5);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.conference-slider .timeline-horizontal .timeline-day:hover {
    transform: translateY(-8px);
    border-color: rgba(134, 239, 172, 0.8);
    box-shadow: 0 16px 40px rgba(134, 239, 172, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    background: rgba(22, 163, 74, 0.35);
}

.conference-slider .timeline-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    text-align: left;
    justify-content: space-between;
}

.conference-slider .step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    color: #0a2e1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(134, 239, 172, 0.4);
    margin-bottom: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    align-self: center;
}

.conference-slider .timeline-horizontal .timeline-day:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 14px 40px rgba(134, 239, 172, 0.6);
}

.conference-slider .step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #d1fae5;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.conference-slider .step-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 0.9rem;
}

.conference-slider .step-content li {
    text-align: center;
    margin-bottom: 0.6rem;
    padding-left: 0;
    position: relative;
    transition: all 0.3s ease;
}

.conference-slider .step-content li:hover {
    padding-left: 0;
    color: #86efac;
}

.conference-slider .step-content li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #86efac;
    font-weight: bold;
    display: none;
}

/* Carousel controls styling */
#conferenceHighlightsCarousel .carousel-control-prev,
#conferenceHighlightsCarousel .carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: none;
    z-index: 10;
    transition: all 0.3s ease;
}

#conferenceHighlightsCarousel .carousel-control-prev {
    left: 20px;
}

#conferenceHighlightsCarousel .carousel-control-next {
    right: 20px;
}

#conferenceHighlightsCarousel .carousel-control-prev-icon,
#conferenceHighlightsCarousel .carousel-control-next-icon {
    background-color: rgba(134, 239, 172, 0.85);
    border-radius: 50%;
    padding: 14px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

#conferenceHighlightsCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#conferenceHighlightsCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #86efac;
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(134, 239, 172, 0.5);
}

#conferenceHighlightsCarousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    gap: 12px;
}

#conferenceHighlightsCarousel .carousel-indicators [data-bs-target] {
    background-color: #86efac;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

#conferenceHighlightsCarousel .carousel-indicators .active {
    opacity: 1;
    background-color: #86efac;
}

@media (max-width: 1024px) {
    .conference-slider .timeline-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .conference-slider .call-content {
        padding: 2rem 1.25rem;
    }

    .conference-slider .carousel-inner {
        min-height: auto;
    }

    .conference-slider .timeline-horizontal {
        gap: 1rem;
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .conference-slider .timeline-horizontal .timeline-day {
        min-height: auto;
    }

    .conference-slider .sub-themes-grid {
        grid-template-columns: 1fr;
    }

    .conference-slider .slide-title {
        font-size: 2rem;
    }
}

/* Conference Sub-Themes & Program Rundown Styling */
#conference-subthemes {
    animation: fadeIn 0.8s ease-in-out;
}

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

#conference-subthemes .slide-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2rem 0 !important;
    animation: slideInUp 0.7s ease-out;
}

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

#conference-subthemes .slide-title {
    animation: slideInDown 0.7s ease-out;
    margin-bottom: 2.5rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#conference-subthemes .sub-themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
    overflow: visible;
    padding: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#conference-subthemes .sub-theme-card {
    background: rgba(15, 81, 50, 0.55);
    border: 2px solid rgba(134, 239, 172, 0.6);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, border-color, background-color;
}

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

#conference-subthemes .sub-theme-card:hover {
    background: rgba(22, 163, 74, 0.55);
    border-color: rgba(134, 239, 172, 0.9);
    box-shadow: 0 20px 50px rgba(134, 239, 172, 0.4);
}

#conference-subthemes .sub-theme-card h4 {
    color: #86efac;
    font-weight: 700;
    margin: 0 0 1rem;
    font-size: 1.2rem;
    text-align: left;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#conference-subthemes .sub-theme-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

#conference-subthemes .sub-theme-card li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: #e9fff4;
    line-height: 1.7;
    font-size: 0.98rem;
    text-align: left;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

#conference-subthemes .sub-theme-card:hover li {
    color: #ffffff;
}

#conference-subthemes .sub-theme-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #b8f7d8;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

#conference-subthemes .timeline-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow: visible;
    padding: 2rem 0;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#conference-subthemes .timeline-horizontal .timeline-day {
    background: rgba(15, 81, 50, 0.4);
    border: 2px solid rgba(134, 239, 172, 0.5);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    width: 100%;
    flex: 1;
    min-width: 280px;
    min-height: 340px;
    height: auto;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: timelineFadeIn 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    will-change: transform, box-shadow, border-color, background-color;
    box-sizing: border-box;
    overflow: hidden;
}

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

#conference-subthemes .timeline-horizontal .timeline-day:hover {
    background: rgba(22, 163, 74, 0.55);
    border-color: rgba(134, 239, 172, 0.9);
    box-shadow: 0 20px 50px rgba(134, 239, 172, 0.4);
}

#conference-subthemes .step-number {
    transition: box-shadow 0.3s ease;
}

#conference-subthemes .timeline-day:hover .step-number {
    transform: none;
    box-shadow: 0 16px 45px rgba(134, 239, 172, 0.6);
}

#conference-subthemes .step-content h3 {
    transition: color 0.3s ease;
}

#conference-subthemes .step-content li {
    transition: color 0.3s ease;
}

#conference-subthemes .timeline-day:hover .step-content li {
    color: #d1fae5;
}

#conference-subthemes .timeline-horizontal .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    color: #0a2e1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 10px 30px rgba(134, 239, 172, 0.4);
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#conference-subthemes .timeline-day:hover .step-number {
    transform: scale(1.2);
    box-shadow: 0 16px 45px rgba(134, 239, 172, 0.6);
}

#conference-subthemes .step-content {
    width: 100%;
    text-align: left;
}

#conference-subthemes .step-content h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.85rem 0;
    text-align: left;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.35px;
    line-height: 1.35;
}

#conference-subthemes .step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #d1fae5;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
}

#conference-subthemes .step-content li {
    position: relative;
    padding-left: 0;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: left;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.95;
    word-break: break-word;
}

#conference-subthemes .step-content li strong {
    color: #86efac;
    font-weight: 700;
}

#conference-subthemes .timeline-day:hover .step-content li {
    color: #ffffff;
    opacity: 1;
}

#conference-subthemes .timeline-day:hover .step-content li strong {
    color: #a8f5d4;
}

#conference-subthemes .step-content li::before {
    content: "";
    position: absolute;
    left: 4px;
    color: #86efac;
    font-weight: 700;
    display: none;
}

@media (max-width: 1024px) {
    #conference-subthemes .timeline-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #conference-subthemes .timeline-horizontal .timeline-day {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    #conference-subthemes .slide-panel { padding: 1.5rem 0 !important; }
    #conference-subthemes .sub-themes-grid { gap: 0.75rem; grid-template-columns: 1fr; }
    #conference-subthemes .sub-theme-card { width: 100%; flex: 1 1 100%; min-width: 200px; }
    #conference-subthemes .timeline-horizontal { gap: 0.75rem; grid-template-columns: 1fr; }
    #conference-subthemes .timeline-horizontal .timeline-day { width: 100%; flex: 1 1 100%; min-width: 200px; }
}