           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2E5BFF;
            --secondary: #00C9A7;
            --accent: #FF4081;
            --dark: #1A237E;
            --light: #F5F7FF;
            --gradient: linear-gradient(135deg, #2E5BFF, #00C9A7);
            --gradient2: linear-gradient(135deg, #FF4081, #FF9100);
            --shadow: 0 10px 30px rgba(46, 91, 255, 0.1);
            --shadow-hover: 0 20px 40px rgba(46, 91, 255, 0.2);
        }
        
        .byd {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8fafc;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }        
        
        h2 {
            font-size: 2.8rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100px;
            height: 5px;
            background: var(--gradient2);
            border-radius: 5px;
        }
        
        h3 {
            font-size: 2rem;
            color: var(--primary);
        }
        
        h4 {
            font-size: 1.5rem;
            color: var(--secondary);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            color: #555;
        }
        
        .conttainer {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0 80px;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(46, 91, 255, 0.08) 0%, rgba(46, 91, 255, 0) 70%);
            top: -300px;
            right: -200px;
            z-index: 0;
        }
        
        .hero:after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 64, 129, 0.08) 0%, rgba(255, 64, 129, 0) 70%);
            bottom: -200px;
            left: -100px;
            z-index: 0;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow-hover);
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: transform 0.8s ease;
        }
        
        .hero-image img:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }
        
        .highlight-box {
            background: var(--gradient);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: inline-block;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(46, 91, 255, 0.3);
            animation: pulse 2s infinite;
        }
        
        .stats {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .stat-text {
            font-size: 1rem;
            color: #666;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--gradient2);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.3rem;
            margin-top: 20px;
            box-shadow: 0 15px 30px rgba(255, 64, 129, 0.4);
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .cta-button:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 64, 129, 0.5);
        }
        
        .cta-button:hover:before {
            left: 100%;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border-left: 6px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:nth-child(1) {
            border-left-color: var(--primary);
        }
        
        .feature-card:nth-child(2) {
            border-left-color: var(--accent);
        }
        
        .feature-card:nth-child(3) {
            border-left-color: var(--secondary);
        }
        
        .feature-card:nth-child(4) {
            border-left-color: #FF9100;
        }
        
        .feature-card:nth-child(5) {
            border-left-color: #9C27B0;
        }
        
        .feature-card:nth-child(6) {
            border-left-color: #00BCD4;
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Curriculum Section */
        .curriculum {
            padding: 100px 0;
            background: var(--light);
        }
        
        .curriculum-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .tab-button {
            padding: 15px 30px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tab-button.active {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            box-shadow: 0 10px 20px rgba(46, 91, 255, 0.2);
        }
        
        .tab-button:hover:not(.active) {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .week-content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        
        .week-content h3 {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .week-content h3 i {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 2.5rem;
        }
        
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .topic-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9ff;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .topic-item:hover {
            transform: translateX(10px);
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .topic-item i {
            color: var(--secondary);
            font-size: 1.5rem;
        }
        
        /* Tools Section */
        .tools {
            padding: 100px 0;
            background: white;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .tool-card {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.4s ease;
        }
        
        .tool-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: var(--shadow-hover);
        }
        
        .tool-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: var(--light);
        }
        
        .pricing-highlight {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .pricing-highlight h3 {
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .price-tag {
            font-size: 4.5rem;
            font-weight: 800;
            background: var(--gradient2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 20px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
            box-shadow: var(--shadow);
            border-radius: 15px;
            overflow: hidden;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table th {
            background: var(--gradient);
            color: white;
            font-weight: 600;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .comparison-table tr:hover {
            background: #f0f4ff;
        }
        
        .check {
            color: var(--secondary);
            font-weight: bold;
        }
        
        .cross {
            color: #ff5252;
            font-weight: bold;
        }
        
        /* Projects Section */
        .projects {
            padding: 100px 0;
            background: white;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }
        
        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }
        
        .project-image {
            height: 200px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }
        
        .project-content {
            padding: 30px;
        }
        
        .project-content h4 {
            margin-bottom: 15px;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: var(--light);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 25px;
            color: #555;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        
        .testimonial-role {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: white;
        }
        
        .faq-conttainer {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 25px 30px;
            background: var(--light);
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #eef2ff;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 25px 30px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question {
            background: var(--gradient);
            color: white;
        }
        
        /* Registration Form */
        .registration {
            padding: 100px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .registration h2 {
            color: white;
        }
        
        .registration h2:after {
            background: white;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .registration-box {
            max-width: 800px;
            margin: 50px auto 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .form-group {
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 15px 20px;
            border-radius: 10px;
            border: none;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus, .form-group select:focus {
            outline: none;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .payment-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .payment-option {
            background: white;
            color: #333;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .payment-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Animations */
        @keyframes shine {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 100% 50%;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .floating {
            animation: float 5s ease-in-out infinite;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .stats {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            h3 {
                font-size: 1.7rem;
            }
            
            .hero, .features, .curriculum, .tools, .pricing, .projects, .testimonials, .faq, .registration {
                padding: 70px 0;
            }
            
            .highlight-box {
                padding: 12px 20px;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            
            .features-grid, .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .registration-box {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .conttainer {
                padding: 0 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .price-tag {
                font-size: 3.5rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .payment-options {
                flex-direction: column;
                align-items: center;
            }
        }
