     /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #f93803;
            --primary-dark: #c0392b;
            --secondary: #3498db;
            --secondary-dark: #2980b9;
            --accent: #f1c40f;
            --accent-dark: #f39c12;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --white: #ffffff;
            --gray: #ecf0f1;
            --dark-gray: #7f8c8d;
            --text: #2c3e50;
            --text-light: #95a5a6;
            --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.2);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 3D Effects and Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Header Styles with 3D Effect */
        .header {
            background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            transform: translateZ(0);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: 100px;
            transition: var(--transition);
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .navbar ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .navbar a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
            text-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }

        .navbar a:hover {
            color: var(--primary);
        }

        .navbar a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
            transition: var(--transition);
        }

        .navbar a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 25px;
            justify-content: space-between;
        }

        .mobile-menu-btn span {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
            transition: var(--transition);
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Button Styles with 3D Effect */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            border: none;
            cursor: pointer;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transform: translateZ(0);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255,255,255,0.2), transparent);
            transform: translateY(100%);
            transition: var(--transition);
        }

        .btn:hover::before {
            transform: translateY(0);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px) translateZ(10px);
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-5px) translateZ(10px);
            box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
        }

        .btn-light {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .btn-light:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
        }

        /* Hero Section with 3D Effects */
        .hero {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: var(--white);
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: translateZ(-50px);
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            display: inline-block;
        }

        .hero-text h1::after {
            content: attr(data-text);
            position: absolute;
            top: 5px;
            left: 5px;
            color: transparent;
            z-index: -1;
            -webkit-text-stroke: 1px rgba(255,255,255,0.5);
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .floating-card {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            overflow: hidden;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 5px solid rgba(255,255,255,0.2);
        }

        .floating-card img {
            width: 100%;
            display: block;
            transition: var(--transition);
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            text-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 5px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.6;
        }

        .text-center {
            text-align: center;
            margin-top: 40px;
        }

        /* Features Section */
        .features-section {
            background-color: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            transform-style: preserve-3d;
            border: 1px solid rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.4s; }
        .feature-card:nth-child(4) { animation-delay: 0.6s; }

        .feature-card:hover {
            transform: translateY(-15px) translateZ(10px);
            box-shadow: var(--shadow-hover);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 25px rgba(0,0,0,0.15);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Courses Preview Section */
        .courses-preview {
            background-color: var(--gray);
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .course-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            transform-style: preserve-3d;
            opacity: 0;
            transform: translateY(30px);
        }

        .course-card.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .course-card:nth-child(2) { animation-delay: 0.2s; }
        .course-card:nth-child(3) { animation-delay: 0.4s; }

        .course-card:hover {
            transform: translateY(-15px) translateZ(10px);
            box-shadow: var(--shadow-hover);
        }

        .course-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .course-card:hover .course-image img {
            transform: scale(1.1);
        }

        .course-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .course-content {
            padding: 25px;
        }

        .course-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .course-content p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        .course-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--white);
        }

        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            transform-style: preserve-3d;
            border: 1px solid rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(30px);
        }

        .testimonial-card.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }

        .testimonial-card:hover {
            transform: translateY(-10px) translateZ(10px);
            box-shadow: var(--shadow-hover);
        }

        .stars {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .testimonial-content p {
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
            color: var(--text);
            position: relative;
            padding: 0 20px;
        }

        .testimonial-content p::before,
        .testimonial-content p::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            font-family: Georgia, serif;
        }

        .testimonial-content p::before {
            top: -20px;
            left: 0;
        }

        .testimonial-content p::after {
            bottom: -40px;
            right: 0;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
        }

        .testimonial-author h4 {
            color: var(--dark);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .testimonial-author p {
            font-style: normal;
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: 100% 100%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--dark) 0%, #1a2530 100%);
            color: var(--white);
            padding: 80px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            height: 40px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .footer-section p {
            margin-bottom: 20px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 50%;
            transition: var(--transition);
            transform: translateZ(0);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .footer-section h3 {
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            opacity: 0.8;
            display: inline-block;
        }

        .footer-section a:hover {
            color: var(--accent);
            opacity: 1;
            transform: translateX(5px);
        }

        .footer-section i {
            margin-right: 10px;
            color: var(--primary);
            width: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
            position: relative;
            z-index: 1;
        }

        .footer-bottom p {
            margin-bottom: 5px;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 65px;
            height: 65px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
            transition: var(--transition);
            animation: pulse 2s infinite;
            transform: translateZ(0);
        }

        .whatsapp-link:hover {
            background-color: #128c7e;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.7);
        }

        .whatsapp-link i {
            font-size: 32px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                margin-top: 50px;
            }
            
            .hero-text h1 {
                font-size: 2.8rem;
            }
            
            .section-header h2 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 40px 20px;
                overflow-y: auto;
            }
            
            .navbar.active {
                left: 0;
            }
            
            .navbar ul {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            
            .navbar li {
                margin: 10px 0;
                text-align: center;
                width: 100%;
            }
            
            .navbar a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid var(--gray);
                font-size: 1.1rem;
            }
            
            .navbar a::after {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero-text h1 {
                font-size: 2.3rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .testimonials-slider {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            section {
                padding: 80px 0;
            }
            
            .hero {
                padding: 100px 0 80px;
            }
            
            .cta-section {
                padding: 80px 0;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 15px;
            }
            
            .features-grid,
            .courses-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 20px;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
            
            .footer {
                padding: 60px 0 20px;
            }
        }

/* Gallery Section */
.gallery-section {
    background-color: var(--gray);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 200px;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* About Preview Section */
.about-preview {
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Featured Courses Section */
.featured-courses {
    background-color: var(--gray);
}

.courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.course:hover img {
    transform: scale(1.1);
}

.course-content {
    padding: 20px;
}

.course h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.course p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray);
    position: relative;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author p {
    font-style: normal;
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100% 100%;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    background-color: var(--gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.salary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 16px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.salary-table th {
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    text-align: left;
}

.salary-table td {
    border: 1px solid var(--gray);
    padding: 12px;
}

.salary-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.discussion {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.discussion h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.discussion ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.discussion li {
    margin-bottom: 8px;
}

/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.7);
}

.whatsapp-link i {
    font-size: 32px;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image,
    .about-image {
        margin-top: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 40px 20px;
        overflow-y: auto;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .navbar li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    
    .navbar a {
        display: block;
        padding: 12px;
        border-bottom: 1px solid var(--gray);
    }
    
    .navbar a::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features,
    .testimonial-list {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 16px;
    }
}
/* Courses Filter */
.courses-filter {
    padding: 40px 0;
    background-color: var(--gray);
}

.filter-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.filter-container input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.filter-container button {
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-weight: 600;
}

/* Courses List */
.courses-list {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.course p {
    margin-bottom: 15px;
    color: var(--secondary);
}

.course-details {
    margin-bottom: 20px;
}

.course-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.course-footer {
    padding: 0 20px 20px;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background-color: var(--gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.info-item h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}