/*
==================================
  VALUEX INNOVATIONS - BUSINESS PORTFOLIO STYLES
==================================
*/

/* Variables from main style.css */
:root {
  --primary-navy: #0f172a;
  --primary-blue: #1e3a8a;
  --accent-cyan: #06b6d4;
  --accent-orange: #fb923c;
  --text-gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
  /* ... include other variables from your main style.css ... */
}

body {
    background-color: #f8f9fa;
}

/* BP Hero Section */
.bp-hero-section {
    background: var(--primary-navy);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.bp-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.bp-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.bp-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content Styles */
.bp-main-content {
    padding: 4rem 0;
}

.bp-section {
    margin-bottom: 4rem;
}

.bp-section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.bp-section-title .text-gradient {
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.bp-content-block {
    padding-left: 2rem;
}

.bp-key-features {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.bp-key-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.bp-key-features i {
    color: var(--accent-cyan);
}

/* BP Card */
.bp-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.bp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.bp-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.bp-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bp-card-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}
