
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --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;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 8rem 5% 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 2rem;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }

        .section-title.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 3rem;
            max-width: 700px;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition) 0.2s;
        }

        .section-subtitle.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
        #hero {
            position: relative;
            padding-top: 6rem;
            color: white;
            text-align: left;
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(135deg, rgba(108, 99, 255, 0.9) 0%, rgba(16, 185, 129, 0.8) 100%); /* Updated with new primary color */
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.5) 30%, rgba(16, 185, 129, 0.4) 90%);
            z-index: 1;
        }

        #hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('Img/hero.jpg') center/cover no-repeat;
            z-index: 0;
            animation: zoomInOut 20s infinite alternate;
        }

        /* [Rest of hero section CSS remains the same] */

        /* Testimonials Section - Mobile Fix */
        #testimonials {
            background-color: white;
            text-align: center;
            padding-bottom: 4rem;
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 3rem auto 0;
            position: relative;
            padding: 0 5%;
        }

        .swiper {
            width: 100%;
            height: 100%;
            padding: 2rem 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 0 10px;
            text-align: center;
            opacity: 0;
            transition: var(--transition);
        }

        @media (max-width: 768px) {
            .testimonial-card {
                padding: 1.5rem;
                margin: 0 5px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
            
            .swiper {
                padding: 1rem 0;
            }
        }
        

        /* [Rest of your CSS remains the same] */