/* ==================================================
   TEAM HERO SECTION
================================================== */

.dr1059heroteam {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background:
        radial-gradient(circle at top left,
            rgba(212, 175, 55, 0.12),
            transparent 40%),
        radial-gradient(circle at bottom right,
            rgba(30, 58, 138, 0.18),
            transparent 50%),
        linear-gradient(135deg,
            #07121f,
            #0f1d33 40%,
            #081018);
}

.dr1059heroteam-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.15)
        );
}

.dr1059heroteam-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 650px;
    gap: 70px;
    align-items: center;
}

.dr1059heroteam-content {
    color: #fff;
}

.dr1059heroteam-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.15);

    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #f2d27d;
}

.dr1059heroteam h1 {
    margin-top: 25px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
}

.dr1059heroteam h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #d4af37,
        #f7df8a,
        #d4af37
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dr1059heroteam p {
    margin-top: 25px;
    max-width: 650px;
    color: rgba(255,255,255,.82);
    line-height: 1.9;
    font-size: 1.05rem;
}

.dr1059heroteam-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.dr1059heroteam-stats div {
    min-width: 170px;

    padding: 25px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.04)
        );

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);
}

.dr1059heroteam-stats strong {
    display: block;
    font-size: 2rem;
    color: #f2d27d;
}

.dr1059heroteam-stats span {
    color: rgba(255,255,255,.8);
}

.dr1059heroteam-image {
    position: relative;
}

.dr1059heroteam-image::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.45),
            transparent 70%
        );

    filter: blur(60px);

    top: -50px;
    right: -40px;

    z-index: 1;
}

.dr1059heroteam-imagecard {
    position: relative;
    z-index: 2;

    border-radius: 40px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.05)
        );

    padding: 12px;

    border: 1px solid rgba(255,255,255,.18);

    backdrop-filter: blur(20px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.45);
}

.dr1059heroteam-imagecard img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

/* Floating glossy effect */

.dr1059heroteam-imagecard {
    animation: dr1059float 6s ease-in-out infinite;
}

@keyframes dr1059float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */

@media (max-width: 991px) {

    .dr1059heroteam-container {
        grid-template-columns: 1fr;
    }

    .dr1059heroteam-image {
        order: -1;
    }

    .dr1059heroteam-imagecard img {
        height: 450px;
    }

    .dr1059heroteam {
        padding: 80px 20px;
    }

    .dr1059heroteam h1 {
        font-size: 2.5rem;
    }

}