/* CSS extracted from about-us.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }



        /* Who We Are Section - Blue Background */
        .who-we-are-section {
            padding: 5rem 0;
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            color: white;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .floating-icons {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            color: rgba(191, 219, 254, 0.6);
            animation: float 4s ease-in-out infinite;
        }

        .floating-icon.pulse {
            animation: pulse 3s ease-in-out infinite;
        }

        .floating-icon.rotate {
            animation: rotate 6s linear infinite;
        }

        .floating-icon.bounce {
            animation: bounce 3s ease-in-out infinite;
        }

        .floating-icon.drift {
            animation: drift 5s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.4;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes bounce {
            0%, 20%, 53%, 80%, 100% {
                transform: translateY(0);
            }
            40%, 43% {
                transform: translateY(-30px);
            }
            70% {
                transform: translateY(-15px);
            }
            90% {
                transform: translateY(-4px);
            }
        }

        @keyframes drift {
            0%, 100% {
                transform: translateX(0px) translateY(0px);
            }
            25% {
                transform: translateX(10px) translateY(-15px);
            }
            50% {
                transform: translateX(-5px) translateY(-25px);
            }
            75% {
                transform: translateX(-10px) translateY(-10px);
            }
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .who-we-are-title {
            font-size: 3.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 3rem;
            color: white;
        }

        .who-we-are-content {
            max-width: 4xl;
            margin: 0 auto;
            text-align: center;
        }

        .who-we-are-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #bfdbfe;
        }

        /* Meet the Team Section - White Background */
        .team-section {
            padding: 5rem 0;
            background: white;
        }

        .team-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 1.5rem;
            color: #1f2937;
        }

        .team-subtitle {
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 4rem;
            color: #6b7280;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-photo {
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            position: relative;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-card:hover .team-photo img {
            transform: scale(1.1);
        }

        .team-member {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 1.5rem 1.25rem;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .team-image {
            display: none;
        }

        .team-info {
            padding: 0;
            text-align: center;
        }

        .team-info h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #111827;
        }

        .team-role {
            color: #3b82f6;
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .team-description {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        .team-link {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .team-link:hover {
            background: linear-gradient(135deg, #1d4ed8, #1e40af);
            transform: translateY(-1px);
        }

        .team-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: #2563eb;
            font-weight: 500;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .team-experience {
            color: #059669;
            font-weight: 600;
            font-size: 0.875rem;
            background: #ecfdf5;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            display: inline-block;
        }



        /* Responsive Design */
        @media (min-width: 768px) {

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

        @media (max-width: 767px) {



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

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* SVG Icons */
        .icon {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }

        /* Mission & Values Section */
        .mission-section {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .mission-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .mission-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .mission-icon svg {
            width: 2rem;
            height: 2rem;
        }

        .mission-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .mission-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Approach Section */
        .approach-section {
            padding: 5rem 0;
            background: white;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .approach-item {
            text-align: center;
            padding: 2rem;
        }

        .approach-icon {
            width: 3.5rem;
            height: 3.5rem;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .approach-icon svg {
            width: 1.75rem;
            height: 1.75rem;
        }

        .approach-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .approach-item p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #1f2937, #374151);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #60a5fa;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: #d1d5db;
            font-weight: 500;
        }

        /* Section Titles */
        .section-title {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .section-subtitle {
            font-size: 1.125rem;
            text-align: center;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Footer styles are handled by header.css */




/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Gallery Grid Layout - 3 Images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Tablet: 3 columns in a row */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 600px;
    }
}

/* Mobile: Single column */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 300px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1 / 1; /* Force square aspect ratio */
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .overlay {
    background: rgba(0, 0, 0, 0.4);
}

.gallery-item .overlay svg {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay svg {
    opacity: 1;
}

/* Lightbox2 Custom Styling */
.lb-overlay {
    background: rgba(0, 0, 0, 0.9) !important;
}

.lb-outerContainer {
    border-radius: 8px;
    overflow: hidden;
}

.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.lb-data .lb-number {
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
}

.lb-data .lb-close {
    background-size: 24px 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lb-data .lb-close:hover {
    opacity: 1;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    background-size: 32px 32px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

.lb-loader {
    border-radius: 50%;
}



/* Responsive adjustments */
@media (max-width: 640px) {
    .gallery-item img {
        height: 12rem; /* Smaller height on mobile */
    }

    .lb-nav a.lb-prev,
    .lb-nav a.lb-next {
        background-size: 24px 24px;
    }

    .lb-data .lb-caption {
        font-size: 14px;
        padding: 8px 0;
    }
}