/* ============================================
   CLIENT PROFILE PAGE — Matches Website Theme
============================================ */

:root {
    --brand: #0174BB;
    --brand-dark: #015d96;
    --brand-light: #e8f4fd;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --border: #daeaf7;
    --text: #1a2535;
    --text2: #3d5166;
    --surface: #ffffff;
    --shadow: rgba(1, 116, 187, 0.12);
}

/* ---- HERO ---- */
.client-hero {
    position: relative;
    padding: 120px 20px 80px;
    background: #011627 url('/image/faq-bg.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: white;
}

.client-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 116, 187, 0.85), rgba(8, 15, 28, 0.95));
    z-index: 1;
}

.client-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.client-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.client-hero .breadcrumb a {
    color: white;
    text-decoration: none;
}

.client-hero .breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
}

.client-hero h1 {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.client-hero h1 span {
    color: #4db8ff;
}

.client-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- STRIP ---- */
.client-strip {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 0 20px;
}

.client-strip .strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--surface);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.client-strip .strip-item {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
    border-right: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.client-strip .strip-item:last-child {
    border-right: 0;
}

.client-strip .strip-item i {
    font-size: 28px;
    color: var(--brand);
}

.client-strip .strip-text span {
    display: block;
    font-size: 13px;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-strip .strip-text strong {
    font-size: 18px;
    color: var(--text);
    display: block;
    margin-top: 2px;
}

.client-strip .strip-item:hover {
    background: var(--brand-light);
    transform: translateY(-5px);
}

/* ---- SHARED UTILITIES ---- */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    border-radius: 99px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-head h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.section-head h2 span {
    color: var(--brand);
}

.section-head p {
    font-size: 16px;
    color: var(--text2);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* ---- CLIENTS MAIN ---- */
.client-section {
    padding: 100px 20px;
    background: #f8fbff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.client-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    transition: all 0.3s ease;
}

.client-card:hover {
    border-color: var(--brand);
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-5px);
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* ---- INDUSTRIES SECTION ---- */
.industry-section {
    padding: 100px 20px;
    background: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--brand);
    box-shadow: 0 15px 35px var(--shadow);
    transform: translateY(-6px);
    background: white;
}

.industry-card i {
    font-size: 40px;
    color: var(--brand);
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    background: var(--brand-light);
    border-radius: 50%;
}

.industry-card h4 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 14.5px;
    color: var(--text2);
    line-height: 1.6;
}

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 60px 20px 100px;
    background: #f8fbff;
}

.cta-box {
    background: linear-gradient(135deg, #011627 0%, #013d6e 100%);
    border-radius: 30px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(1, 116, 187, 0.2);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(77, 184, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: #4db8ff;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #4db8ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(1, 116, 187, 0.35);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .client-strip .strip-inner {
        grid-template-columns: 1fr;
    }

    .client-strip .strip-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .client-strip .strip-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 768px) {
    .client-hero h1 {
        font-size: 32px;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 26px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .client-card {
        padding: 15px;
        height: 90px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 30px;
    }
    
    .client-card {
        padding: 8px;
        height: 70px;
        border-radius: 8px;
    }
    
    .client-card img {
        max-height: 50px;
    }
}
