/* .who-we-are-div {
    margin: 0.625rem 0.725rem;
} */

.mission-vision-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
}

.image-overlap {
    position: relative;
}

.image-overlap img:first-child {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.image-overlap img:last-child {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 20px;
    width: 60%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4B5563;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6B7280;
    margin-top: 0.25rem;
}

.stat-description {
    color: #6B7280;
    font-size: 0.95rem;
}

.beliefs-image-container {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.beliefs-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.belief-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.belief-item {
    margin-bottom: 2.5rem;
}

.belief-item:last-child {
    margin-bottom: 0;
}

.belief-div {
    background-color: #F2FEFF;
}

   /* About Hero Section */
    .about-hero-section {
        background: linear-gradient(135deg, #2E7FF3 0%, #4C9FF5 100%);
        color: white;
        padding: 80px 20px;
        text-align: center;
    }

    .about-hero-section h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .about-hero-section .subtitle {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    .about-hero-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Mission & Vision Cards */
    .mission-vision-section {
        background-color: #F8F9FA;
        padding: 80px 20px;
    }

    .mission-card, .vision-card {
        border-radius: 30px;
        padding: 50px 40px;
        color: white;
        height: 100%;
        min-height: 300px;
        display: flex;
        flex-direction: column;
    }

    .mission-card {
        background: linear-gradient(135deg, #2E7FF3 0%, #1E6FE3 100%);
    }

    .vision-card {
        background: linear-gradient(135deg, #9333EA 0%, #A855F7 100%);
    }

    .mission-card .icon, .vision-card .icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .mission-card h3, .vision-card h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .mission-card p, .vision-card p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 0;
    }

    /* What We Do Section */
    .what-we-do-section {
        background-color: #E8F4F8;
        padding: 80px 20px;
    }

    .what-we-do-section h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 3rem;
        color: #1a1a1a;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        height: 100%;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .service-card .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: white;
    }

    .service-icon.purple { background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%); }
    .service-icon.cyan { background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%); }
    .service-icon.teal { background: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%); }
    .service-icon.blue { background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%); }
    .service-icon.green { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }
    .service-icon.indigo { background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%); }

    .service-card h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .service-card p {
        color: #6B7280;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 768px) {
        .about-hero-section h1 {
            font-size: 2rem;
        }

        .about-hero-section .subtitle {
            font-size: 1.2rem;
        }

        .about-hero-section p {
            font-size: 1rem;
        }

        .what-we-do-section h2 {
            font-size: 2rem;
        }

        .mission-card h3, .vision-card h3 {
            font-size: 1.5rem;
        }
    }

     .tech-people-section {
        background-color: #E8F4F8;
        padding: 80px 20px;
    }

    .tech-people-section .content-block {
        text-align: center;
        margin-bottom: 4rem;
    }

    .tech-people-section .content-block:last-child {
        margin-bottom: 0;
    }

    .tech-people-section h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 2rem;
    }

    .tech-people-section p {
        font-size: 1.2rem;
        color: #4B5563;
        line-height: 1.8;
        max-width: 1100px;
        margin: 0 auto 1.5rem;
    }

    .tech-people-section p:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .tech-people-section {
            padding: 60px 20px;
        }

        .tech-people-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .tech-people-section p {
            font-size: 1rem;
        }

        .tech-people-section .content-block {
            margin-bottom: 3rem;
        }
    }