/* Hero Section styles, particles, and text styles moved to style.css for consistency */
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        /* Button styles moved to style.css for reusability */

        /* About Content with Images */
        .about-content {
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 3;
            border-radius: 30px 30px 0 0;
            padding: 80px 0;
            padding-bottom: 10px;
        }

        .about-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-text h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-coral-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            display: inline-block;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--neutral-600);
            margin-bottom: 24px;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--neutral-200);
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .stat-item:hover::before {
            transform: scaleX(1);
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-green-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 12px;
            font-family: var(--font-display);
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
        }

        /* Values Section - Alternating Layout */
        .values-section {
            background: var(--neutral-50);
            padding: 100px 0;
        }

        .values-container {
            max-width: 100%;
            margin: 0 auto;
        }

        .value-item {
            margin-bottom: 60px;
        }

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

        .value-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--neutral-200);
            position: relative;
            transition: var(--transition);
            overflow: hidden;
            display: grid;
            gap: 40px;
            align-items: center;
        }

        .value-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--light-blue) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-content:hover::before {
            opacity: 1;
        }

        .value-content:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }

        .value-image-container {
            width: 100%;
            height: 240px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .value-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .value-content:hover .value-image-container img {
            transform: scale(1.08);
        }

        .value-text {
            position: relative;
            z-index: 2;
        }

        .value-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-green-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            line-height: 1.3;
            display: inline-block;
        }

        .value-description {
            color: var(--neutral-600);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 24px;
        }

        .value-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .value-stat {
            display: flex;
            align-items: center;
            background: var(--light-blue);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-blue);
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .value-stat:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--border-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--border-hover);
        }

        .value-stat i {
            margin-right: 8px;
            font-size: 0.85rem;
        }

        /* Alternating Layout */
        .value-item:nth-child(even) .value-content {
            grid-template-areas: "text image";
            grid-template-columns: 1.2fr 0.8fr;
        }

        .value-item:nth-child(even) .value-text {
            grid-area: text;
        }

        .value-item:nth-child(even) .value-image-container {
            grid-area: image;
        }

        .value-item:nth-child(odd) .value-content {
            grid-template-areas: "image text";
            grid-template-columns: 0.8fr 1.2fr;
        }

        .value-item:nth-child(odd) .value-text {
            grid-area: text;
        }

        .value-item:nth-child(odd) .value-image-container {
            grid-area: image;
        }

        /* Statistics section styles moved to style.css for reusability */

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-card {
            background: white;
            border-radius: 24px;
            padding: 0;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--neutral-200);
            overflow: hidden;
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }

        .team-image {
            width: 100%;
            height: 350px;
            overflow: hidden;
            position: relative;
        }

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

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

        .team-overlay {
            display: none;
        }

        .team-info {
            padding: 30px 30px 20px 30px;
        }

        .team-name {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            background: var(--gradient-blue-coral);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            display: inline-block;
        }

        .team-role {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 16px;
        }

        .team-bio {
            color: var(--neutral-600);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .team-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .skill-tag {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .team-social {
            display: none;
        }

        /* Skills - Our Areas of Expertise Section */
        .skills-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .skills-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="skillsGrid" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23skillsGrid)"/></svg>');
            opacity: 0.3;
        }
        .skills-content {
            position: relative;
            z-index: 2;
        }
        .skills-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .skills-title .section-label {
            color: var(--brand-coral);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            display: block;
        }
        .skills-title h2 {
            color: white;
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .skills-title p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .skills-carousel-container {
            position: relative;
            overflow-x: auto;
            overflow-y: hidden;
            margin: 0 -20px;
            padding: 30px 20px;
            cursor: grab;
            scrollbar-width: none;
        }
        .skills-carousel-container::-webkit-scrollbar {
            display: none;
        }
        .skills-carousel-container:active {
            cursor: grabbing;
        }
        .skills-carousel {
            display: flex;
            animation: slideSkills 60s linear infinite;
            gap: 40px;
            width: fit-content;
            will-change: transform;
        }
        .skills-carousel:hover {
            animation-play-state: paused;
        }
        @keyframes slideSkills {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .skill-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 140px;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
            transition: left 0.6s ease;
        }
        .skill-item:hover::before {
            left: 100%;
        }
        .skill-item:hover {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--brand-green);
            box-shadow: var(--shadow-green);
        }
        .skill-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .skill-item:hover .skill-logo {
            transform: scale(1.1);
            background: rgba(96, 165, 250, 0.2);
        }
        .skill-logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        .skill-item:hover .skill-logo img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(2);
        }
        .skill-name {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.3;
        }
        /* Duplicate items for seamless loop */
        .skills-carousel-clone {
            display: flex;
            gap: 40px;
            margin-left: 40px;
        }
        
        /* Skills Responsive Design */
        @media (max-width: 768px) {
            .skills-section {
                padding: 80px 0;
            }
            .skills-title h2 {
                font-size: 2rem;
            }
            .skill-item {
                min-width: 120px;
                padding: 25px 15px;
            }
            .skills-carousel {
                gap: 30px;
            }
            .skills-carousel-clone {
                gap: 30px;
                margin-left: 30px;
            }
        }

        /* FAQ Section */
        .faq-section {
            background: var(--neutral-50);
            padding: 100px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--neutral-200);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow);
            border-color: var(--border-hover);
        }

        .faq-question {
            padding: 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--neutral-800);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary-blue);
        }

        .faq-icon {
            color: var(--primary-blue);
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 2000px;
            padding: 0 30px 30px;
            /* text-align: justify; */
        }

        .faq-answer p {
            color: var(--neutral-600);
            line-height: 1.7;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="ctaGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaGrid)"/></svg>');
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .btn-cta {
            background: white;
            color: var(--primary-blue);
            padding: 15px 35px;
            border: 3px solid white;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
        }

        .btn-cta:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }

        /* Footer styles moved to website/footer.css */

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-intro {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .value-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px;
            }

            .value-item:nth-child(even) .value-content,
            .value-item:nth-child(odd) .value-content {
                grid-template-areas: 
                    "image"
                    "text";
                grid-template-columns: 1fr;
            }

            .value-item:nth-child(even) .value-text,
            .value-item:nth-child(odd) .value-text {
                grid-area: text;
                width: 100%;
                max-width: 100%;
            }

            .value-item:nth-child(even) .value-image-container,
            .value-item:nth-child(odd) .value-image-container {
                grid-area: image;
                width: 100%;
                max-width: 100%;
            }

            .value-item:nth-child(even) .value-image-container,
            .value-item:nth-child(odd) .value-image-container {
                grid-area: image;
                width: 100%;
                max-width: 100%;
            }

            .value-title,
            .value-description,
            .value-stats {
                width: 100%;
                max-width: 100%;
            }

            .value-image-container {
                height: 200px;
            }

            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 60px;
            }

            .section {
                padding: 60px 0;
            }

            .about-content {
                padding: 60px 0;
                padding-bottom: 10px;
            }

            .about-text h3 {
                font-size: 1.6rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-item {
                padding: 30px 20px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .value-content {
                padding: 25px;
                gap: 25px;
            }

            .value-item {
                margin-bottom: 40px;
            }

            .value-title {
                font-size: 1.5rem;
            }

            .value-image-container {
                height: 180px;
                width: 100%;
                max-width: 100%;
            }

            .value-text {
                width: 100%;
                max-width: 100%;
            }

            .value-title,
            .value-description,
            .value-stats {
                width: 100%;
                max-width: 100%;
            }

            .value-stats {
                flex-wrap: wrap;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

        }

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

            .hero-section h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .value-card,
            .team-card {
                margin: 0 10px;
            }
        }