:root {
    --color-text: #262626;
}

.whychooseus-paragraph {
    font-weight: bold;
    color: var(--color-text);
}

.logo-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    height: 100%;
    width: 50%;
}

.chooseus-span {
    font-weight: normal;
}

.footer-logo {
    width: 150px;
    height: 150px;
}
.footer-wiget-menu.logo {
    padding-top: 0px;
}

.footer-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.service-area-service-page h4 {
    line-height: 1.2;
}

/* Team Area Styles */
.team-area {
    background-color: #f9f9f9;
    position: relative;
}

.section-padding {
    padding: 50px 0;
}

.section-title.center {
    text-align: center;
    margin-bottom: 40px;
}

.section-title.center h4 {
    color: #0070d4;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title.center h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.section-title.center p {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.single-team-box {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-team-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* transition: transform 0.5s ease; */
}

/* .single-team-box:hover .team-image img {
    transform: scale(1.05);
} */

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 112, 212, 0.9);
    padding: 12px 0;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.single-team-box:hover .team-social {
    bottom: 0;
    opacity: 1;
}

.team-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: #ffffff;
    color: #0070d4;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

.team-info {
    padding: 15px 10px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    line-height: 10px;
    font-weight: 600;
}

.team-info span {
    display: block;
    color: #0070d4;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
}

.team-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-title.center h1 {
        font-size: 30px;
    }

    .team-image {
        height: 250px;
    }
}

@media screen and (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title.center {
        margin-bottom: 40px;
    }

    .section-title.center h1 {
        font-size: 26px;
    }

    .single-team-box {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}
