/* ================================================
   ABOUT US – PREMIUM STYLES
   ================================================ */

/* ---- HERO ABOUT ---- */
.ab-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #020a2e 0%, #082068 35%, #0b53c0 65%, #0e7fe8 90%, #00c8ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.ab-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ab-hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: abBannerZoom 30s ease-in-out infinite alternate;
}

.ab-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(2, 10, 46, 0.30) 0%,
            rgba(8, 32, 104, 0.22) 40%,
            rgba(11, 83, 192, 0.18) 70%,
            rgba(2, 10, 46, 0.45) 100%);
    z-index: 1;
}

@keyframes abBannerZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.ab-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ab-m1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 212, 255, 0.15);
    top: -20%;
    right: -5%;
    animation: abFloat1 8s ease-in-out infinite alternate;
}

.ab-m2 {
    width: 350px;
    height: 350px;
    background: rgba(100, 180, 255, 0.10);
    bottom: -15%;
    left: -5%;
    animation: abFloat2 10s ease-in-out infinite alternate;
}

@keyframes abFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-25px, 15px) scale(1.12);
    }
}

@keyframes abFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15px, -10px) scale(1.08);
    }
}

.ab-grid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
}

.ab-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.ab-hero .breadcrumb {
    margin-bottom: 20px;
}

.ab-hero .breadcrumb,
.ab-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.ab-hero .breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.ab-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.ab-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    animation: pulseDotHero 2s infinite;
}

@keyframes pulseDotHero {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 212, 255, 0);
    }
}

.ab-hero h1 {
    color: #fff;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
}

.ab-grad-text {
    background: linear-gradient(135deg, #fff, #82e4ff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ab-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 600px;
}

.ab-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.ab-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ab-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.ab-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
}

/* ---- COMPANY INTRO ---- */
.ab-intro-title {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--text);
    margin: 0 0 48px;
}

.ab-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ab-intro-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(11, 94, 215, 0.03);
    border: 1px solid rgba(15, 40, 85, 0.06);
    box-shadow: 0 8px 32px rgba(10, 27, 51, 0.06);
}

.ab-intro-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ab-intro-img-wrap:hover .ab-intro-img {
    transform: scale(1.04);
}

.ab-intro-body {
    padding: 8px 0;
}

.ab-intro-brand {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--text);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.ab-intro-company {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0 20px;
}

.ab-intro-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 16px;
}

.ab-intro-body ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.ab-intro-body li {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 4px;
}

.ab-intro-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 14px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11, 94, 215, 0.30);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ab-intro-readmore:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 36px rgba(11, 94, 215, 0.40);
}

.ab-intro-readmore svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ab-intro-readmore:hover svg {
    transform: translateX(4px);
}

/* ---- VALUES GRID ---- */
.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ab-value-card {
    position: relative;
    padding: 32px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 40, 85, 0.06);
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(10, 27, 51, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.ab-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 94, 215, 0.12);
    border-color: rgba(11, 94, 215, 0.12);
}

.ab-value-card:hover::before {
    opacity: 1;
}

.ab-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(11, 94, 215, 0.28);
    margin-bottom: 16px;
    transition: all 0.35s ease;
}

.ab-value-card:hover .ab-value-icon {
    transform: scale(1.08) rotate(-4deg);
}

.ab-value-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.ab-value-num {
    font-size: 46px;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(11, 94, 215, 0.06) 0%, rgba(11, 94, 215, 0.02) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: -3px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.ab-value-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--text);
}

.ab-value-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ---- STRENGTHS GRID ---- */
.ab-strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-strength-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 40, 85, 0.06);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(10, 27, 51, 0.05);
    transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ab-strength-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #0b5ed7, #00d4ff, #0b5ed7);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.ab-strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(11, 94, 215, 0.14);
}

.ab-strength-card:hover::before {
    opacity: 1;
}

.ab-str-orb {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 94, 215, 0.06) 0%, transparent 70%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.ab-strength-card:hover .ab-str-orb {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(0, 179, 255, 0.10) 0%, transparent 70%);
}

