




/* SECTION */
.experience-section {
    padding: 40px 20px 100px; /* 🔥 reduced top gap */
    position: relative;
    overflow: hidden;
}

/* REMOVE RANDOM GREEN LINE FROM GLOBAL */
.section-title::after {
    display: none !important;
}

/* BACKGROUND GLOW */
.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
    filter: blur(90px);
    top: 20%;
    left: 30%;
    z-index: 0;
}



/* TITLE */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 40px;
}

/* VERTICAL LINE ✅ FIXED */
.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.15);
}

/* ITEM */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

/* DOT ✅ PERFECTLY ALIGNED */
/* .timeline-dot {
    position: absolute;
    left: 11px;
    top: 15px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(34,197,94,0.7);
} */

/* CARD */
.experience-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);

    padding: 30px;
    border-radius: 16px;

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);

    transition: 0.3s ease;

    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

/* HOVER */
.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34,197,94,0.5);
    box-shadow: 0 25px 70px rgba(34,197,94,0.2);
}

/* TOP */
.exp-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.exp-top img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

/* TEXT */
.exp-company {
    font-size: 14px;
    color: #94a3b8;
}

.exp-date {
    font-size: 13px;
    color: #64748b;
    display: block;
    margin-bottom: 10px;
}

.exp-desc {
    color: #cbd5f5;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* LIST */
.exp-points {
    padding-left: 18px;
}

.exp-points li {
    margin-bottom: 6px;
    font-size: 14px;
}

/* HIGHLIGHT */
.highlight {
    color: #22c55e;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .timeline {
        padding-left: 20px;
    }

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

    .timeline-dot {
        left: 3px;
    }
}


