/**
 * WhatWeStandFor Component Styles
 * 
 * Styles for the "What We Stand For" section with banner and Vision/Mission
 */

.what-we-stand-section {
    position: relative;
    width: 100%;
}

.what-we-stand-round-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.what-we-stand-round-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top Banner Section */
.what-we-stand-banner {
    background: var(--darkBlue, #002c5f);
    position: relative;
}

.what-we-stand-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--lightBlue, #a3dbe8);
}

.what-we-stand-banner-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.what-we-stand-title-wrapper .what-we-stand-title {
    color: #a3dbe8;
    font-family: var(--font-bold, "Raleway-Bold", sans-serif);
    font-weight: 700;
    line-height: 1;
}

.what-we-stand-quote-wrapper {
    flex: 1;
    max-width: 700px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.quote-icon {
    flex-shrink: 0;
    width: 50px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.what-we-stand-quote {
    color: #ffffff;
    font-family: var(--font-medium, "Raleway-Medium", sans-serif);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

 
@media (max-width: 1200px) {
    

    .what-we-stand-quote {
        font-size: 16px;
    }
}

@media (max-width: 820px) {
    .what-we-stand-banner-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .what-we-stand-quote-wrapper {
        flex: unset;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
   

    .what-we-stand-banner {
        padding: 60px 0;
    }

    .what-we-stand-banner-content {
        flex-direction: column;
        gap: 0px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
    }

    .what-we-stand-title-wrapper {
        max-width: 100%;
    }

    

    .what-we-stand-quote-wrapper {
        max-width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
    }

    .what-we-stand-quote {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    

    .what-we-stand-banner-content {
        gap: 0px;
    }

    .what-we-stand-banner {
        padding: 40px 0;
    }

    
    .quote-icon {
        width: 35px;
        height: 35px;
    }

    .what-we-stand-quote {
        font-size: 14px;
    }
}