/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050505;
    --bg-secondary: #0f0f0f;
    --bg-elevated: #161616;

    --text-primary: #f5f5f5;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;

    --accent: #ededed;
    --border-color: #27272a;
    --border-hover: #3f3f46;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom minimal scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* --- Typography & Basics --- */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Layouts */
.section {
    padding: 120px 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 5vw;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-orb {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #f5f5f5, #a1a1aa);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    animation: pulseOrb 2s infinite alternate;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

@keyframes pulseOrb {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    }

    100% {
        transform: scale(1.15);
        box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-resume-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.nav-resume-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    color: #fff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-primary);
}

/* --- Buttons --- */
.action-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: #d4d4d8;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 100px 5vw 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    max-width: 100%;
}

.greeting {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    white-space: nowrap;
}

.bio {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

/* --- Hero Visual & Code Window --- */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    background: rgba(59, 130, 246, 0.3);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    background: rgba(168, 85, 247, 0.2);
    bottom: -10%;
    right: -10%;
    animation-delay: -3s;
}

.code-window {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    background: #0d0d12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.code-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mac-dot.red {
    background: #ff5f56;
}

.mac-dot.yellow {
    background: #ffbd2e;
}

.mac-dot.green {
    background: #27c93f;
}

.code-body {
    padding: 2rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.7;
    overflow-x: auto;
    color: #abb2bf;
}

.code-keyword {
    color: #c678dd;
}

.code-variable {
    color: #e5c07b;
}

.code-operator {
    color: #56b6c2;
}

.code-property {
    color: #e06c75;
}

.code-string {
    color: #98c379;
}

.code-method {
    color: #61afef;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- Modern Experience Section --- */
.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), rgba(255, 255, 255, 0.05));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: -2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid #3b82f6;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    z-index: 2;
}

.timeline-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.exp-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.role-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 0.3rem;
}

.company-name-modern {
    font-size: 1.05rem;
    color: #60a5fa;
    font-weight: 500;
}

.company-location {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.exp-date-modern {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.exp-desc-modern {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.exp-list-modern {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.exp-list-modern li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.exp-list-modern li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #60a5fa;
    font-family: var(--font-main);
    font-weight: 600;
}

.tech-stack-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.tech-stack-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Inline Tech Stack Tags */
.tech-stack-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-stack-inline span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tech-stack-inline span i {
    font-size: 1rem;
}

.tech-stack-inline span:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* --- Skills Section --- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-group {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.skill-group h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.tag i {
    font-size: 1.2rem;
}

.tag:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    transform: translateY(-2px);
}

/* --- Projects Section --- */
.projects-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-image {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid var(--border-color);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.project-image:hover img {
    transform: scale(1.05);
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.project-content h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-lead {
    font-size: 1.35rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.highlight-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.highlight-item h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
}

.about-image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(10%) contrast(110%);
}

.about-image-card:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(100%);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    padding-bottom: 40px;
    margin-top: 40px;
}

.footer-top {
    margin-bottom: 6rem;
}

.footer-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: var(--text-primary);
    max-width: 600px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo-area p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--text-primary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 140px;
        gap: 3rem;
        text-align: center;
    }

    .section-heading,
    .section-subtitle {
        text-align: center;
    }
    
    .projects-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .experience-badge {
        bottom: 20px;
        right: 10px;
    }

    .footer-top {
        text-align: center;
    }

    .footer-title {
        margin: 0 auto 2rem auto;
    }

    .hero-title, .hero-subtitle { white-space: normal; word-break: break-word; overflow-wrap: break-word; }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .action-btns {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }

    .action-btns .btn {
        width: auto;
    }

    .code-window { transform: none; text-align: left; }
}

@media (max-width: 835px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 2rem 5vw;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
        grid-template-columns: 1fr 1fr;
    }

    .nav-links.active {
        display: grid;
    }

    .nav-links a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bg-elevated);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .nav-links a:active {
        background: var(--border-hover);
        transform: scale(0.98);
    }

    .right {
        gap: 1rem;
    }

    .nav-resume-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .menu-toggle {
        display: block;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .footer-socials {
        gap: 1rem;
    }

    .action-btns {
        flex-direction: column;
        width: 100%;
    }

    .action-btns .btn {
        width: 100%;
    }

    .section {
        padding: 60px 5vw;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .skills-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .skill-group h3 {
        text-align: center;
    }

    .tags {
        justify-content: center;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .experience-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-dot {
        left: -1.5rem;
    }

    .exp-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .about-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 1rem;
    }

    .badge-number {
        font-size: 2rem;
    }
}

/* Utility Classes for decoupled inline styles */
.hidden-icon {
    display: none !important;
}

.highlight-text-italic {
    color: #f5f5f5 !important;
    font-style: italic !important;
}

.mb-3rem {
    margin-bottom: 3rem !important;
}

.icon-white {
    color: white !important;
}

.skills-subtitle {
    margin-top: -2rem !important;
    margin-bottom: 3rem !important;
    color: var(--text-secondary) !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.pb-2rem {
    padding-bottom: 2rem !important;
}

.footer-action-btns {
    margin-top: 2rem !important;
    justify-content: center !important;
}
