/* =================================================================
   ABOUT PAGE — page-specific styles
   (reuses tokens, buttons, theme-title, sliders from style.css)
================================================================= */

/* ---------- WHAT WE OFFER (service style-3 cards) ---------------- */
.about-services {
    padding-bottom: 90px;
}

.about-services__head {
    max-width: 760px;
    margin: 0 auto 50px;
}

.service-item.style-3 {
    position: relative;
    height: 100%;
    padding: 40px;
    background: var(--white-color);
    border-radius: var(--radius-corner);
    overflow: hidden;
}

.service-item.style-3 .service-desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-item.style-3 .service-icon {
    flex-shrink: 0;
    font-size: 70px;
    line-height: 1;
    color: var(--text-color);
    transition: var(--transition-base);
}

.service-item.style-3:hover .service-icon {
    color: var(--primary-color);
}

.service-item.style-3 .service-image {
    width: 100%;
    height: 250px;
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
}

.service-item.style-3 .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item.style-3:hover .service-image img {
    transform: scale(1.05);
}

.service-item.style-3 p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    padding-right: 50px;
}

/* ---------- ABOUT COMPANY --------------------------------------- */
.about-company {
    padding: 90px 0;
}

.about-company__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-company__media {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.about-company__media-left {
    flex: 1;
}

.about-company__img-sm {
    margin-bottom: 24px;
}

.about-company__img-sm img {
    aspect-ratio: 600 / 400;
    object-fit: cover;
}

.about-company__img-lg {
    flex: 1;
}

.about-company__img-lg img {
    aspect-ratio: 600 / 800;
    object-fit: cover;
}

/* Author card */
.author-item {
    position: relative;
    padding: 30px;
    border-radius: var(--radius-corner);
    background: var(--white-color);
    text-align: right;
    overflow: hidden;
}

.author-img {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-caption {
    padding-left: 80px;
    margin-bottom: 20px;
    text-align: left;
}

.author-caption h4 {
    margin-bottom: 0;
}

.author-caption span {
    color: var(--primary-color);
    font-weight: 500;
}

.author-sign {
    max-height: 50px;
    width: auto;
    margin-left: auto;
}

.about-company__content .theme-title {
    margin-bottom: 20px;
}

.about-company__content > p {
    margin-bottom: 25px;
}

.about-company__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

/* ---------- MISSION / VISION / HISTORY split scroller ----------- */
.split-scroller {
    margin: 0 20px;
}

.split-scroller__inner {
    display: flex;
    align-items: flex-start;
    border-radius: var(--radius-corner);
    overflow: hidden;
}

/* Sticky image column */
.split-scroller__images {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    flex-shrink: 0;
    align-self: flex-start;
}

.split-img-block {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.split-img-block.is-active {
    opacity: 1;
}

.split-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scrolling text column */
.split-scroller__texts {
    width: 50%;
    background: var(--white-color);
}

.split-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 6rem;
}

.split-mobile-img {
    display: none;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
}

.split-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 50px;
}

.split-content h3 {
    margin-bottom: 20px;
}

.split-content .themeht-btn {
    margin-top: 30px;
}

/* Check-mark list */
.tab-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding: 0;
}

.tab-list li {
    position: relative;
    list-style: none;
    margin-bottom: 15px;
    padding-left: 25px;
    font-weight: 500;
}

.tab-list li:last-child {
    margin-bottom: 0;
}

.tab-list li::before {
    content: "\f11a";
    position: absolute;
    left: 0;
    top: 3px;
    font-family: flaticon_techify_collection !important;
    font-size: 20px;
    line-height: 1;
    color: var(--primary-color);
}

/* ---------- MEET OUR TEAM (style-2 cards) ----------------------- */
.about-team {
    padding: 90px 0 30px;
}

.about-team__head {
    max-width: 700px;
    margin: 0 auto 50px;
}

/* 3 cards per view for the about team slider */
.team-slider--3 .team-slider__track {
    --per-view: 3;
}
/* NOTE: .team-member.style-2 card styles live in style.css (shared
   by the About team slider and the Team Member page grid). */
