/* ===============================
   TEAM ONE SECTION
================================= */
.team-one {
    position: relative;
    padding: 80px 0;
    background-color: #f7f9fc;
}

.team-one__inner {
    position: relative;
}

.team-one__single {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-one__single:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ===============================
   IMAGE
================================= */
.team-one__img-box {
    position: relative;
    overflow: hidden;
}

.team-one__img img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.08);
}

/* ===============================
   CONTENT
================================= */
.team-one__content {
    padding: 25px 20px 30px;
}

.team-one__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-one__name a {
    color: #0a1d37;
    text-decoration: none;
}

.team-one__name a:hover {
    color: #1c6ae4;
}

.team-one__sub-title {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* ===============================
   SOCIAL ICONS
================================= */
.team-one__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-one__single:hover .team-one__social {
    opacity: 1;
    transform: translateY(0);
}

.team-one__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1c6ae4;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s ease;
}

.team-one__social a:hover {
    background: #0a1d37;
}

/* ===============================
   DECORATIVE SHAPES
================================= */
[class^="team-one__shape-"] {
    position: absolute;
    z-index: 1;
}

.team-one__shape-1 { top: -20px; left: -20px; }
.team-one__shape-2 { top: -15px; right: -15px; }
.team-one__shape-3 { bottom: 80px; left: -25px; }
.team-one__shape-4 { top: 60px; right: -25px; }
.team-one__shape-5 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.team-one__shape-6 { bottom: -25px; right: -25px; }

[class^="team-one__shape-"] img {
    max-width: 80px;
    opacity: 0.15;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 767px) {
    .team-one {
        padding: 50px 0;
    }

    .team-one__content {
        padding: 20px;
    }
}
