/* Hero Style */
.about-hero {
padding: 180px 0 100px;
background: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

/* Experience Badge */
.experience-badge-circle {
width: 300px;
height: 300px;
border: 1px dashed var(--indigo);
border-radius: 50%;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
animation: rotateDashed 20s linear infinite;
}

.experience-badge-circle .year {
font-size: 4rem;
font-weight: 900;
color: var(--indigo);
}

.experience-badge-circle .text {
letter-spacing: 5px;
font-size: 0.8rem;
color: #64748b;
}

@keyframes rotateDashed {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

/* Skill Cards */
.skill-card {
background: white;
padding: 40px;
border-radius: 30px;
transition: 0.3s;
text-align: center;
height: 100%;
border: 1px solid #e2e8f0;
}

.skill-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.skill-card i {
font-size: 2.5rem;
color: var(--indigo);
margin-bottom: 20px;
display: block;
}

/* Contact Social Buttons */
.social-btn {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
color: white;
text-decoration: none;
transition: 0.3s;
font-size: 1.2rem;
}

.instagram { background: #E1306C; }
.telegram { background: #0088cc; }
.whatsapp { background: #25D366; }
.linkedin { background: #0077b5; }

.social-btn:hover {
transform: scale(1.1);
color: white;
filter: brightness(1.1);
}

.contact-links li {
display: flex;
align-items: center;
}
