/* =============================================
   NEXVIFY – ABOUT PAGE (PREMIUM ENHANCED)
   ============================================= */


:root {
    --primary: #00BDCD;
    --primary-dark: #008894;
    --secondary: #192A56;
    --dark: #0D102D;
    --text: #64748B;
    --white: #fff;
    --light-bg: #F5F8FF;
    --gradient: linear-gradient(135deg, #00BDCD 0%, #008894 100%);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, .06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .10);
    --radius: 20px;
    --transition: all .4s cubic-bezier(.165, .84, .44, 1);
}





/* ── Utilities ── */
.fw-800 {
    font-weight: 800;
}

.text-primary-brand {
    color: var(--primary) !important;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ── Section Labels ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-v3 {
    position: relative;
    padding: 180px 0 110px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.hero-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 42, 86, .90) 0%, rgba(13, 16, 45, .80) 100%);
    z-index: 1;
}

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

.hero-v3 h1 {
    font-size: clamp(42px, 8vw, 70px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-v3 p {
    font-size: 18px;
    opacity: .80;
    max-width: 540px;
    margin: 0 auto 28px;
}

.hero-v3 .breadcrumb {
    justify-content: center;
}

.hero-v3 .breadcrumb-item a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
}

.hero-v3 .breadcrumb-item.active {
    color: var(--primary);
}

.hero-v3 .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .40);
}

/* floating badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
    color: var(--white);
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 189, 205, .6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 189, 205, 0);
    }
}

/* Hero stat chips */
.hero-chips {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-chip {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 14px 24px;
    text-align: center;
}

.hero-chip strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.hero-chip span {
    font-size: 12px;
    color: rgba(255, 255, 255, .70);
}

/* ============================================
   COMPANY INTRO SECTION
   ============================================ */
.intro-section {
    padding: 110px 0;
}

/* ── Intro Image Grid (Left Column) ── */
.intro-img-grid {
    position: relative;
}

/* inline experience badge over first image */
.exp-badge-inline {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 14px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 189, 205, .40);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exp-badge-inline strong {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.exp-badge-inline span {
    font-size: 11px;
    opacity: .90;
    line-height: 1.3;
}

/* floating stat card on bottom image */
.intro-stat-card {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    border-left: 4px solid var(--primary);
    z-index: 5;
}

.intro-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 189, 205, .12);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}


.exp-badge {
    position: absolute;
    top: 30px;
    left: -18px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 189, 205, .4);
    z-index: 5;
}

.exp-badge strong {
    font-size: 36px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-badge span {
    font-size: 12px;
    opacity: .85;
}

.intro-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 14px;
    display: block;
}

.intro-title {
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 22px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.feature-list li .fl-icon {
    width: 34px;
    height: 34px;
    background: rgba(0, 189, 205, .10);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-list li:hover .fl-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.15);
}

/* Extra accent image column (3rd col in intro) */
.intro-extra-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.intro-extra-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    width: calc(100% - 40px);
    z-index: 10;
    border-left: 4px solid var(--primary);
    white-space: nowrap;
}

.btn-gradient {
    background: var(--gradient);
    color: var(--white);
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 24px rgba(0, 189, 205, .30);
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 189, 205, .45);
    color: var(--white);
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    background: var(--secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: rgba(0, 189, 205, .08);
    border-radius: 50%;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--primary);
}

.stat-label {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 110px 0;
    background: var(--light-bg);
    position: relative;
}

.process-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.process-card::after {
    content: attr(data-step);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(0, 189, 205, .35);
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 189, 205, .10);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 22px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(10deg);
}

.process-card h5 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* connector line between cards */
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.process-connector span {
    display: block;
    width: 60px;
    height: 2px;
    background: rgba(0, 189, 205, .3);
}

/* ============================================
   SKILLS / EXPERTISE SECTION
   ============================================ */
.skills-section {
    padding: 110px 0;
}

.skill-img-wrap {
    position: relative;
}

.skill-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.skill-float-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 220px;
}

.skill-float-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 189, 205, .10);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.skill-float-info strong {
    display: block;
    font-weight: 800;
    color: var(--secondary);
    font-size: 15px;
}

.skill-float-info span {
    font-size: 12px;
    color: var(--text);
}

.skill-bar-wrap {
    margin-bottom: 20px;
}

.skill-bar-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.skill-bar-track {
    height: 8px;
    background: #E8EDF5;
    border-radius: 50px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 50px;
    background: var(--gradient);
    width: 0;
    transition: width 1.4s cubic-bezier(.25, .46, .45, .94);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section-v4 {
    padding: 110px 0;
    background: var(--white);
}

.team-card-v4 {
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.team-card-v4:hover {

    box-shadow: var(--shadow-lg);
}

.team-img-v4 {
    height: 290px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.team-img-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.team-card-v4:hover .team-img-v4 img {
    transform: scale(1.08);
}

.team-social-v4 {
    position: absolute;
    inset: 0;
    background: rgba(25, 42, 86, .70);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}

.team-social-v4 a {
    width: 38px;
    height: 38px;
    background: var(--white);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.team-social-v4 a:hover {
    background: var(--primary);
    color: var(--white);
}

.team-card-v4:hover .team-social-v4 {
    opacity: 1;
}

.team-info-v4 {
    text-align: center;
    padding: 18px 10px 8px;
}

.team-info-v4 h5 {
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-info-v4 span {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: 110px 0;
    background: var(--light-bg);
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}



.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 189, 205, .10);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gradient);
    color: var(--white);
}

.value-card h5 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

/* ============================================
   TESTIMONIAL QUOTE STRIP
   ============================================ */
.quote-strip {
    background: var(--secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-strip::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 40px;
    font-size: 250px;
    color: rgba(0, 189, 205, .08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--white);
    font-style: italic;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
}

.quote-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.quote-author-info strong {
    color: var(--white);
    font-weight: 700;
    display: block;
}

.quote-author-info span {
    color: rgba(255, 255, 255, .60);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .collage-sub {
        width: 45%;
        right: 0;
        bottom: -20px;
    }

    .exp-badge {
        left: 0;
        top: 10px;
    }

    .skill-float-card {
        left: 0;
        bottom: 15px;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .hero-chips {
        gap: 10px;
    }

    .hero-chip {
        padding: 10px 18px;
    }

    .collage-sub {
        display: none;
    }

    .exp-badge {
        position: static;
        margin-bottom: 20px;
        display: inline-flex;
        gap: 12px;
        align-items: center;
    }

    .exp-badge strong {
        font-size: 28px;
    }
}