/**
 * Veeru Tech - Dynamic About Us Page Layout Stylesheet
 */

/* Container Setup */
.vt-about-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.vt-about-section {
    padding: 80px 0;
    position: relative;
}

.vt-about-section.bg-light {
    background-color: #f8fafc;
}

/* HERO BANNER & OPACITY ENGINE */
.vt-about-hero {
    background-color: #06172e;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.vt-about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--vt-hero-bg-img, none);
    background-size: cover;
    background-position: center;
    opacity: var(--vt-hero-bg-opacity, 1);
    z-index: 0;
    transition: opacity 0.3s ease;
}

.vt-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(6, 23, 46, 0.75);
    z-index: 1;
}

.vt-about-hero .vt-about-container {
    position: relative;
    z-index: 2;
}

.vt-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.vt-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.vt-breadcrumbs {
    font-size: 14px;
    color: #f17a28;
    margin-bottom: 20px;
    font-weight: 600;
}

.vt-breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
}

.vt-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 580px;
}

.vt-hero-floating-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* SPLIT ROWS */
.vt-split-row {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.vt-split-col-left, .vt-split-col-right { flex: 1; }

/* TYPOGRAPHY */
.vt-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f17a28;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.vt-section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.vt-body-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

/* BUTTON */
.vt-btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #f17a28;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.vt-btn-primary:hover {
    background-color: #d96313;
    transform: translateY(-2px);
}

/* STATS CARDS GRID & MASK SPAN CONTAINERS */
.vt-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vt-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.vt-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vt-stat-icon {
    font-size: 32px;
    color: #06172e;
    margin-bottom: 12px;
}

/* PURE CSS MASK SPAN ENGINE (ZERO BLEED-THROUGH) */
.vt-stat-img-icon,
.vt-feat-img-icon,
.vt-mvv-img-icon,
.vt-step-img-icon {
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.vt-stat-img-icon { width: 36px; height: 36px; margin-bottom: 12px; }
.vt-feat-img-icon { width: 28px; height: 28px; }
.vt-mvv-img-icon  { width: 28px; height: 28px; }
.vt-step-img-icon { width: 24px; height: 24px; }

.vt-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #06172e;
    margin: 0 0 6px 0;
}

.vt-stat-label {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* FEATURES GRID */
.vt-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.vt-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vt-feat-icon {
    font-size: 24px;
    color: #f17a28;
}

.vt-feat-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.vt-feat-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* MISSION VISION VALUES */
.vt-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vt-mvv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.vt-mvv-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06172e;
    font-size: 24px;
    margin-bottom: 20px;
}

.vt-mvv-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.vt-mvv-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.vt-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vt-values-list li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vt-values-list li span {
    color: #f17a28;
}

/* APPROACH & CERTIFICATIONS */
.vt-split-col-cert { flex: 1; }
.vt-split-col-approach { flex: 1.5; }

.vt-cert-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 15px 0;
}

.vt-cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.vt-badge {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.vt-steps-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.vt-step-item {
    text-align: center;
    flex: 1;
}

.vt-step-icon {
    width: 50px;
    height: 50px;
    background: #06172e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    font-size: 20px;
}

.vt-step-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #0f172a;
}

.vt-step-item p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.vt-step-arrow {
    font-size: 20px;
    color: #cbd5e1;
    font-weight: 700;
}

/* CTA BANNER CARD */
.vt-cta-banner-card {
    background-color: #06172e;
    border-radius: 16px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vt-cta-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.vt-cta-desc {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
    max-width: 440px;
    line-height: 1.6;
}

.vt-cta-middle {
    display: flex;
    gap: 25px;
}

.vt-cta-info-item span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 2px;
}

.vt-cta-info-item strong {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
}

.vt-btn-cta-orange {
    display: inline-block;
    padding: 14px 28px;
    background-color: #f17a28;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.vt-btn-cta-orange:hover {
    background-color: #d96313;
    transform: translateY(-2px);
}

/* RESPONSIVE DESIGN (100% FULL-WIDTH MOBILE CONTAINER) */
@media (max-width: 991px) {
    .vt-hero-grid, .vt-mvv-grid, .vt-cta-banner-card {
        grid-template-columns: 1fr;
    }
    .vt-split-row {
        flex-direction: column;
        width: 100%;
        gap: 40px;
    }
    .vt-split-col-left, .vt-split-col-right, .vt-split-col-cert, .vt-split-col-approach {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        box-sizing: border-box;
    }
    .vt-cta-middle {
        flex-direction: column;
        gap: 10px;
    }
    .vt-stats-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        box-sizing: border-box;
    }
    .vt-steps-flex {
        flex-wrap: wrap;
    }
    .vt-step-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .vt-stats-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        box-sizing: border-box;
    }
    .vt-stat-card {
        width: 100%;
        padding: 20px 10px;
        box-sizing: border-box;
    }
    .vt-stat-num {
        font-size: 24px;
    }
    .vt-features-grid {
        grid-template-columns: 1fr;
    }
    .vt-hero-title {
        font-size: 32px;
    }
}