/* ============================================================
   ABOUT US PAGE — UNIQUE DESIGN SYSTEM (ab- prefix)
   Built on top of the existing Techfruits tokens in style.css
   ============================================================ */

/* ---------- Local tokens (inherits root tokens from style.css) ---------- */
:root {
    --ab-teal: #1e9a84;
    --ab-teal-dark: #157a68;
    --ab-teal-glow: rgba(30, 154, 132, .14);
    --ab-orange: var(--tf-orange, #FF6B00);
    --ab-ink: var(--tf-black, #0A0A0A);
    --ab-grey: var(--tf-grey, #888888);
    --ab-line: rgba(10, 10, 10, .08);
    --ab-radius: 20px;
}

.ab-page { overflow-x: hidden; }

/* ============================================================
   1. PAGE BANNER — ab-banner (small breadcrumb banner)
   ============================================================ */
.ab-banner {
    position: relative;
    padding: 148px 0 44px;
    background: var(--ab-ink);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.ab-banner__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 92%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 92%);
    z-index: -2;
}

.ab-banner__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: -1;
    animation: ab-float 8s ease-in-out infinite;
}

.ab-banner__orb--1 {
    width: 340px;
    height: 340px;
    top: -160px;
    right: -60px;
    background: radial-gradient(circle, var(--ab-teal-glow) 0%, transparent 72%);
}

.ab-banner__orb--2 {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: 6%;
    background: radial-gradient(circle, rgba(255,107,0,.12) 0%, transparent 72%);
    animation-delay: -3s;
}

@keyframes ab-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.05); }
}

.ab-banner__inner { position: relative; z-index: 1; }

.ab-banner__crumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
}

.ab-banner__crumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: var(--tf-transition); }
.ab-banner__crumb a:hover { color: var(--ab-teal); }
.ab-banner__crumb i { font-size: .65rem; }
.ab-banner__crumb span { color: var(--ab-teal); }

.ab-banner__title {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0;
}

.ab-banner__title span {
    background: linear-gradient(90deg, var(--ab-teal), #5fd6bd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================================
   2. INTRO — ab-intro
   ============================================================ */
.ab-intro {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.ab-intro__title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.24;
    color: var(--ab-ink);
    margin-bottom: 20px;
    max-width: 560px;
}

.ab-intro__title em {
    font-style: normal;
    color: var(--ab-teal);
}

.ab-intro__text {
    color: var(--ab-grey);
    font-size: 1.02rem;
    line-height: 1.85;
    /* max-width: 540px; */
    margin-bottom: 26px;
    text-align: justify;
}

.ab-intro__points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-intro__point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ab-ink);
}

.ab-intro__point i { color: var(--ab-teal); font-size: 1.05rem; }

.ab-intro__visual {
    position: relative;
    z-index: 1;
}

.ab-intro__frame {
    position: relative;
    border-radius: 62% 38% 53% 47% / 48% 41% 59% 52%;
    overflow: hidden;
    border: 1px solid var(--ab-line);
    box-shadow: 0 30px 70px rgba(10,10,10,.14);
    transition: border-radius .6s cubic-bezier(.4,0,.2,1);
}

.ab-intro__visual:hover .ab-intro__frame {
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
}

.ab-intro__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2.3;
    transition: transform .6s ease;
}

.ab-intro__visual:hover .ab-intro__frame img { transform: scale(1.06); }

.ab-intro__ring {
    position: absolute;
    inset: -22px;
    border: 1.5px dashed rgba(30, 154, 132, .45);
    border-radius: 62% 38% 53% 47% / 48% 41% 59% 52%;
    animation: ab-spin 26s linear infinite;
    pointer-events: none;
}

@keyframes ab-spin {
    to { transform: rotate(360deg); }
}

.ab-intro__badge {
    position: absolute;
    left: -18px;
    bottom: 24px;
    background: #fff;
    color: var(--ab-ink);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 210px;
    transition: var(--tf-transition);
}

.ab-intro__visual:hover .ab-intro__badge {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,.22);
}

.ab-intro__badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--ab-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.ab-intro__badge strong {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.25;
}

.ab-intro__badge span {
    font-size: .74rem;
    color: var(--ab-grey);
}

