/* --- Image Formatting --- */
.img-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px; /* Adjust based on your actual images */
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top-left rounded curve */
.shape-tl {
    border-radius: 200px 0 0 0;
}

/* Bottom-right rounded curve */
.shape-br {
    border-radius: 0 0 200px 0;
}

/* Push the right image down slightly */
.img-offset {
    margin-top: 60px;
}

/* --- Floating Stats Card --- */
.stats-card {
    position: absolute;
    bottom: 0px;
    left: 15px;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
    min-width: 260px;
}

.stats-icon-wrapper svg {
    width: 45px;
    height: 45px;
    fill: var(--color-4);
}
.stats-icon-wrapper span {
    font-size: 35px;
    color: var(--color-6);
}
.text-brand-orange{
    color: var(--color-6);
}
.stats-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-3);
    margin-bottom: 0;
    line-height: 1;
}

/* --- Buttons & Lists --- */
.btn-brand-orange {
    background-color: var(--color-4);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.btn-brand-orange:hover {
    background-color: #bf5315;
    color: white;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--text-grey);
    font-size: 0.95rem;
}

.custom-list svg {
    width: 20px;
    height: 20px;
    fill: var(--color-4);
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}
/*Who we are css start*/
.who-we-are-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Main Flex Layout */
.wwa-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}
.wwa-text-box {
    flex: 1 1 30%; /* Takes up roughly 35% of the space */
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* --- Right Cards Area --- */
.wwa-cards-wrapper {
    flex: 1 1 60%; /* Takes up the remaining 60-65% */
    display: flex;
    gap: 25px;
}

.wwa-card {
    flex: 1;
    border-radius: 12px;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Specific Card Colors */
.vision-card {
    background-color: var(--color-3);
}

.mission-card {
    background-color: #ffa000;;
}

/* Card Inner Content */
.card-icon {
    font-size: 45px;
    margin-bottom: 25px;
}

.vision-card .card-icon {
    color: var(--color-8);
}

.mission-card .card-icon {
    color: var(--color-3);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    color: #ffffff;
}

.card-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .stats-card {
        left: 15px; /* Pull inside on mobile */
        bottom: -20px;
    }
    .img-wrapper { height: 350px; }
    .img-offset { margin-top: 40px; }
    .wwa-text-box {
        flex: 1 1 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }
    
    .wwa-cards-wrapper {
        flex: 1 1 100%;
    }
}
@media (max-width: 767px) {
    .wwa-cards-wrapper {
        flex-direction: column; /* Stack the cards on mobile phones */
    }
}