.ab-strength-featured {
    background: linear-gradient(165deg, rgba(11, 94, 215, 0.03) 0%, rgba(0, 179, 255, 0.04) 100%);
    border-color: rgba(11, 94, 215, 0.10);
}

.ab-str-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(11, 94, 215, 0.28);
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.ab-strength-card:hover .ab-str-icon-wrap {
    transform: scale(1.08) rotate(-4deg);
}

.ab-str-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.ab-strength-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text);
}

.ab-strength-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.ab-str-features {
    list-style: none;
    padding: 0;
    margin: auto 0 0;
    display: grid;
    gap: 8px;
}

.ab-str-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(11, 94, 215, 0.04);
    border: 1px solid rgba(11, 94, 215, 0.06);
    transition: all 0.3s ease;
}

.ab-str-features li:hover {
    background: rgba(11, 94, 215, 0.08);
    transform: translateX(4px);
}

.ab-str-features svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--primary);
}

/* ---- SCOPE GRID ---- */
.ab-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ab-scope-card {
    padding: 28px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 40, 85, 0.06);
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(10, 27, 51, 0.04);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
}

.ab-scope-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(11, 94, 215, 0.12);
    border-color: rgba(11, 94, 215, 0.10);
}

.ab-scope-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(11, 94, 215, 0.06);
    border: 1px solid rgba(11, 94, 215, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.35s ease;
}

.ab-scope-card:hover .ab-scope-icon {
    background: var(--grad);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(11, 94, 215, 0.30);
}

.ab-scope-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.ab-scope-card:hover .ab-scope-icon svg {
    color: #fff;
}

.ab-scope-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--text);
}

.ab-scope-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.ab-scope-tags span {
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(11, 94, 215, 0.05);
    border: 1px solid rgba(11, 94, 215, 0.08);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.ab-scope-card:hover .ab-scope-tags span {
    background: rgba(11, 94, 215, 0.08);
    border-color: rgba(11, 94, 215, 0.14);
}

/* ---- CTA BANNER ---- */
.ab-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #020a2e 0%, #082068 35%, #0b53c0 65%, #0e7fe8 90%);
    padding: 72px 0;
}

.ab-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ab-cta-m1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.14);
    top: -30%;
    right: -5%;
    filter: blur(80px);
    animation: abFloat1 8s ease-in-out infinite alternate;
}

.ab-cta-m2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(120, 180, 255, 0.10);
    bottom: -20%;
    left: -5%;
    filter: blur(80px);
    animation: abFloat2 10s ease-in-out infinite alternate;
}

.ab-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.ab-cta h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    margin: 0 0 14px;
}

.ab-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.ab-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Re-use CTA button styles from home */
.ab-cta .cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #e8f4ff 100%);
    color: #0b47a8;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ab-cta .cta-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.ab-cta .cta-btn-main svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.ab-cta .cta-btn-main:hover svg {
    transform: translateX(4px);
}

.ab-cta .cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ab-cta .cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.ab-cta .cta-btn-outline svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.ab-cta .cta-btn-outline:hover svg {
    transform: translateX(4px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
    .ab-hero {
        padding: 120px 0 60px;
        min-height: 60vh;
    }

    .ab-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-strengths-grid {
        grid-template-columns: 1fr;
    }

    .ab-scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .ab-hero {
        padding: 0 0 48px;
        min-height: auto;
        flex-direction: column;
    }

    .ab-hero-bg {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .ab-hero-banner-img {
        object-fit: contain;
        animation: none;
    }

    .ab-hero-content {
        padding-top: 28px;
    }

    .ab-hero h1 {
        font-size: 28px;
    }

    .ab-hero-stats {
        gap: 20px;
    }

    .ab-stat-sep {
        display: none;
    }

    .ab-values-grid {
        grid-template-columns: 1fr;
    }

    .ab-scope-grid {
        grid-template-columns: 1fr;
    }

    .ab-intro-brand {
        font-size: 28px;
    }

    .ab-cta-btns {
        flex-direction: column;
    }

    .ab-cta-btns .cta-btn-main,
    .ab-cta-btns .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}