/* ============================================================
   3. STATS STRIP — ab-stats
   ============================================================ */
.ab-stats {
    padding: 0 0 92px;
    background: #fff;
}

.ab-stat-card {
    position: relative;
    text-align: center;
    padding: 30px 18px;
    border-radius: var(--ab-radius);
    border: 1px solid var(--ab-line);
    background: #fff;
    height: 100%;
    transition: var(--tf-transition);
}

.ab-stat-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 44px rgba(10,10,10,.08);
}

.ab-stat-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: var(--ab-teal-glow);
    color: var(--ab-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--tf-transition);
}

.ab-stat-card:hover .ab-stat-card__icon {
    background: var(--ab-teal);
    color: #fff;
    transform: scale(1.08) rotate(-6deg);
}

.ab-stat-card__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ab-ink);
    margin: 0 0 4px;
}

.ab-stat-card__label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ab-grey);
}

/* ============================================================
   2. OUR TEAM — tf-team-section  (unique animated showcase)
   ============================================================ */
.tf-team-section {
    padding: 100px 0 96px;
    background: linear-gradient(180deg, #fbfbfa 0%, #f6f7f6 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* --- ambient floating orbs (reuses ab-float keyframe) --- */
.tf-team-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
    animation: ab-float 9s ease-in-out infinite;
}

.tf-team-bg--1 {
    width: 380px;
    height: 380px;
    top: -160px;
    left: -110px;
    background: radial-gradient(circle, var(--ab-teal-glow) 0%, transparent 72%);
}

.tf-team-bg--2 {
    width: 320px;
    height: 320px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 107, 0, .10) 0%, transparent 72%);
    animation-delay: -4s;
}

.tf-team-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(30, 154, 132, 0.16) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 0%, #000 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 60% 55% at 50% 0%, #000 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* --- heading --- */
.tf-team-heading {
    max-width: 640px;
    margin: 0 auto 58px;
    position: relative;
    z-index: 1;
}

.tf-team-heading__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ab-teal);
    background: var(--ab-teal-glow);
    padding: 7px 16px 7px 12px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.tf-team-heading__tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ab-teal);
    box-shadow: 0 0 0 3px var(--ab-teal-glow);
    display: inline-block;
}

.tf-team-heading__title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--ab-ink);
    margin: 0 0 14px;
}

.tf-team-heading__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ab-grey);
    margin: 0;
}

/* --- card shell --- */
.tf-team-card {
    --tf-mx: 50%;
    --tf-my: 50%;
    --tf-accent: var(--ab-teal);
    --tf-accent-glow: var(--ab-teal-glow);
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--ab-line);
    border-radius: var(--ab-radius);
    padding: 0 0 32px;
    overflow: hidden;
    text-align: center;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1),
                box-shadow .5s cubic-bezier(.2, .8, .2, 1),
                border-color .35s ease;
    will-change: transform;
}

.row .col-lg-4:nth-child(2) .tf-team-card,
.row .col-md-6:nth-child(2) .tf-team-card {
    --tf-accent: var(--ab-orange);
    --tf-accent-glow: rgba(255, 107, 0, .14);
}

.tf-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(10, 10, 10, .12);
    border-color: transparent;
}

/* top accent bar that draws in on hover */
.tf-team-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tf-accent), var(--ab-teal), var(--ab-orange));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
    z-index: 4;
}

.tf-team-card:hover::after {
    transform: scaleX(1);
    animation: tf-team-sheen 2.4s linear infinite;
}

@keyframes tf-team-sheen {
    to { background-position: -200% 0; }
}

/* cursor-tracking spotlight glow — repurposes the existing border element */
.tf-team-card__border {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(280px circle at var(--tf-mx) var(--tf-my), var(--tf-accent-glow), transparent 70%);
    transition: opacity .4s ease;
}

.tf-team-card:hover .tf-team-card__border { opacity: 1; }

/* --- image / photo frame --- */
.tf-team-card__image {
    position: relative;
    z-index: 2;
    margin: 0 0 26px;
    height: 260px;
    overflow: hidden;
    border-radius: var(--ab-radius) var(--ab-radius) 0 0;
    background: linear-gradient(160deg, #eef1f0, #e4e7e6);
}

.tf-team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(55%) contrast(1.02);
    transform: scale(1.06);
    transition: transform .6s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.tf-team-card:hover .tf-team-card__image img {
    transform: scale(1.14);
    filter: grayscale(0%) contrast(1.02);
}

/* soft gradient wash for legibility + mood, fades on hover */
.tf-team-card__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,.55) 100%);
    opacity: 1;
    transition: opacity .45s ease;
    z-index: 1;
}

