/* ── About Section Layout ── */
.about_section { 
    background: #fff; 
    padding: 50px 0; 
}

.about-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.about-left-col {
    flex: 0 0 32%;
    position: relative;
}

.about-left-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.about-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.about-left-image:hover img { transform: scale(1.06); }

.about-left-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.about-right-col {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
}

.about-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    flex: 1;
}

.about-containers-image {
    flex: 0 0 28%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.about-containers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.8s ease;
}

.about-containers-image:hover img { transform: scale(1.06); }

.about-text-content {
    background: #fff;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.about-desc {
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

/* ── Experience Box ── */
.about-experience-box {
    border-left: 4px solid var(--red);
    padding: 18px 22px;
    margin-bottom: 28px;
    background: var(--light);
    border-radius: 0 8px 8px 0;
}

/* ── Statistics Bar ── */
.about-statistics-bar {
    background: var(--black);
    padding: 15px 15px;
    position: relative;
    overflow: hidden;
}

.about-statistics-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(252, 31, 9, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
    transition: 0.3s;
    flex: 1;
    min-width: 120px;
}

.stat-item:hover { transform: translateY(-5px); }

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-left-col, .about-right-col {
        flex: 0 0 100%;
    }
    .about-left-image {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .about-containers-image {
        display: none; 
    }
    .about_section {
        padding: 20px 0px;
    }
}


/*extra section css*/
.values_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value_card {
    background: var(--white);
    border-radius: 16px;
    padding: 15px 20px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.value_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(13,43,82,.1);
    border-color: transparent;
}

.value_icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    transition: 0.4s ease;
}

.value_card:hover .value_icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.value_card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

