/* New Hero Section Styles */
:root {
    --lime-accent: #38bdf8;
    /* Primary Blue replacing Lime Green */
}

.hero-section {
    padding-top: 15vh;
    padding-bottom: 5vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Left Column */
.hero-name {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--lime-accent);
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-link {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.hero-link:hover {
    color: var(--lime-accent);
}

/* Center Column */
.image-wrapper {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid rgba(255, 255, 255, 0.05);
    background: var(--glass-bg);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Column */
.stats-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-row {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Bottom Text */
.hero-bottom-text {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime-accent);
    margin-top: 50px;
    letter-spacing: 2px;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-name {
        font-size: 3rem;
    }

    .stats-card {
        max-width: 400px;
        margin: 0 auto;
    }
}