/* Bompani Services Section Styling */

.bompani-services {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.bompani-services__title {
    margin-bottom: 10px;
}

.bompani-services__title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0b1a3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bompani-services__title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f1d551, #00a7eb);
    margin: 0 auto;
    border-radius: 2px;
}

.bompani-services__card {
    background: #e6e3de;
    border-radius: 15px;
    padding: 30px 40px;
    margin-bottom:50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
    
    
    display: flex;
    flex-direction: column;
}

.bompani-services__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #00a7eb;
}

.bompani-services__card-number {
    position: absolute;
    top: 0;
    left: 0;
    background: #0b1a3a;
    color: white;
    width: 50px;
    height: 50px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(11, 26, 58, 0.3);
    z-index: 2;
    
}

.bompani-services__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0b1a3a;
    margin-bottom: 20px;
    
    line-height: 1.3;
    margin-top: 30px;
    flex-shrink: 0;
}

.bompani-services__card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bompani-services__title h2 {
        font-size: 42px;
    }
    
    .bompani-services__card {
        padding: 35px 25px;
        min-height: 380px;
    }
    
    .bompani-services__card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .bompani-services {
        padding: 60px 0;
    }
    
    .bompani-services__title h2 {
        font-size: 36px;
    }
    
    .bompani-services__card {
        padding: 30px 20px;
        margin-bottom: 25px;
        min-height: 350px;
    }
    
    .bompani-services__card-title {
        font-size: 20px;
    }
    
    .bompani-services__card-text {
        font-size: 15px;
    }
    
    .bompani-services__card-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
        left: 0;
    }
}

@media (max-width: 576px) {
    .bompani-services__title h2 {
        font-size: 28px;
    }
    
    .bompani-services__card {
        padding: 25px 15px;
        margin-bottom: 20px;
        min-height: 320px;
    }
    
    .bompani-services__card-title {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .bompani-services__card-text {
        font-size: 14px;
    }
    
    .bompani-services__card-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
        
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bompani-services__card {
    animation: fadeInUp 0.6s ease forwards;
}

.bompani-services__card:nth-child(1) { animation-delay: 0.1s; }
.bompani-services__card:nth-child(2) { animation-delay: 0.2s; }
.bompani-services__card:nth-child(3) { animation-delay: 0.3s; }
.bompani-services__card:nth-child(4) { animation-delay: 0.4s; }
.bompani-services__card:nth-child(5) { animation-delay: 0.5s; }
.bompani-services__card:nth-child(6) { animation-delay: 0.6s; }
.bompani-services__card:nth-child(7) { animation-delay: 0.7s; }
.bompani-services__card:nth-child(8) { animation-delay: 0.8s; }
