/* HERO */

/* FULL PAGE BACKGROUND TINT */

body::before{

content:"";
position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.65);

z-index:-1;

pointer-events:none;

}

.education-hero{

padding:160px 0 120px;
text-align:center;
position:relative;

}

.hero-title{

font-size:clamp(3rem,5vw,4.5rem);
margin-bottom:20px;

background:linear-gradient(
90deg,
#fff,
#ff6b6b,
#fff
);

background-size:200%;

-webkit-background-clip:text;
color:transparent;

animation:headingGlow 6s linear infinite;

}

.hero-title span{
color:#ff6b6b;
}

.hero-subtext{

max-width:650px;
margin:auto;
color:#c7c7c7;
line-height:1.8;

}

@keyframes headingGlow{

0%{background-position:0%}
100%{background-position:200%}

}



/* MAIN */

.education-main{
padding:120px 0;
}


/* TIMELINE */

.timeline{

position:relative;
max-width:800px;
margin:auto;
padding-left:40px;

}

.timeline::before{

content:"";
position:absolute;

left:8px;
top:0;
bottom:0;

width:3px;

background:linear-gradient(
180deg,
#b74b4b,
#ff6b6b
);

box-shadow:
0 0 10px #b74b4b,
0 0 20px rgba(183,75,75,.6);

}


/* ITEM */

.timeline-item{

position:relative;
margin-bottom:70px;

opacity:0;
transform:translateY(60px);
transition:.7s ease;

}

.timeline-item.show{

opacity:1;
transform:translateY(0);

}


/* DOT */

.timeline-dot{

position:absolute;
left:-3px;
top:18px;

width:18px;
height:18px;

border-radius:50%;

background:#ff6b6b;

box-shadow:
0 0 10px #ff6b6b,
0 0 25px rgba(183,75,75,.7);

}


/* CARD */

.timeline-card{

background:rgba(15,15,15,.9);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

padding:30px;

backdrop-filter:blur(10px);

box-shadow:0 20px 40px rgba(0,0,0,.55);

transition:.35s;

}

.timeline-card:hover{

transform:translateX(10px) scale(1.03);

box-shadow:
0 0 20px rgba(183,75,75,.6),
0 30px 60px rgba(0,0,0,.7);

}


/* ICON */

.edu-icon{

width:55px;
height:55px;

border-radius:14px;

display:flex;
align-items:center;
justify-content:center;

background:rgba(183,75,75,.12);
border:1px solid rgba(183,75,75,.3);

margin-bottom:16px;

}

.edu-icon i{

font-size:1.4rem;
color:#ff6b6b;

text-shadow:
0 0 10px #ff6b6b,
0 0 20px rgba(255,107,107,.7);

}


/* TEXT */

.timeline-card h2{

margin-bottom:5px;
font-size:1.4rem;

}

.edu-date{

display:block;
margin-bottom:10px;

color:#ff6b6b;
font-size:.9rem;

}

.timeline-card p{

color:#c7c7c7;
line-height:1.7;
margin-bottom:15px;

}


/* SKILLS */

.edu-skills{

list-style:none;
display:flex;
flex-direction:column;
gap:6px;

font-size:.9rem;
color:#aaa;

}

.edu-skills li{

position:relative;
padding-left:18px;

}

.edu-skills li::before{

content:"•";
position:absolute;
left:0;

color:#ff6b6b;

}


/* MOBILE */

@media(max-width:768px){

.timeline{
padding-left:25px;
}

}