/* =========================================================
   about-page.css — Webexpert Infotech About Us Page
   ========================================================= */

/* ── 1. HERO SECTION ENHANCEMENTS ────────────────────── */
/* Use global .sp-hero padding and background from website-pages.css */
.ab-hero {
    /* Inherits background from .sp-hero in website-pages.css */
}

/* Breadcrumb */
.ab-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 500;
}
.ab-breadcrumb a {
    color: rgba(255, 255, 255, .7);
    transition: color .3s;
}
.ab-breadcrumb a:hover { color: #fff; }
.ab-breadcrumb span { color: rgba(255, 255, 255, .4); font-size: 10px; }
.ab-breadcrumb .current { color: #fff; font-size: 14px; }

/* ── 2. WHO WE ARE VISUAL ────────────────────────────── */
.ab-who-visual { position: relative; }
.ab-who-image-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, .08); }
.ab-who-image-main img { width: 100%; display: block; }

.ab-who-float-card {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.ab-who-float-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: #064498;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
}

/* Feature cards */
.ab-feature-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px; background: #fff; border-radius: 16px;
    border: 1px solid #f0f0f0; transition: all .3s;
}
.ab-feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* ── 3. MISSION & VISION CARDS ───────────────────────── */
.ab-mv-card {
    background: #fff; border-radius: 20px; padding: 40px;
    border: 1px solid #f0f0f0; box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    position: relative; height: 100%; transition: all .4s;
}
.ab-mv-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }

/* ── 4. CORE VALUES CARDS ────────────────────────────── */
.ab-value-card {
    background: #fff; border-radius: 18px; padding: 34px 26px;
    border: 1px solid #f0f0f0; text-align: center;
    transition: all .35s; height: 100%;
}
.ab-value-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.ab-value-icon {
    width: 65px; height: 65px; border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    margin: 0 auto 20px; font-size: 24px;
}

/* ── 5. INDUSTRY CARD ───────────────────────────────── */
.ab-industry-card {
    background: #fff; border-radius: 18px; padding: 30px 20px;
    border: 1px solid #f0f0f0; transition: all 0.4s; height: 100%;
}
.ab-industry-card:hover {
    transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Section Spacing */
.sp-section { padding: 100px 0; }

/* Responsive */
@media (max-width: 991px) {
    .ab-who-visual { margin-bottom: 40px; }
    .ab-who-float-card { position: relative; bottom: auto; right: auto; margin-top: 20px; }
}
