
        /* Reset & Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

     body {
    margin: 0;
    min-height: 100vh;
    background: url('image/bg2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    position: relative;
}


        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        /* Navigation Bar */
        nav {
            position: fixed;
            width: 100%;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 10px;
            background-color: rgba(0, 0, 0, 0.7);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.0rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .logo img {
            height: 30px;
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #4dabf7;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-outline {
            border: 2px solid white;
            background: transparent;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: #333;
        }

        .btn-primary {
            background: #4dabf7;
            border: 2px solid #4dabf7;
            color: white;
        }

        .btn-primary:hover {
            background: #339af0;
            border-color: #339af0;
        }

        /* Hero Section */
        .hero {
            position: relative;
top: -20px;


            z-index: 1;
            display: flex;
            min-height: 100vh;
            padding: 1px 40px 0;
        }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 1000px;
            padding-right: 10px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .btn-lg {
            padding: 12px 30px;
            font-size: 1.1rem;
        }

        /* Login Panel */
        .login-panel {
            position: relative;
            z-index: 1;
            width: 380px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            padding: 20px;
            margin: auto 0;
            color: #333;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

         .login-container h1 {
            margin-bottom: 20px;
            color: #333;
            font-size: 1.8rem;
        }

        .input-group {
            margin-bottom: 15px;
        }

        .input-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border 0.3s;
        }

        .input-group input:focus {
            border-color: #007bff;
            outline: none;
        }

        button {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            font-size: 16px;
            font-weight:bold;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            color: white;
            background-color: #007bff;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #0069d9;
        }

        .divider {
            margin: 25px 0;
            text-align: center;
            position: relative;
            color: #777;
        }

        .divider::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: #eee;
            z-index: -1;
        }

        .divider span {
            background: white;
            padding: 0 15px;
        }

        /* Sections */
        section {
            padding: 30px 50px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
        }

        /* Languages Section */
        .languages {
            background: rgba(0, 0, 0, 0.7);
            margin-top: -95px;
        }

        .language-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: -30px;
        }

        .language-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 10px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
            backdrop-filter: blur(5px);
        }

        .language-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .language-card img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            margin-bottom: 10px;
        }

        .language-card h5 {
            font-size: 1.0rem;
            margin-bottom: 10px;
        }

        /* Features Section */
        .features {
            background: rgba(0, 0, 0, 0.5);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #4dabf7;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Courses Section */
        .courses {
            background: rgba(0, 0, 0, 0.6);
        }

        .course-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .course-tab {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .course-tab.active {
            background: #4dabf7;
            font-weight: bold;
        }

        .course-tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.2);
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .course-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .course-card:hover {
            transform: translateY(-5px);
        }

        .course-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .course-content {
            padding: 20px;
        }

        .course-level {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(77, 171, 247, 0.2);
            border-radius: 30px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .course-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .course-card p {
            margin-bottom: 15px;
            color: #ddd;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing {
            background: rgba(0, 0, 0, 0.7);
        }

        .pricing-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .pricing-tab {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pricing-tab.active {
            background: #4dabf7;
            font-weight: bold;
        }

        .pricing-tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.2);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
        }

        .pricing-card.popular {
            border: 2px solid #4dabf7;
            position: relative;
        }

        .popular-tag {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #4dabf7;
            padding: 3px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .price span {
            font-size: 1rem;
            color: #aaa;
        }

        .pricing-features {
            margin-bottom: 30px;
        }

        .pricing-features li {
            margin-bottom: 10px;
            list-style: none;
        }

        /* About Section */
        .about {
            background: rgba(0, 0, 0, 0.5);
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #4dabf7;
            margin-bottom: 5px;
        }

        /* Contact Section */
        .contact {
            background: rgba(0, 0, 0, 0.6);
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-icon {
            font-size: 1.2rem;
            margin-right: 15px;
            color: #4dabf7;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: white;
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-form button {
            width: 100%;
        }

        /* Footer */
        footer {
            position: relative;
            z-index: 1;
            background: rgba(0, 0, 0, 0.8);
            padding: 50px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #4dabf7;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #4dabf7;
        }

        .copyright {
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                padding-top: 120px;
            }

            .hero-content {
                max-width: 100%;
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }

            .cta-buttons {
                justify-content: center;
            }

            .login-panel {
                margin: 0 auto 50px;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }
              .logo {
          font-size: 0.8rem;
            
        }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0px 0px;
            }

            .nav-links {
                gap: 10px;
            }

            .hero h1 {
                font-size: 2.0rem;
            }

            section {
                padding: 50px 10px;
            }

            .language-grid {
                grid-template-columns: repeat(auto-fill, minmax(*70px, 1fr));
            }

            .course-grid {
                grid-template-columns: 1fr;
            }
        }
        
