/* Hero & General (Shared with Services) */
.bw-hero--short {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0a0e17;
}

.bw-hero .bw-herobg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fallback */
    opacity: 0.4;
    z-index: 1;
}

.bw-herooverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.4) 0%, rgba(10, 14, 23, 0.95) 100%);
    z-index: 2;
}

.bw-herocontent {
    position: relative;
    z-index: 3;
}

/* Stats Section */
.bw-stat-row {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.bw-stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 14, 23, 0.08);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.bw-stat-card:hover {
    transform: translateY(-5px);
}

.bw-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bw-accent);
    line-height: 1.1;
    margin-bottom: 5px;
}

.bw-stat-label {
    color: var(--bw-muted);
    font-weight: 500;
}

/* Values Grid */
.bw-value-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.bw-value-card:hover {
    border-color: rgba(249, 95, 14, 0.3);
    box-shadow: 0 10px 30px rgba(249, 95, 14, 0.08);
}

.bw-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(249, 95, 14, 0.1);
    color: var(--bw-accent);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.bw-value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--bw-ink);
}

.bw-value-desc {
    color: var(--bw-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline / Story */
.bw-timeline {
    position: relative;
    padding: 20px 0;
}

.bw-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.bw-timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
    padding-right: 40px;
}

.bw-timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
}

.bw-timeline-year {
    position: absolute;
    top: 0;
    right: -30px;
    background: var(--bw-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.bw-timeline-item:nth-child(even) .bw-timeline-year {
    right: auto;
    left: -30px;
}

.bw-timeline-content {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.bw-timeline-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--bw-ink);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .bw-timeline::before {
        left: 20px;
    }

    .bw-timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .bw-timeline-year {
        left: 0 !important;
        right: auto !important;
    }
}

/* Global Presence Map (Simple styling) */
.bw-map-section {
    position: relative;
    background: #0a0e17;
    color: #fff;
}

.bw-map-bg {
    opacity: 0.3;
    width: 100%;
    height: auto;
}

.bw-loc-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
}

.bw-loc-title {
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bw-loc-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

/* Leadership (Simple) */
.bw-team-card {
    text-align: center;
}

.bw-team-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bw-team-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.bw-team-role {
    color: var(--bw-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Location Markers on Map */
.location-marker {
    position: absolute;
    z-index: 10;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

/* Individual Location Pins - Adjust these positions as needed */
.usa-marker {
    top: 26%;
    left: 22%;
}

.emea-marker {
    top: 40%;
    left: 55%;
}

.india-marker {
    top: 39%;
    left: 68%;
}

.location-pin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-pin i {
    font-size: 28px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    cursor: pointer;
    pointer-events: auto;
}

.location-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bw-accent);
    color: var(--bw-light);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.location-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--bw-accent) transparent transparent transparent;
}

.location-pin:hover .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .location-pin i {
        font-size: 20px;
    }


}