
.container-events {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.event-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.event-content {
    width: 50%;
}
.event-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.event-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}
.go-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}
.go-button:hover {
    background-color: #0056b3;
}
.event-image {
    width: 45%;
    height: auto;
}
.event-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Animating Arrows */
.arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.arrows span {
    position: absolute;
    font-size: 30px;
    color: rgba(0, 0, 0, 0.2);
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

/* Tech Event Arrows (Left to Right) */
.tech-arrows span {
    top: calc(10% + var(--i) * 5%);
    left: -10%;
    animation-name: moveRight;
    animation-timing-function: linear;
}
@keyframes moveRight {
    0% { left: -10%; }
    100% { left: 110%; }
}

/* Non-Tech Event Arrows (Right to Left) */
.non-tech-arrows span {
    top: calc(10% + var(--i) * 5%);
    right: -10%;
    animation-name: moveLeft;
    animation-timing-function: linear;
}
@keyframes moveLeft {
    0% { right: -10%; }
    100% { right: 110%; }
}