.contact-hero {
    padding: 140px 8% 100px;
    text-align: center;
    display: flex;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(1, 119, 191, 0.12));
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    left: auto;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 119, 191, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-tag {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 1px;
    color: #2B7CFF;
    /* #0177BF;  */
    font-size: 20px;
    font-weight: 700;

}

.contact-title {
    font-size: 90px;
    line-height: 0.95;
    font-weight: 900;
    /*  color:#1a1a1a; */
    margin-bottom: 30px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px #000;
}

.filled-black {
    color: #1a1a1a;
}

.outline-orange {
    color: transparent !important;
    -webkit-text-stroke: 2px #c5141b !important;
}

.filled-orange {
    color: #2B7CFF;
    /* #0177BF; */
}

/* == process-content-heading  animation == */
.hero-content-heading {
    opacity: 0;
    transform: translate3d(0, 70px, 0) scale(0.95);
    filter: blur(10px);
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content-heading.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

/* ================= OUR STORY ================= */
.story-section {
    padding: 90px 0;
    background: #fff;
}

.story-desc {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ================= VALUES SECTION ================= */
.values-section {
    padding: 90px 0;
    background: #FAFAFA;
}

.value-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    transition: 0.3s;
}

.value-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(1, 119, 191, 0.1);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(1, 119, 191, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 20px;
    transition: 0.3s;
}

.value-card:hover .value-icon {
    background: var(--blue);
    color: #fff;
}

.value-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.92rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ================= TEAM SECTION ================= */
.team-section {
    padding: 90px 0;
    background: #fff;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-item {
    display: flex;
    gap: 28px;
    background: #FAFAFA;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 28px;
    transition: 0.3s;
    align-items: center;
}

.team-item:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 35px rgba(1, 119, 191, 0.08);
}

.team-photo {
    width: 140px;
    height: 140px;
    min-width: 140px;
    border-radius: 16px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.team-role {
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.team-social a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .team-item {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }

    .team-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .value-card {
        padding: 24px 20px;
    }
}