/* bpo_solutions.css */

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === PAGE HEADER === */
.bpo-header {
    background:  linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(42, 52, 62, 0.75) 100%),
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.bpo-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 42px; /* Smaller font */
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 18px; /* Smaller font */
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-nav a:hover {
    color: #667eea;
}

.breadcrumb-nav span:last-child {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === MAIN SECTION === */
.bpo-main-section {
    padding: 70px 0;
    background: #f5f7fa;
}

/* === INTRODUCTION SECTION === */
.intro-section {
    margin-bottom: 70px;
}

.intro-content {
    padding-right: 30px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 25px;
    border: 2px solid #667eea;
    margin-bottom: 20px;
}

.intro-badge i {
    font-size: 18px;
    color: #667eea;
}

.intro-badge span {
    font-size: 13px; /* Smaller font */
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-title {
    font-size: 32px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    font-size: 15px; /* Smaller font */
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Intro Highlights */
.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px; /* Smaller font */
    color: #555;
}

.highlight-item i {
    color: #667eea;
    font-size: 16px;
}

/* Intro Image */
.intro-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 450px;
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image-wrapper:hover .intro-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.25) 0%, rgba(102, 126, 234, 0.15) 100%);
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 20px;
    color: white;
}

.badge-text {
    text-align: left;
}

.badge-title {
    font-size: 16px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    line-height: 1;
    margin-bottom: 3px;
}

.badge-subtitle {
    font-size: 12px; /* Smaller font */
    color: #666;
}

/* === SERVICES SECTION === */
.services-section {
    margin-bottom: 70px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px; /* Smaller font */
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px 25px; /* Smaller padding */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.service-card:hover {
    border-top-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.service-icon {
    width: 65px; /* Smaller */
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 28px; /* Smaller */
    color: white;
}

.service-title {
    font-size: 18px; /* Smaller font */
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-description {
    font-size: 14px; /* Smaller font */
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* === PROCESS SECTION === */
.process-section {
    margin-bottom: 70px;
}

.process-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 450px;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-content {
    padding-right: 30px;
}

.process-title {
    font-size: 32px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 30px;
    line-height: 1.3;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.step-number {
    width: 50px; /* Smaller */
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* Smaller font */
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 17px; /* Smaller font */
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px; /* Smaller font */
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* === BENEFITS SECTION === */
.benefits-section {
    margin-bottom: 70px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section-title-center {
    font-size: 32px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    width: 65px; /* Smaller */
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px; /* Smaller */
    color: white;
}

.benefit-card h4 {
    font-size: 18px; /* Smaller font */
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px; /* Smaller font */
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: 36px; /* Smaller font */
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 16px; /* Smaller font */
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px; /* Smaller padding */
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px; /* Smaller font */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #667eea;
    text-decoration: none;
}

.cta-btn i {
    font-size: 16px;
}

/* === BOOTSTRAP GRID === */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

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

.col-lg-6,
.col-lg-10 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

.order-lg-1 {
    order: 1;
}

.order-lg-2 {
    order: 2;
}

@media (min-width: 992px) {
    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .intro-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .intro-image-wrapper,
    .process-image-wrapper {
        height: 350px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 30px;
    }

    .intro-title,
    .process-title {
        font-size: 28px;
    }

    .process-content {
        padding-right: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .bpo-main-section {
        padding: 50px 0;
    }

    .page-title {
        font-size: 30px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    .intro-section,
    .services-section,
    .process-section,
    .benefits-section {
        margin-bottom: 50px;
    }

    .intro-image-wrapper,
    .process-image-wrapper {
        height: 280px;
    }

    .intro-title,
    .process-title {
        font-size: 24px;
    }

    .intro-text {
        font-size: 14px;
    }

    .highlight-item {
        font-size: 13px;
    }

    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-icon i {
        font-size: 18px;
    }

    .badge-title {
        font-size: 14px;
    }

    .badge-subtitle {
        font-size: 11px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 13px;
    }

    .process-steps {
        gap: 15px;
    }

    .process-step {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .step-content h4 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

    .benefits-section {
        padding: 40px 20px;
    }

    .section-title-center {
        font-size: 26px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-card h4 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .cta-section {
        padding: 50px 25px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 14px 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 26px;
    }

    .intro-image-wrapper,
    .process-image-wrapper {
        height: 250px;
    }

    .intro-highlights {
        gap: 10px;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}