     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #fef7f0 0%, #f8f4f0 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .highlight{
            color: #ffd700;
        }

        /* Header */
       

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

#logo_nev{
    width: 40px;
            height: 40px;
            
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ffd700;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-login {
            color: #333;
        }

        .btn-primary {
            width: 100%;
            background: linear-gradient(45deg, #ffd700);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }


/* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8eb62 100%, #f5a03e 20%);
            text-align: center;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ea00ff, #bb00dc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .heroo-text h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #6811f5, hsl(234, 94%, 50%));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }.herooo-text h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #0044ff, #0044ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }
         .heroo-text p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }
         .herooo-text p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ff6b35;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }

        .hero-image {
            position: relative  ;
        }

        .course-card-hero {
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: rotate(-5deg);
            transition: transform 0.3s;
        }

        .course-card-hero:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .course-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #ffdd0046 0%, #ff8d5c64 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Popular Courses Section */
         #websitei-mg{
                height: 50%;
                width:30%;

            }
        .popular-courses {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .section-title .highlight {
            color: #ff6b35;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .course-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        
        .course-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .course-info {
            padding: 20px;
        }

        .course-title {
            font-weight: bold;
            margin-bottom: 10px;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stars {
            color: #ffd700;
        }

         /* CTA Section */
        
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8eb62 0%, #f5a03e 100%);
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

       .btn-white {
            background: rgb(255, 255, 255);
            color: #fbbf24;
            padding: 20px 40px;
            font-size: 1.1rem;
            font-weight: bold;
        }
         #btnbtn-white :hover {
  color: #ffffff;
  background-color: #d29703;
}
           
#btnbtn-white.active {

  color: #fbbf24;
  background-color: gray 600;
}

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 60px 0 20px;
            align-content: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            padding-top: 1rem;
            text-align: center;
            color: #999;
        }
        .iconslogo{
            margin-left: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            #websitei-mg{
                height: 35%;
                width:30%;

            }
        .btn {
            padding: 10px 17px; 
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

             .btn-primary {
            width: 80%;
            background: linear-gradient(45deg, #ffd700);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
              .cta h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
       

        .section-title .highlight {
            color: #ff6b35;
        }
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                grid-template-columns: repeat(2, 1fr);

            }

             .courses-grid {
            display: grid;
            grid-template-columns: 1fr 1fr ;
              gap: 1rem;
            margin-bottom: 1rem;
        }

            .teachers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 1rem;
        }
         .hero-text h1 {
            font-size: 28px;
          
        }
        .heroo-text h1 {
            font-size: 28px;
         
        }.herooo-text h1 {
            font-size: 28px;
           
        }
         .hero-text p {
            font-size: 80%;
            color: #666;
            margin-bottom: 2rem;
        }
        .heroo-text p {
            font-size: 80%;
            color: #666;
            margin-bottom: 2rem;
        }
        .herooo-text p {
            font-size: 80%;
            color: #666;
            margin-bottom: 2rem;
        }
        }

     

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        .course-card, .teacher-card, .stat-card, .category-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
    