/* =========================================
   BRIGHT ANGEL - BPO SERVICES UI (STANDALONE)
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.bpo-hero {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #ef4444; /* Corporate Red */
}

.bpo-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.bpo-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

.bpo-badge {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --- Section Typography --- */
.bpo-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.bpo-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6;
}

/* --- Content Cards --- */
.bpo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.bpo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.bpo-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    color: #3b82f6;
}

.bpo-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.bpo-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- List Styles --- */
.bpo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bpo-list li {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.bpo-list i {
    color: #10b981; /* Success Green */
    margin-right: 12px;
    margin-top: 4px;
}

/* --- Performance Grid (Stats) --- */
.bpo-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.bpo-stat-card:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-5px);
}

.bpo-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bpo-stat-card h5 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 10px;
}

.bpo-stat-card p {
    color: #64748b;
    margin: 0;
}

.bpo-stat-card:hover p {
    color: #cbd5e1;
}

/* --- Testimonials --- */
.bpo-testimonial {
    background: #ffffff;
    border-left: 5px solid #3b82f6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    font-style: italic;
}

.bpo-testimonial p {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bpo-testimonial footer {
    font-weight: 700;
    color: #0f172a;
    font-style: normal;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .bpo-hero { padding: 130px 20px 60px 20px; }
    .bpo-hero h1 { font-size: 2.4rem; }
}