.tf-team-card:hover .tf-team-card__image::before { opacity: .35; }

/* animated viewfinder corner brackets — reveal & draw in on hover */
.tf-team-card__image::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    pointer-events: none;
    border-radius: 10px;
    opacity: 0;
    transition: opacity .4s ease, inset .4s cubic-bezier(.2, .8, .2, 1);
    background:
        linear-gradient(var(--tf-accent), var(--tf-accent)) top left / 22px 3px no-repeat,
        linear-gradient(var(--tf-accent), var(--tf-accent)) top left / 3px 22px no-repeat,
        linear-gradient(var(--tf-accent), var(--tf-accent)) top right / 22px 3px no-repeat,
        linear-gradient(var(--tf-accent), var(--tf-accent)) top right / 3px 22px no-repeat,
        linear-gradient(var(--tf-accent), var(--tf-accent)) bottom left / 22px 3px no-repeat,
        linear-gradient(var(--tf-accent), var(--tf-accent)) bottom left / 3px 22px no-repeat,
        linear-gradient(var(--tf-accent), var(--tf-accent)) bottom right / 22px 3px no-repeat,
        linear-gradient(var(--tf-accent), var(--tf-accent)) bottom right / 3px 22px no-repeat;
}

.tf-team-card:hover .tf-team-card__image::after {
    opacity: 1;
    inset: 20px;
}

/* social bar slides up from the base of the photo on hover */
.tf-team-card__social {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    transform: translateY(115%);
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.tf-team-card:hover .tf-team-card__social { transform: translateY(0); }

.tf-team-card__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .95);
    color: var(--ab-ink);
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(10, 10, 10, .18);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.tf-team-card__social a:hover {
    background: var(--tf-accent);
    color: #fff;
    transform: translateY(-4px) scale(1.08);
}

/* --- content --- */
.tf-team-card__content {
    position: relative;
    z-index: 2;
    padding: 0 26px;
}

.tf-team-card__content h3 {
    font-size: 1.16rem;
    font-weight: 800;
    color: var(--ab-ink);
    margin: 0 0 8px;
}

.tf-team-card__content span {
    display: inline-block;
    position: relative;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--tf-accent);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

/* animated underline beneath the role label */
.tf-team-card__content span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--tf-accent);
    transform: translateX(-50%) scaleX(1);
    transition: width .4s ease;
}

.tf-team-card:hover .tf-team-card__content span::after { width: 54px; }

.tf-team-card__content p {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--ab-grey);
    margin: 0;
}

/* ============================================================
   3. CAPABILITIES / VALUE PILLARS — ab-pillars
   ============================================================ */
.ab-pillars {
    padding: 60px 0;
    background: var(--tf-light, #F5F5F5);
    position: relative;
}

.ab-pillar-card {
    position: relative;
    background: #fff;
    border-radius: var(--ab-radius);
    padding: 38px 32px;
    height: 100%;
    border: 1px solid var(--ab-line);
    overflow: hidden;
    transition: var(--tf-transition);
}

.ab-pillar-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ab-teal), #2fc8ad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.ab-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(10,10,10,.09);
}

.ab-pillar-card:hover::before { transform: scaleX(1); }

.ab-pillar-card__spot {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(240px circle at var(--ab-mx, 50%) var(--ab-my, 50%), var(--ab-teal-glow), transparent 70%);
    transition: opacity .35s ease;
}

.ab-pillar-card:hover .ab-pillar-card__spot { opacity: 1; }

.ab-pillar-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ab-pillar-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--ab-teal-glow);
    color: var(--ab-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ab-pillar-card__num {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--ab-line);
    line-height: 1;
}

.ab-pillar-card__tag {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1e9a84;
    margin-bottom: 10px;
}

.ab-pillar-card__title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--ab-ink);
    line-height: 1.35;
    margin-bottom: 12px;
}

