/* section common styling */
.about-section-custom {
    background: #fff;
    padding: 90px 0 60px;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow h2 {
    font-size: 0.7rem !important;
    padding-top: 7px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.section-title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.section-title-main .accent {
    color: var(--red);
}

.title-desc p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Custom list styling */
.service-list-custom {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.service-list-custom li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
}

.service-list-custom li i {
    color: var(--red);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-list-custom li b {
    color: var(--dark);
    font-weight: 800;
}

/* image container */
.about-image-wrapper {
    text-align: right;
    position: relative;
}

.about-image-wrapper img {
    max-width: 85%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

/* Stats counters (FID style) */
.stats-grid {
    background: var(--light-bg);
    padding: 50px 0;
    margin-top: 20px;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    transition: all 0.2s;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-number h4{
    font-family: 'Playfair Display', serif;
    padding-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.3rem;
}


.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--grey);
}

.stat-label h3{
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--grey);
}

/* Clients / Vendors Section */
.clients-section-custom {
    background: #fff;
    padding: 60px 0 80px;
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    color: var(--dark);
    margin-bottom: 2rem;
}

.section-title-large span {
    color: var(--red);
}

.sector-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    border-left: 4px solid var(--red);
    padding-left: 15px;
}

.client-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 1.2rem;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.client-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(192, 57, 43, 0.34);
}

.client-logo {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 0.7rem;
}

.client-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.text-card-simple {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section-custom {
        padding: 60px 0 40px;
    }

    .about-image-wrapper {
        text-align: center;
        margin-top: 2rem;
    }

    .about-image-wrapper img {
        max-width: 100%;
    }

    .stats-grid {
        padding: 40px 0;
    }

    .stat-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .service-list-custom li {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .client-card {
        padding: 0.9rem;
    }

    .client-name {
        font-size: 0.75rem;
    }
}

/* custom spacing */
.padding-top-zero {
    padding-top: 0;
}

.mt-2rem {
    margin-top: 2rem;
}
