
        :root {
            --primary: #6C63FF;
            --primary-dark: #564FD1;
            --secondary: #10b981;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #94a3b8;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Navigation */
        /*nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav.scrolled {
            padding: 1rem 5%;
            background-color: rgba(255, 255, 255, 0.98);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }*/

        /* Hero Section */
        .about-hero {
            position: relative;
            padding: 12rem 5% 6rem;
            color: white;
            text-align: center;
            overflow: hidden;
            /*background: linear-gradient(135deg, rgba(108, 99, 255, 0.9) 0%, rgba(16, 185, 129, 0.8) 100%);*/
             background: linear-gradient(135deg, rgba(108, 99, 255, 0.5) 0%, rgba(16, 185, 129, 0.4) 100%);


        }

        .about-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('Img/hero1.jpg') center/cover no-repeat;
            z-index: -1;
             opacity: 0.9; /* Try values between 0.5 and 0.7 */

        }

        .about-hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }

        .about-hero h1.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .about-hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition) 0.2s;
        }

        .about-hero p.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* About Content */
        .about-content {
            padding: 6rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-section {
            display: flex;
            align-items: center;
            gap: 5rem;
            margin-bottom: 6rem;
        }

        .about-section.reverse {
            flex-direction: row-reverse;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .about-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        /* Team Section */
        .team-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
            text-align: center;
        }

        .team-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .team-section p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-member {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 3px solid var(--primary);
        }

        .team-member h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .team-member p.position {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-member p.bio {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            color: var(--primary);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }

        /* Values Section */
        .values-section {
            padding: 6rem 5%;
            background: white;
        }

        .values-section h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 4rem;
            color: var(--primary);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
        }

        .value-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.9) 0%, rgba(16, 185, 129, 0.8) 100%);
            color: white;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: white;
            color: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.9);
        }

        /* Footer */
        footer {
            background-color: #0f172a;
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-social a {
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-section {
                flex-direction: column;
                gap: 3rem;
            }
            
            .about-section.reverse {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 3rem;
            }
            
            .about-hero p {
                font-size: 1.2rem;
            }
            
            .about-section h2 {
                font-size: 2rem;
            }
            
            .team-section h2, .values-section h2, .cta-section h2 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .about-hero {
                padding: 10rem 5% 4rem;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .team-section h2, .values-section h2, .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
        }
        