.ab-pillar-card__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ab-grey);
    margin: 0;
    text-align: justify;
}

/* ============================================================
   4. CONCLUSION CTA — ab-conclusion
   ============================================================ */
.ab-conclusion {
    position: relative;
    padding: 60px 0;
    background: var(--ab-ink);
    color: #fff;
    overflow: hidden;
}

.ab-conclusion::before {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,.14) 0%, transparent 70%);
}

.ab-conclusion__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--ab-radius);
    padding: 44px 48px;
    background: rgba(255,255,255,.03);
}

.ab-conclusion__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ab-teal);
    margin-bottom: 14px;
}

.ab-conclusion__text {
    max-width: 660px;
    color: rgba(255,255,255,.75);
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 0;
}

.ab-conclusion__action { flex-shrink: 0; }

.ab-magnetic {
    display: inline-flex;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* ============================================================
   5. FAQ — ab-faq
   ============================================================ */
.ab-faq {
    padding: 60px 0;
    background: #fff;
}

.ab-faq__intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ab-teal);
    margin-bottom: 14px;
}

.ab-faq__intro-title {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--ab-ink);
    line-height: 1.28;
    margin-bottom: 18px;
}

.ab-faq__intro-text {
    color: var(--ab-grey);
    font-size: .97rem;
    line-height: 1.8;
    max-width: 420px;
}

.ab-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ab-faq__item {
    border: 1px solid var(--ab-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: var(--tf-transition);
}

.ab-faq__item.is-open {
    border-color: var(--ab-teal);
    box-shadow: 0 14px 34px rgba(30,154,132,.12);
}

.ab-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--tf-font);
}

.ab-faq__q-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ab-ink);
}

.ab-faq__q-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ab-teal-glow);
    color: var(--ab-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tf-transition);
}

.ab-faq__item.is-open .ab-faq__q-icon {
    background: var(--ab-teal);
    color: #fff;
    transform: rotate(180deg);
}

.ab-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.ab-faq__a-inner {
    padding: 0 24px 22px;
    color: var(--ab-grey);
    font-size: .93rem;
    line-height: 1.75;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .ab-banner { padding: 130px 0 40px; }
    .ab-intro { padding: 60px 0 60px; text-align: left; }
    .ab-intro__visual {  max-width: 420px; }
    .ab-stats { padding: 0 0 64px; }
    .tf-team-section, .ab-pillars, .ab-faq { padding: 72px 0; }
    .ab-conclusion { padding: 64px 0; }
    .ab-conclusion__inner { padding: 34px; }
}

@media (max-width: 767.98px) {
    .ab-intro__badge { left: 0; bottom: -20px; min-width: unset; }
    .tf-team-heading { margin-bottom: 40px; }
    .tf-team-card__image { height: 230px; }
    .ab-conclusion__inner { flex-direction: column; align-items: flex-start; }
    .ab-faq__intro-text { max-width: unset; }
    .ab-section-head { margin-bottom: 40px; }
}

@media (max-width: 575.98px) {
    .ab-banner__title { font-size: 1.55rem; }
    .ab-pillar-card { padding: 30px 24px; }
    .ab-stat-card__num { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .tf-team-card__image { height: 210px; }
    .tf-team-card__content { padding: 0 20px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .tf-team-bg,
    .tf-team-card,
    .tf-team-card::after,
    .tf-team-card__image img,
    .tf-team-card__social,
    .tf-team-card__content span::after {
        animation: none !important;
        transition: none !important;
    }
}


/* mobile */
@media (max-width: 767px) {
    .ab-intro {
        overflow: hidden;
    }

    .tf-reveal--right.is-visible{
        margin-top: 0px;
    }
    .tf-leadership-section .tf-leadership-content p{
        text-align: justify;
    }
    .ab-pillar-card__desc{
        text-align: justify;
    }
    .ab-conclusion .ab-conclusion__inner.tf-reveal.is-visible {
    padding: 20px;
    text-align: justify;
}

#faqs .ab-faq__intro-text {
    text-align: justify;
}

#faqs .ab-faq__a-inner {
    text-align: justify;
}

#our-team {
    overflow: hidden;
}

#why-techfruits{
        overflow: hidden;
}

#faqs{
    overflow: hidden;
}

}