/* About Section Main Wrapper */
.about-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--deep-gray);
    padding: 100px 0;
    overflow: hidden;
}

/* Container Width 85% on PC */
.about-container {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Sab kuch center karne k liye */
    text-align: center;
}

/* About Me Title */
.about-me-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--subtle-gray);
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-me-title:hover {
    color: #ff0000;
    letter-spacing: 15px;
    /* Smooth spacing expansion */
}

/* Main Heading V2 Fix */
.main-heading-v2 {
    font-size: clamp(2.2rem, 4vw, 5.2rem);
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 29px;
    transition: all 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-heading-v2:hover {
    color: #ff0000;
    transform: scale(1.05);
}
 

/* Sub-Heading (Julian Vance) - Center & Transition */
.vance-sub-heading {
    width: 100%;
    /* Full width behavior */
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--subtle-gray);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.7;
    cursor: default;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect for sub-heading */
.vance-sub-heading:hover {
    color: #ffffff;
    opacity: 1;
    letter-spacing: 10px;
    /* Jaisa aapne kaha, spacing transition */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Narrative Text Content */
.vance-story {
    max-width: 900px;
    /* Reading ease k liye width control */
    margin: 0 auto 50px;
}

.vance-story p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.vance-story:hover p {
    color: #ffffff;
}

/* Skills Grid Center */
.vance-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}


/* Core Tools Section Container */
.vance-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    transition: all 0.5s ease;
}

/* "Core Tools" Label Animation */
.tools-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--subtle-gray);
    margin-bottom: 25px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover par Label Red aur Expand hoga */
.vance-tools:hover .tools-label {
    color: #ff0000;
    letter-spacing: 8px;
    transform: translateY(-5px);
}

/* Skills Container */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
}

/* Individual Skill Pill (Tag) Animation */
.skill-pill {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--subtle-gray);
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: default;
    /* Smooth transition for hover */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

strong {
    color: #ff0000;
    font-weight: 600;
    transition: color 0.5s ease;
}

/* Skill Pill Hover Effect */
.skill-pill:hover {
    color: #ffffff;
    background: rgba(255, 0, 0, 0.05);
    border-color: #ff0000;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.15);
}

/* Shine effect on hover (Optional High-end touch) */
.skill-pill::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.skill-pill:hover::after {
    opacity: 1;
}

/* Staggered Entrance Animation (Jab page load ho ya section reveal ho) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-pill {
    animation: fadeInUp 0.8s ease backwards;
}

/* Har pill ko thora late animate karne k liye (Stagger effect) */
.skill-pill:nth-child(1) {
    animation-delay: 0.1s;
}

.skill-pill:nth-child(2) {
    animation-delay: 0.2s;
}

.skill-pill:nth-child(3) {
    animation-delay: 0.3s;
}

.skill-pill:nth-child(4) {
    animation-delay: 0.4s;
}

.skill-pill:nth-child(5) {
    animation-delay: 0.5s;
}