
section {
    padding: 50px 0 80px;
}
h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 20px;
    position: relative;
}
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #fbd118, #097b3e);
    margin: 10px auto 30px auto;
    border-radius: 3px;
}
.past-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}
.past-event-card {
    background: linear-gradient(135deg, rgba(19,136,8,0.08), rgba(255,255,255,0.95));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.past-event-card:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 70px rgba(0,0,0,0.16);
}
.past-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.past-content {
    padding: 32px;
}
.past-title {
    font-size: 2.1rem;
    color: #138808;
    margin-bottom: 12px;
}
.past-date {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}
.past-desc {
    color: #444;
    font-size: 1.05rem;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}
.carousel-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.9rem;
    color: #0056b3;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.carousel-btn:hover, .carousel-btn:focus {
    background: #ff9933;
    color: white;
    transform: scale(1.12);
}
.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}
.dot {
    width: 14px;
    height: 14px;
    background: rgba(0,86,179,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: #ff9933;
    transform: scale(1.3);
}
.events-timeline {
    max-width: 920px;
    margin: 0 auto 100px;
}
.event-item {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}
.event-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    bottom: -80px;
    width: 3px;
    background: linear-gradient(135deg, #fbd118, #097b3e);
    opacity: 0.4;
}

.event-date-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbd118, #097b3e);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(255,153,51,0.35);
    font-weight: 700;
}
.event-date-badge .day { font-size: 2.4rem; }
.event-date-badge .month { font-size: 1.1rem; margin-top: -4px; }
.event-content {
    flex: 1;
    background: #f7f7f7;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    transition: all 0.35s ease;
}
.event-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}
.event-title {
    font-size: 2.4rem;
    color: #262626;
    margin-bottom: 16px;
}
.event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}
.event-desc {
    color: #444;
    margin-bottom: 28px;
    font-size: 1.08rem;
}
.share-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.share-btn {
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.share-btn.whatsapp { background: #25D366; }
.share-btn.twitter  { background: #1DA1F2; }
.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
@media (max-width: 800px) {
    h2 {font-size: 2.5rem;}
    .event-item { flex-direction: column; align-items: center; text-align: center; }
    .event-item::before { display: none; }
}