body {
    font-family: 'Segoe UI', sans-serif;
}

/* Hero */
.hero-section {
    background-color: #1a1a2e;
    padding-top: 80px;
}

.hero-badge {
    background-color: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.4);
    font-weight: 400;
}

.text-indigo {
    color: #818cf8;
}

.btn-indigo {
    background-color: #6366f1;
    color: #fff;
    border: none;
}

.btn-indigo:hover {
    background-color: #4f46e5;
    color: #fff;
}

/* Skills */
.skill-card {
    border: 0.5px solid var(--bs-border-color);
    border-radius: 10px;
    transition: transform 0.2s;
}

.skill-card:hover {
    transform: translateY(-3px);
}

/* Progetti */
.project-card {
    border-radius: 12px;
    border: 0.5px solid var(--bs-border-color);
    overflow: hidden;
    transition: transform 0.2s;
}

.project-card:hover {
    transform: translateY(-3px);
}

.project-card-header {
    background-color: #e0e7ff;
    height: 90px;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 24px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 14px;
    bottom: 0;
    width: 1px;
    background-color: var(--bs-border-color);
}

.timeline-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.dot-active {
    background-color: #6366f1;
}

.dot-inactive {
    background-color: var(--bs-border-color);
}

.letter-spacing-wide {
    letter-spacing: 1.5px;
}
/* About avatar */
.about-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.2);
    border: 2px solid rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    font-size: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress bar colore indigo */
.bg-indigo {
    background-color: #6366f1 !important;
}
.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: rgba(99, 102, 241, 0.1);
    border: 0.5px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.about-avatar-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(99, 102, 241, 0.4);
}