.medical-hero-4b2a85e1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
    font-family: 'Inter', sans-serif;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.medical-hero-4b2a85e1 .hero-left {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}
.medical-hero-4b2a85e1 .hero-right {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1.2s ease-out forwards;
    opacity: 0;
}
.medical-hero-4b2a85e1 .badge {
    display: inline-block;
    background: rgba(10, 94, 176, 0.1);
    color: #0A5EB0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}
.medical-hero-4b2a85e1 h1 {
    font-size: 56px;
    color: #111;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
}
.medical-hero-4b2a85e1 p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.6s;
}
.medical-hero-4b2a85e1 .btn-group {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.8s;
}
.medical-hero-4b2a85e1 .btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-block;
}
.medical-hero-4b2a85e1 .btn-primary {
    background: #239322;
    color: #fff;
    box-shadow: 0 10px 20px rgba(10, 94, 176, 0.2);
}
.medical-hero-4b2a85e1 .btn-primary:hover {
    background: #084a8c;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(10, 94, 176, 0.4);
}
.medical-hero-4b2a85e1 .btn-secondary {
    background: #fff;
    color: #0A5EB0;
    border: 2px solid #0A5EB0;
}
.medical-hero-4b2a85e1 .btn-secondary:hover {
    background: #28a745;
    color: #ffffff;
    border-color: #28a745;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}
.medical-hero-4b2a85e1 .hero-img-wrap {
    position: relative;
    animation: floatImage 8s ease-in-out infinite;
}
.medical-hero-4b2a85e1 .hero-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}
.medical-hero-4b2a85e1 .hero-img:hover {
    transform: scale(1.03);
}
.medical-hero-4b2a85e1 .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A5EB0 0%, #4db8ff 100%);
    opacity: 0.1;
    z-index: 1;
}
.medical-hero-4b2a85e1 .shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: floatShape1 15s linear infinite;
}
.medical-hero-4b2a85e1 .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 40%;
    animation: floatShape2 12s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes floatImage {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes floatShape1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-30px, 30px) rotate(120deg) scale(1.1); }
    66% { transform: translate(20px, -20px) rotate(240deg) scale(0.9); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}
@keyframes floatShape2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.2); }
}

@media (max-width: 992px) {
    .medical-hero-4b2a85e1 {
        flex-direction: column;
        padding: 60px 5%;
        text-align: center;
    }
    .medical-hero-4b2a85e1 .hero-left {
        max-width: 100%;
        animation: fadeInUp 1s ease-out forwards;
    }
    .medical-hero-4b2a85e1 .hero-right {
        animation: fadeInUp 1.2s ease-out forwards;
    }
    .medical-hero-4b2a85e1 h1 {
        font-size: 40px;
    }
    .medical-hero-4b2a85e1 .btn-group {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .medical-hero-4b2a85e1 h1 {
        font-size: 32px;
    }
    .medical-hero-4b2a85e1 p {
        font-size: 16px;
    }
    .medical-hero-4b2a85e1 .btn-group {
        flex-direction: column;
    }
}