.hero {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.greeting {
    font-size: 22px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.hero-content {
    flex: 1;
    align-items: stretch;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 380px;
    border-radius: 24px;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #d1d5db;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-buttons a {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-buttons a:first-child {
    background: #3b82f6;
    color: white;
}

.hero-buttons a:first-child:hover {
    background: #2563eb;
}

.hero-buttons a:last-child {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.hero-buttons a:last-child:hover {
    background: #3b82f6;
    color: white;
}

.about-me {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
    line-height: 1.8;
    border-radius: 10px;

}

.resume-download-btn {
    justify-content: center;
    text-align: center;
    display: block;
    width: 180px;
    margin: 15px auto 0;
    padding: 12px 20px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ;
}

.resume-download-btn:hover {
    background: #2563eb;

}


.skills {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}

.skills > h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

.skill-category {
    margin-bottom: 50px;
}

.skill-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #3b82f6;
}

.skills-container {
    direction: ltr;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 20px;
    border: 1px solid #2d3748;
    border-radius: 16px;
    background: #111827;
    transition: 0.3s;
}

@media (hover: hover) {
    .skill-card:hover {
        transform: translateY(-5px);
        border-color: #3b82f6;
    }
}

.skill-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 15px;
}

.skill-card span {
    font-size: 16px;
    font-weight: 400;
}

/* =========================================
   Work Status Section
========================================= */

.work-status-section {
    width: 100%;
    margin: 80px 0;
    padding: 0 20px;
}

.work-status-container {
    max-width: 900px;
    margin: 0 auto;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 30px 35px;
    border: 1px solid #2d3748;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.work-status-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.status-label {
    display: block;
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.work-status-content h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.work-status-content p {
    margin: 0;
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================
   Work Status Lamp
========================================= */
.status-lamp {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}


/* =========================================
   SVG
========================================= */

.status-lamp svg {
    width: 58px;
    height: 58px;
    overflow: visible;
}


/* =========================================
   Lamp Bulb
========================================= */

.lamp-bulb {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill 0.3s ease,
    stroke 0.3s ease;
}


/* =========================================
   Lamp Base
========================================= */

.lamp-base {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke 0.3s ease;
}


/* =========================================
   Lamp Glow
========================================= */

.lamp-glow {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    opacity: 0;
}


/* =========================================
   🟢 AVAILABLE
========================================= */

.status-lamp.status-available {
    color: #facc15;
    animation: availableLamp 2.5s ease-in-out infinite;
}


.status-lamp.status-available .lamp-bulb {
    fill: rgba(250, 204, 21, 0.12);
}


.status-lamp.status-available .lamp-glow {
    opacity: 0.25;
    animation: glowAvailable 2.5s ease-in-out infinite;
}


/* Lamp movement */

@keyframes availableLamp {

    0%,
    100% {
        transform: scale(1);

        filter: drop-shadow(
                0 0 4px rgba(250, 204, 21, 0.35)
        );
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(
                0 0 18px rgba(250, 204, 21, 0.8)
        );
    }
}


/* Lamp glow */

@keyframes glowAvailable {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.5;
    }
}


/* =========================================
   🟠 BUSY
========================================= */

.status-lamp.status-busy {
    color: #f59e0b;
    animation: busyLamp 1.8s ease-in-out infinite;
}


.status-lamp.status-busy .lamp-bulb {
    fill: rgba(245, 158, 11, 0.08);
}


.status-lamp.status-busy .lamp-glow {
    opacity: 0.15;
    animation: glowBusy 1.8s ease-in-out infinite;
}


/* Busy animation */

@keyframes busyLamp {

    0%,
    100% {
        opacity: 1;

        filter: drop-shadow(
                0 0 10px rgba(245, 158, 11, 0.6)
        );
    }

    50% {
        opacity: 0.45;

        filter: drop-shadow(
                0 0 2px rgba(245, 158, 11, 0.15)
        );
    }
}


@keyframes glowBusy {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.35;
    }
}


/* =========================================
   🔴 UNAVAILABLE
========================================= */

.status-lamp.status-unavailable {
    color: #ef4444;

    opacity: 0.45;
}


.status-lamp.status-unavailable .lamp-bulb {
    fill: rgba(239, 68, 68, 0.04);
}


.status-lamp.status-unavailable .lamp-glow {
    opacity: 0;
}

.hero-animated-text h2,
.hero-animated-text p {
    opacity: 0;
    transform: translateY(15px);

    transition: opacity 0.5s ease,
    transform 0.5s ease;
}


.hero-animated-text h2.show,
.hero-animated-text p.show {
    opacity: 1;
    transform: translateY(0);
}