/* ========================================================
   WHO WE ARE SECTION STYLING (WHITE BACKGROUND & RED/BLACK)
   ======================================================== */

.bg-white {
    background-color: #FFFFFF !important;
}

.text-red {
    color: #ed2227 !important;
}

/* Light Pill Badge */
.bgc-light-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F5F5F5;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid #E0E0E0;
}

.bgc-light-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 8px #ed2227;
}

.bgc-light-badge .badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #111111;
}

/* Headings Typography */
.section-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.2;
}

/* Body Text Readability Settings */
.lead-who-text {
    font-size: 16.5px;
    line-height: 1.8;
    color: #111111 !important;
}

.body-who-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444444 !important;
}

/* Left Column Image Frame */
.who-we-are-image-frame {
    height: 480px;
    border: 1px solid #E2E8F0;
    background-color: #111111;
}

.who-we-are-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.who-we-are-image-frame:hover .who-we-are-img {
    transform: scale(1.06);
}

.who-we-are-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.floating-who-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 34, 39, 0.3);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Primary Red Button */
.btn-bgc-red {
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF !important;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(237, 34, 39, 0.3);
    transition: all 0.35s ease;
    text-decoration: none;
}

.btn-bgc-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(237, 34, 39, 0.5);
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
    .who-we-are-image-frame {
        height: 360px;
    }
}