
        * {
            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 */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: center;
            align-items: center;
             width: 100%;
            position: sticky;
            top: 0;
            background: transparent;
            box-shadow: #888888;
            backdrop-filter: blur(10px);
            z-index: 999;
        }
        .nevbar-contaienr{
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0 2rem;
            max-width: 1600px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        #logo_nev{
            width: 40px;
            height: 40px;
            
        }

        .nevbar-contaienr .nav-links {
            display: flex;
            text-align: center;
            list-style: none;
            gap: 2rem;
        }

      .nevbar-contaienr  .nav-links li a {
            text-decoration: none;
            color: #333;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s;
            padding: 3px 20px;
            border-radius: 16px;
            border: 2px solid transparent;
            transition: all o.7s ease;
            white-space: nowrap;
        }

        .nevbar-contaienr  .nav-links li a:hover {
           color: #ffd700;
            background: #4d4d4db9;
        }
        
        .nevbar-toggle{
            display: none;
            background: transparent;
            padding: 10px;
            border: none;
            cursor: pointer;
        }
        .bar{
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background: #000000;
            transition: all 0.3s ease-in-out;
        }

        .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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ff6b35" opacity="0.1"><path d="M0,50 Q250,20 500,50 T1000,50 L1000,100 L0,100 Z"/></svg>') no-repeat bottom;
            background-size: 100% 100px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr     ;
          
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #CD2122, #f45d11);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-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 {
            width: 50%;
            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, #667eea 0%, #af76e9 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Popular Courses Section */
        .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: 150px;
            object-fit: cover;
        }

         #websitei-mg{
                height: 50%;
                width:30%;

            }
        .course-info {
            padding: 15px;
        }

        .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: 2px;
        }

        .stars {
            color: #ffd700;
        }

        /* Categories Section */
        .categories {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .category-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .category-icon.mondays { background: linear-gradient(45deg, #667eea, #764ba2); }
        .category-icon.computer { background: linear-gradient(45deg, #f093fb, #f5576c); }
        .category-icon.competitive { background: linear-gradient(45deg, #4facfe, #00f2fe); }
        .category-icon.coaching { background: linear-gradient(45deg, #43e97b, #38f9d7); }


        .Categoriesa{
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        /* Teachers Section */

        
        .teachers {
            padding: 80px 0;
            background: white;
        }

        .teachers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .teacher-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .teacher-card:hover {
            transform: translateY(-5px);
        }

        .teacher-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .teacher-info {
            padding: 20px;
        }

        .teacher-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .teacher-role {
            color: #666;
            font-size: 0.9rem;
        }
       
        /* Stats Section */
        .stat-card:hover {
            transform: translateY(-5px);
            transform: scale(1);
        }
        .stats-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            text-align: center;
            
        }

        .stat-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: 0.6s;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .stat-icon.students { background: linear-gradient(45deg, #667eea, #764ba2); }
        .stat-icon.courses { background: linear-gradient(45deg, #f093fb, #f5576c); }
        .stat-icon.users { background: linear-gradient(45deg, #4facfe, #00f2fe); }

        .big-number {
            font-size: 3rem;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 0.5rem;
        }

       

        /* 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) {

             .cta h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
             .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
             .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #666;
        }
            .hero-text h1 {
                font-size: 2.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                grid-template-columns: repeat(2, 1fr);

            }

            .courses-grid {
                grid-template-columns: 1fr;
            }

            .teachers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

     

        /* 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); }
        }
   
   
        @media (max-width: 880px) {
            #websitei-mg{
                height: 35%;
                width:30%;

            }
            
            
        .btn-primary {
            width: 80%;
            background: linear-gradient(45deg, #ffd700);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

             .courses-grid {
            display: grid;
            grid-template-columns: 1fr 1fr ;
              gap: 1rem;
            margin-bottom: 1rem;
          
        }
         .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 1rem;
        }

    
}


 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Header Bar */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeIn 1s ease;
        }

        /* Desktop Navigation (800px and above) */
        .desktop-nav {
            display: none;
            gap: 30px;
            align-items: center;
        }

        .desktop-nav a {
            color: #333;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 5px 10px;
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #ff2222, #fddc1f);
            transition: width 0.3s ease;
        }

        .desktop-nav a:hover {
           color: #CD2122;
            transform: translateY(-2px);
        }

        .desktop-nav a:hover::after {
            width: 80%;
        }

        /* Hamburger Menu Icon (Mobile Only) */
        .menu-btn {
            position: relative;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            display: block;
        }

        .menu-btn:hover {
            transform: scale(1.1);
        }

        .menu-btn span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .menu-btn span:nth-child(1) {
            top: 5px;
        }

        .menu-btn span:nth-child(2) {
            top: 13.5px;
            opacity: 1;
        }

        .menu-btn span:nth-child(3) {
            top: 22px;
        }

        /* Hamburger Animation when Active */
        .menu-btn.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 13.5px;
            background: #383838;
        }

        .menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 13.5px;
            background: #383838;
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 60vh;
            background: linear-gradient(135deg, #f8b1b1 0%, #ffb17d 100%);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            border-bottom-left-radius: 30px;
            overflow: hidden;
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Menu Content */
        .menu-content {
            padding: 80px 30px 30px;
            height: 100%;
            overflow-y: auto;
        }

        .menu-content::-webkit-scrollbar {
            width: 5px;
        }

        .menu-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 5px;
        }

        .menu-item {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 15px 20px;
            margin: 10px 0;
            font-size: 18px;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.3s ease;
            transform: translateX(100px);
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.5s ease;
        }

        .menu-item:hover::before {
            left: 0;
        }

        .menu-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
            padding-left: 30px;
        }

        /* Stagger animation for menu items */
        .mobile-menu.active .menu-item {
            animation: slideIn 0.5s ease forwards;
        }

        .mobile-menu.active .menu-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .mobile-menu.active .menu-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .mobile-menu.active .menu-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .mobile-menu.active .menu-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .mobile-menu.active .menu-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.678);
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(162, 80, 255, 0.637);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            transform: scale(0);
        }

        .mobile-menu.active .social-icon {
            animation: popIn 0.5s ease forwards;
        }

        .mobile-menu.active .social-icon:nth-child(1) {
            animation-delay: 0.6s;
        }

        .mobile-menu.active .social-icon:nth-child(2) {
            animation-delay: 0.7s;
        }

        .mobile-menu.active .social-icon:nth-child(3) {
            animation-delay: 0.8s;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(360deg);
        }

        /* Overlay Background */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Main Content */
        .main-content {
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .main-content h1 {
            font-size: 36px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .main-content p {
            font-size: 18px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
            margin-bottom: 10px;
        }

        .screen-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
            backdrop-filter: blur(10px);
        }

        /* Animations */
        @keyframes slideIn {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes popIn {
            to {
                transform: scale(1);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
         
            

        /* Media Query - Show inline menu for screens 800px and wider */
        @media (min-width: 800px) {
            .head1{
                font-size: 50%;
            }
            .menu-btn {
                display: none;
            }

            .mobile-menu {
                display: none;
            }

            .overlay {
                display: none;
            }

            .desktop-nav {
                display: flex;
            }

            .header {
                padding: 0 40px;
            }

            .main-content h1 {
                font-size: 48px;
            }
        }

        /* Additional mobile adjustments */
        @media (max-width: 480px) {
            .mobile-menu {
                width: 75%;
            }
            
            .menu-item {
                font-size: 16px;
                padding: 12px 15px;
            }

            .main-content h1 {
                font-size: 28px;
            }

            .hero-text h1 {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 0px;
            
        }

        .hero-text p {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 0%;
        }
         

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
        }
         .course-title {
            font-style: bold;
            font-weight: bold;
            font-size: small;
            margin-bottom: 0%;
            
        }
     
    }
