/* Home Page Section 2 - Who We Are */

/* Paragraph/Text Styles */
.who-section p {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    color: rgb(0, 0, 0) !important;
    font-size: 21px !important;
    line-height: 28px !important;
    margin-bottom: 1.5rem !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    font-smooth: always !important;
}

.who-section {
    padding: 60px 0;
    background-color: #c1c1c1;
    position: relative;
}

.who-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
}

.who-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.who-image {
    flex: 0 0 50%;
    transform: translateX(-100px);
    opacity: 0;
}

.bwbg-animate-slide-in.animate-in-view {
    animation: bwbg-slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bwbg-slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.who-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.who-text {
    flex: 0 0 50%;
}

.who-text h2 {
    font-family: Cairo, sans-serif;
    font-size: 32.5px;
    line-height: 1.3;
    color: #555;
    font-weight: 900;
    margin-bottom: 16px;
}

.who-text p {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0 23px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 19.7px;
    letter-spacing: 0.59px;
    line-height: 47px;
    min-height: 49px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    font-family: Cairo, sans-serif;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .who-section {
        padding: 40px 0;
    }
    
    .who-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .who-image,
    .who-text {
        flex: 0 0 100%;
    }

    .who-image {
        transform: translateY(100px);
        opacity: 0;
    }

    .bwbg-animate-slide-in.animate-in-view {
        animation: bwbg-slideInMobile 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    @keyframes bwbg-slideInMobile {
        from {
            transform: translateY(100px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

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

    .who-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .who-text p {
        margin-bottom: 20px;
        font-size: 15px;
    }
    
    .btn {
        font-size: 18px;
        line-height: 44px;
        min-height: 46px;
    }
}

@media (max-width: 480px) {
    .who-section {
        padding: 30px 0;
    }
    
    .who-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .who-text h2 {
        font-size: 24px;
    }
    
    .who-text p {
        font-size: 14px;
    }
    
    .btn {
        font-size: 16px;
        line-height: 40px;
        min-height: 42px;
        padding: 0 20px;
    }
}
