.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(240,240,245,0.7) 50%, rgba(230,230,240,0.7) 100%);
    backdrop-filter: blur(20px);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0,113,227,0.12) 0%, rgba(255,255,255,0) 50%),
    radial-gradient(circle at 80% 80%, rgba(52,199,89,0.12) 0%, rgba(255,255,255,0) 50%),
    radial-gradient(circle at 50% 50%, rgba(255,45,85,0.08) 0%, rgba(255,255,255,0) 60%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;

    padding: 0 24px;
    max-width: 2000px;
}

.hero-left {
    --flex: 1;
    padding-right: 100px;
}

.hero-name {
    font-size: max(5.5vw, 40px);
    color: white;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-color) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--subtle-color);
    margin-bottom: 32px;
    max-width: 80%;
}



.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bubble-cluster {
    position: relative;
    width: 340px;
    height: 340px;
}

.profile-bubble-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

.bubble-bg-1 {
    width: 280px;
    height: 280px;
    background-color: rgba(0, 113, 227, 0.15);
    top: 40px;
    left: -30px;
    animation: floatBubble1 15s ease-in-out infinite;
}

.bubble-bg-2 {
    width: 240px;
    height: 240px;
    background-color: rgba(52, 199, 89, 0.15);
    top: 10px;
    right: -20px;
    animation: floatBubble2 25s ease-in-out infinite;
}

.profile-bubble-main {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    top: 40px;
    left: 40px;
    overflow: hidden;
    z-index: 2;
    border: 8px solid rgba(255, 255, 255, 0.8);
    animation: floatBubble3 20s ease-in-out infinite;
}

.profile-bubble-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes floatBubble1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-15px, 15px); }
    66% { transform: translate(10px, -10px); }
}

@keyframes floatBubble2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(15px, -10px); }
    66% { transform: translate(-10px, 15px); }
}

@keyframes floatBubble3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
}

/* Responsive Styles */
@media (max-width: 768px) {

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        padding: 24px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-left {
        padding-right: 0px;
    }
    .hero-name {
        font-size: 14vw;
    }

    .hero-ctas {
        justify-content: center;
    }

    .bubble-1, .bubble-6 {
        display: none;
    }

    .bubble-3 {
        left: 50%;
        top: 30%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 14vw;
    }

    .bubble-cluster {
        transform: scale(0.7);
        width: 260px;
        height: 260px;
    }

    .profile-bubble-main {
        width: 200px;
        height: 200px;
        left: 30px;
    }
}