/* vision section*/
.vision-section {
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    margin-top: 64px;
}

.vision-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
}

.vision-section .subtitle {
    max-width: 48rem;
    margin: 1rem auto 0;
    color: var(--color-gray-500);
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 600;
}

.vision-section .intro-text {
    max-width: 56rem;
    margin: 3rem auto;
    text-align: left;
    font-size: 1.125rem;
}

.vision-cards-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: left;
}

.vision-card {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
}

.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 0.5rem;
}

.vision-card p {
    color: black;
}

        /* Hero Section */
        .hero-bg {
            position: relative;
            display: flex;
            align-items: center;
            text-align: center;
            background-color: rgba(37, 99, 235, 0.05);
            color: var(--gray-800);
            padding: 5rem 0;
        }

        span.blue {
            color: var(--blue-600);
        }

        .hero-background {
            position: absolute;
            inset: 0;
            z-index: -1;
            opacity: 0.2;
            background-size: cover;
            background-position: center;
        }

        .hero-bg h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-bg p {
            font-size: 1.125rem;
            max-width: 48rem;
            margin: 0 auto 1rem;
            opacity: 0.9;
        }

        /* General Section Styling */
        .section {
            padding: 5rem 0;
        }
        .section-white { background-color: var(--white); }
        .section-gray { background-color: var(--gray-100); }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--gray-800);
            margin: 0;
        }

        .section-header p {
            color: var(--gray-600);
            margin-top: 0.5rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        .content-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .content-layout p {
            color: var(--gray-600);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(1, 1fr);
        }

        .team-card {
            text-align: center;
            background-color: var(--white);
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
        }

        .team-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            object-fit: cover;
            border: 4px solid var(--gray-100);
        }

        .team-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .team-card p {
            color: var(--blue-600);
            font-weight: 500;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .hero-bg h1 { font-size: 3.75rem; }
            .hero-bg p { font-size: 1.25rem; }

            .content-layout { grid-template-columns: repeat(2, 1fr); }
            .content-layout.reverse { grid-template-columns: repeat(2, 1fr); }
            .content-layout.reverse .content-text { order: 2; }
            .content-layout.reverse .content-image { order: 1; }

            .team-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .team-grid { grid-template-columns: repeat(3, 1fr); }
        }

/* ============================================================
   Professional Certifications Section
   ============================================================ */
.cert-category {
    margin-bottom: 2.5rem;
}

.cert-category:last-child {
    margin-bottom: 0;
}

.cert-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.cert-badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.cert-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 130px;
}

.cert-badge-img {
    width: 100px;
    height: 100px;
    margin-bottom: 0.75rem;
}

.cert-badge-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-badge-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
}

.cert-badge-circle.cert-pm {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.cert-badge-circle.cert-oracle {
    background: linear-gradient(135deg, #c74634 0%, #f80000 100%);
}

.cert-badge-circle.cert-iso {
    background: linear-gradient(135deg, #1e3a5f 0%, #374151 100%);
}

.cert-badge-circle.cert-appi {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
}

.cert-badge-text {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}

.cert-badge-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.cert-badge-issuer {
    font-size: 0.7rem;
    color: var(--gray-500);
    line-height: 1.3;
}

@media (max-width: 480px) {
    .cert-badge-grid {
        gap: 1.25rem;
    }

    .cert-badge-item {
        width: 100px;
    }

    .cert-badge-img,
    .cert-badge-circle {
        width: 80px;
        height: 80px;
    }
}