/* Education Section */
#education {
    background: #111111;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Section Title */
.edu-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.edu-title span {
    color: #C80D0D; 
}

/* Timeline Container */
.edu-timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

/* Timeline Line */
.edu-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #C80D0D;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* Timeline Item */
.edu-item {
    position: relative;
    background: #1d1d1d;
    width: 45%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 0px #c80d0d80;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Alternate Positions - Now moved away from the center line */
.edu-item:nth-child(odd) {
    left: -0.5%;  /* Moved away from the center line */
    text-align: center;
    font-size:medium;
}

.edu-item:nth-child(even) {
    left: 55%;  /* Moved away from the center line */
    font-size:medium;
}

/* Icon Inside Box */
.edu-icon {
    background: #C80D0D;
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0px solid white;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(200, 13, 13, 0.6);
    margin-bottom: 15px;  /* Space between icon and text */
}

/* Hover Effects */
.edu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px #ff0000;
}

.edu-item:hover .edu-icon {
    transform: scale(1.2);
}

/* Content Styling */
.edu-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.edu-year {
    font-size: 15px;
    color: #e21111;
    display: block;
    margin-bottom: 12px;
}

/* Animation */

/* Initially Hide Items */
.edu-item {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When Item Becomes Visible */
.edu-item.show {
    opacity: 1;
    transform: scale(1);
}


/* Responsive */
@media (max-width: 768px) {
    .edu-timeline::after {
        left: 20px;
    }

    .edu-item {
        width: 90%;
        left: 5% !important;
        text-align: center;
    }

    .edu-icon {
        left: auto;
    }
}
