@import url('./projects.css');

.about-hero-card {
    background-color: #1a1a2e;
    border: 1px solid #3a2a6e;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-card:hover {
    border-color: #7d46ff;
    box-shadow: 0 0 20px rgba(125, 70, 255, 0.2);
}

.about-hero-card .btn-outline-light {
    border: 2px solid #7d46ff;
}

.about-hero-card .btn-outline-light:hover {
    border-color: #ffffff;
}

.about-hero-card .role-badge {
    display: inline-block;
    background-color: rgba(125, 70, 255, 0.15);
    color: #dacbff;
    border: 1px solid #7d46ff;
    padding: 0.4rem 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.about-hero-card .lead-line {
    color: #b9b0d6;
    font-size: 1.15rem;
    max-width: 850px;
    line-height: 1.6;
}

.about-card {
    background-color: #1a1a2e;
    border: 1px solid #3a2a6e;
    border-radius: 0;
    padding: 1.75rem;
    height: 100%;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: #7d46ff;
    box-shadow: 0 8px 24px rgba(125, 70, 255, 0.15);
}

.about-card h5 {
    color: #7d46ff;
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.about-card ul li {
    padding: 0.4rem 0;
    color: #cfc6ec;
    text-align: left;
    display: flex;
    align-items: center;
}

.about-card ul li i {
    color: #7d46ff;
    margin-right: 0.65rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    background-color: #241a45;
    color: #dacbff;
    border: 1px solid #7d46ff;
    padding: 0.35rem 0.85rem;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.skill-chip:hover {
    background-color: #7d46ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.about-link {
    color: #dacbff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #7d46ff;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.about-link:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: rgba(125, 70, 255, 0.15);
    transform: translateX(4px);
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(36, 26, 69, 0.6);
    border: 1px solid #3a2a6e;
    color: #dacbff;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link-btn:hover {
    background-color: #7d46ff;
    color: #fff;
    border-color: #7d46ff;
}

.link-btn i.arrow-icon {
    transition: transform 0.2s ease;
}

.link-btn:hover i.arrow-icon {
    transform: translateX(4px);
}