
.medical-hero {
    min-height: 85vh;
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* CONTENT */
.hero-content {
    margin: 0 auto;
    text-align: center;
    animation: fadeSlide 1.2s ease forwards;
}


/* BADGE */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

/* TITLE */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-title span {
    color: #ffd166;
}

/* TEXT */
.hero-text {
    max-width: 600px;
    margin: 22px 0 34px;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* BUTTON */
.hero-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.hero-btn:hover i {
    transform: translateX(6px);
}

/* GLOW SHAPES */
.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.45;
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.glow-1 {
    background: #ffffff;
    top: 15%;
    left: 10%;
}

.glow-2 {
    background: #ffd166;
    bottom: 10%;
    right: 15%;
}

/* ANIMATIONS */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGlow {
    from { transform: translateY(0); }
    to { transform: translateY(-40px); }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .medical-hero {
        min-height: auto;
        padding: 80px 0;
    }
}
