
        * { font-family: 'Inter', sans-serif; margin: 0; padding: 0; box-sizing: border-box; }
        body { overflow-x: hidden; background: #ffffff; }
        
        @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
        @keyframes glow { 0%, 100% { box-shadow: 0 0 30px rgba(102,126,234,0.6), 0 0 60px rgba(118,75,162,0.4); } 50% { box-shadow: 0 0 50px rgba(102,126,234,1), 0 0 80px rgba(118,75,162,0.8); } }
        @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }
        @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
        @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    
        /* Hero Section */
        .hero-training {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 85px 0 140px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        }
        .hero-training::before {
            content: '';
            position: absolute;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
            top: -500px;
            right: -300px;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
        .hero-training::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
            bottom: -400px;
            left: -200px;
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.25);
            backdrop-filter: blur(30px);
            border: 2px solid rgba(255,255,255,0.5);
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,0.4);
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .hero-training h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.1;
            text-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
            animation: slideUp 0.8s ease-out;
            letter-spacing: -3px;
            position: relative;
            z-index: 1;
        }
        .hero-training .lead {
            font-size: 1rem;
            margin-bottom: 45px;
            opacity: 0.98;
            text-shadow: 0 3px 15px rgba(0,0,0,0.4);
            position: relative;
            z-index: 1;
            font-weight: 500;
            line-height: 1.6;
        }
        .btn-enroll {
            background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
            background-size: 200% 100%;
            color: white;
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: 900;
            text-decoration: none;
            display: inline-block;
            margin: 10px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 20px 50px rgba(255,107,53,0.6), inset 0 2px 0 rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 2px solid rgba(255,255,255,0.3);
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }
        .btn-enroll::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn-enroll::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }
        .btn-enroll:hover::before {
            width: 350px;
            height: 350px;
        }
        .btn-enroll:hover::after {
            left: 100%;
        }
        .btn-enroll:hover {
            background-position: 100% 0;
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 30px 70px rgba(255,107,53,0.7), inset 0 2px 0 rgba(255,255,255,0.5);
            color: white;
            border-color: rgba(255,255,255,0.5);
        }
        .btn-outline-white {
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(30px);
            color: #667eea;
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: 900;
            text-decoration: none;
            display: inline-block;
            margin: 10px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 20px 50px rgba(255,255,255,0.6), inset 0 2px 0 rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 2px solid rgba(255,255,255,0.3);
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }
        .btn-outline-white::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn-outline-white::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }
        .btn-outline-white:hover::before {
            width: 350px;
            height: 350px;
        }
        .btn-outline-white:hover::after {
            left: 100%;
        }
        .btn-outline-white:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 30px 70px rgba(255,255,255,0.7), inset 0 2px 0 rgba(255,255,255,0.5);
            color: #667eea;
            border-color: rgba(255,255,255,0.5);
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 80px 0;
            margin-top: -60px;
            position: relative;
            z-index: 10;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.1), 0 10px 40px rgba(0,0,0,0.05);
        }
        .stat-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(99,102,241,0.1);
        }
        .stat-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 60px rgba(99,102,241,0.25), inset 0 1px 0 rgba(255,255,255,1);
            border-color: rgba(99,102,241,0.3);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: #6366f1;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 100px 0;
            background: #ffffff;
        }
        .section-title {
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 60px;
            color: #2d3748;
            position: relative;
            letter-spacing: -1px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 6px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
            border-radius: 3px;
            box-shadow: 0 5px 15px rgba(99,102,241,0.4);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 6px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 3px;
            animation: shimmer 3s infinite;
        }
        #registration .section-title::before,
        #registration .section-title::after {
            display: none;
        }
        
        /* Download Button */
        .btn-download {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 800;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 40px rgba(102,126,234,0.4), inset 0 2px 0 rgba(255,255,255,0.3);
            border: 2px solid rgba(255,255,255,0.2);
            font-size: 1.05rem;
        }
        .btn-download:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 25px 60px rgba(102,126,234,0.5), inset 0 2px 0 rgba(255,255,255,0.4);
            color: white;
        }
        .btn-download i {
            font-size: 1.2rem;
        }
        
        /* Course Overview Cards */
        .course-overview-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,1);
            margin-bottom: 30px;
            border: 3px solid transparent;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .course-overview-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99,102,241,0.05), transparent 70%);
            transition: all 0.6s;
        }
        .course-overview-card:hover::before {
            top: -30%;
            right: -30%;
            background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
        }
        .course-overview-card:hover {
            border-color: #6366f1;
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(99,102,241,0.25), inset 0 1px 0 rgba(255,255,255,1);
        }
        .course-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            margin-bottom: 30px;
            box-shadow: 0 15px 40px rgba(99,102,241,0.4), inset 0 2px 0 rgba(255,255,255,0.3);
            transition: all 0.4s;
            position: relative;
            z-index: 1;
        }
        .course-overview-card:hover .course-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 50px rgba(99,102,241,0.5), inset 0 2px 0 rgba(255,255,255,0.4);
        }
        .course-overview-card h3 {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #1a1a2e;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }
        .course-overview-card p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }
        .course-duration {
            display: inline-block;
            background: linear-gradient(135deg, #ede9fe, #ddd6fe);
            color: #6366f1;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 800;
            font-size: 0.95rem;
            box-shadow: 0 5px 15px rgba(99,102,241,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
            border: 2px solid rgba(99,102,241,0.2);
            position: relative;
            z-index: 1;
        }
        
        /* Detailed Curriculum */
        .curriculum-card {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 30px;
            padding: 60px;
            color: white;
            margin-bottom: 30px;
            box-shadow: 0 20px 60px rgba(99,102,241,0.4), inset 0 2px 0 rgba(255,255,255,0.2);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        .curriculum-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
            animation: rotate 20s linear infinite;
        }
        .curriculum-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(99,102,241,0.5), inset 0 2px 0 rgba(255,255,255,0.3);
        }
        .curriculum-card.orange {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            box-shadow: 0 20px 60px rgba(255,107,53,0.4), inset 0 2px 0 rgba(255,255,255,0.2);
        }
        .curriculum-card.orange:hover {
            box-shadow: 0 30px 80px rgba(255,107,53,0.5), inset 0 2px 0 rgba(255,255,255,0.3);
        }
        .curriculum-card h3 {
            font-size: 2.3rem;
            font-weight: 900;
            margin-bottom: 35px;
            text-shadow: 0 5px 20px rgba(0,0,0,0.3);
            letter-spacing: -1px;
            position: relative;
            z-index: 1;
        }
        .curriculum-list {
            list-style: none;
            padding: 0;
            position: relative;
            z-index: 1;
        }
        .curriculum-list li {
            padding: 18px 0;
            border-bottom: 2px solid rgba(255,255,255,0.25);
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            font-weight: 500;
        }
        .curriculum-list li:hover {
            padding-left: 10px;
            border-bottom-color: rgba(255,255,255,0.5);
        }
        .curriculum-list li i {
            margin-right: 18px;
            color: #ffd700;
            font-size: 1.3rem;
            text-shadow: 0 2px 10px rgba(255,215,0,0.5);
            transition: all 0.3s;
        }
        .curriculum-list li:hover i {
            transform: scale(1.2) rotate(10deg);
        }
        
        /* Tech Stack */
        .tech-item {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 25px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 3px solid transparent;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .tech-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(139,92,246,0.05));
            opacity: 0;
            transition: opacity 0.4s;
        }
        .tech-item:hover::before {
            opacity: 1;
        }
        .tech-item:hover {
            border-color: #6366f1;
            transform: translateY(-15px) scale(1.08);
            box-shadow: 0 25px 60px rgba(99,102,241,0.25), inset 0 1px 0 rgba(255,255,255,1);
        }
        .tech-item i {
            font-size: 4rem;
            margin-bottom: 20px;
            transition: all 0.4s;
            display: inline-block;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
        }
        .tech-item:hover i {
            transform: scale(1.2) rotateY(360deg);
        }
        .tech-item h5 {
            font-weight: 800;
            color: #1a1a2e;
            margin: 0;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }
        
        /* Technology Brand Colors */
        .tech-item .fa-react { color: #61DAFB; }
        .tech-item .fa-node { color: #339933; }
        .tech-item .fa-database { color: #47A248; }
        .tech-item .fa-js { color: #F7DF1E; }
        .tech-item .fa-html5 { color: #E34F26; }
        .tech-item .fa-css3-alt { color: #1572B6; }
        .tech-item .fa-github { color: #181717; }
        .tech-item .fa-wind { color: #06B6D4; }
        .tech-item .fa-server { color: #000000; }
        .tech-item .fa-robot { color: #FF6B35; }
        .tech-item .fa-aws { color: #FF9900; }
        .tech-item .fa-plug { color: #009688; }
        
        /* Benefits */
        .benefit-item {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 25px;
            padding: 45px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
            margin-bottom: 30px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-left: 6px solid #ff6b35;
            height: 100%;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,107,53,0.05), transparent);
            transition: left 0.7s;
        }
        .benefit-item:hover::before {
            left: 100%;
        }
        .benefit-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(255,107,53,0.2), inset 0 1px 0 rgba(255,255,255,1);
            border-left-width: 8px;
        }
        .benefit-item i {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 25px;
            transition: all 0.4s;
            display: inline-block;
            text-shadow: 0 5px 15px rgba(255,107,53,0.3);
        }
        .benefit-item:hover i {
            transform: scale(1.2) rotate(10deg);
            text-shadow: 0 8px 20px rgba(255,107,53,0.4);
        }
        .benefit-item h4 {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 18px;
            color: #1a1a2e;
            letter-spacing: -0.5px;
        }
        .benefit-item p {
            color: #555;
            line-height: 1.7;
            margin: 0;
            font-size: 1.05rem;
        }
        
        /* Premium Pricing Cards */
        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 3px solid #f0f0f0;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
        }
        .pricing-card.featured {
            transform: scale(1.05);
            border-color: #10b981;
            box-shadow: 0 30px 80px rgba(16,185,129,0.25);
        }
        .pricing-card.featured::before {
            background: linear-gradient(90deg, #10b981, #059669);
            height: 6px;
        }
        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 35px 90px rgba(0,0,0,0.15);
            border-color: #6366f1;
        }
        .pricing-card.featured:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 40px 100px rgba(16,185,129,0.3);
        }
        .pricing-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ede9fe, #ddd6fe);
            color: #6366f1;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }
        .pricing-badge.popular {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            box-shadow: 0 5px 20px rgba(16,185,129,0.4);
            animation: pulse 2s infinite;
        }
        .pricing-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 15px 40px rgba(99,102,241,0.3);
            transition: all 0.4s;
        }
        .pricing-card:hover .pricing-icon {
            transform: scale(1.1) rotate(5deg);
        }
        .pricing-card h3 {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .pricing-amount {
            margin-bottom: 10px;
        }
        .pricing-amount .currency {
            font-size: 2rem;
            font-weight: 700;
            color: #6366f1;
            vertical-align: top;
        }
        .pricing-amount .price {
            font-size: 4rem;
            font-weight: 900;
            color: #1a1a2e;
            letter-spacing: -2px;
        }
        .pricing-card.featured .pricing-amount .currency,
        .pricing-card.featured .pricing-amount .price {
            color: #10b981;
        }
        .pricing-duration {
            font-size: 1rem;
            color: #666;
            font-weight: 600;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 35px;
            text-align: left;
        }
        .pricing-features li {
            padding: 7px 0;
            color: #555;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        .pricing-features li i {
            color: #10b981;
            margin-right: 12px;
            font-size: 1.1rem;
            width: 20px;
        }
        .pricing-btn {
            display: block;
            width: 100%;
            padding: 18px 40px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            text-align: center;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.05rem;
            text-decoration: none;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(99,102,241,0.3);
            border: 2px solid transparent;
        }
        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99,102,241,0.4);
            color: white;
        }
        .pricing-btn.featured {
            background: linear-gradient(135deg, #10b981, #059669);
            box-shadow: 0 15px 40px rgba(16,185,129,0.4);
        }
        .pricing-btn.featured:hover {
            box-shadow: 0 20px 50px rgba(16,185,129,0.5);
        }
        
        /* Call Now CTA Section */
        .call-cta-section {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .call-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
            animation: float 10s ease-in-out infinite;
        }
        .call-cta-content {
            position: relative;
            z-index: 1;
        }
        .call-cta-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 15px;
            text-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .call-cta-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 35px;
        }
        .call-btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .call-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: white;
            color: #ff6b35;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        .call-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            color: #ff6b35;
        }
        .call-btn i {
            font-size: 1.3rem;
        }
        
        /* Floating Action Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9998;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.4s;
            animation: pulse 2s infinite;
        }
        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            color: white;
        }
        .floating-btn.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }
        .floating-btn.phone {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }
        @media (max-width: 768px) {
            .floating-buttons { bottom: 20px; right: 20px; }
            .floating-btn { width: 55px; height: 55px; font-size: 1.3rem; }
            .call-cta-title { font-size: 2rem; }
            .call-btn-group { flex-direction: column; align-items: center; }
        }
        
        .cta-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
            background-size: 200% 100%;
            padding: 120px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: gradient 10s ease infinite;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 50%);
            animation: rotate 30s linear infinite;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 50%);
            animation: rotate 40s linear infinite reverse;
        }
        .cta-section h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.4);
            letter-spacing: -1px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }
        
        /* Premium Registration Form */
        .registration-modal {
            background: white;
            border-radius: 30px;
            padding: 0;
            box-shadow: 0 30px 90px rgba(0,0,0,0.3);
            border: none;
            overflow: hidden;
            position: relative;
        }
        .registration-modal::before {
            display: none;
        }
        .modal-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .modal-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
            animation: float 8s ease-in-out infinite;
        }
        .modal-header h2 {
            font-size: 2.8rem;
            font-weight: 900;
            margin: 0;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
            letter-spacing: -1px;
            position: relative;
            z-index: 1;
        }
        .modal-body {
            padding: 50px;
            position: relative;
            z-index: 1;
            background: white;
        }
        .form-group {
            margin-bottom: 24px;
            position: relative;
        }
        .form-group label {
            display: block;
            font-weight: 700;
            color: #374151;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f9fafb;
            font-weight: 500;
            color: #1a1a2e;
        }
        .form-control:focus {
            outline: none;
            border-color: #6366f1;
            box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
            background: white;
        }
        .form-control::placeholder {
            color: #999;
            font-weight: 500;
        }
        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(255,107,53,0.4);
            margin-top: 10px;
        }
        .btn-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(255,107,53,0.5);
        }
        .btn-submit:active {
            transform: translateY(0);
        }
        
        /* Success/Error Popup */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(10px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }
        .popup-overlay.active {
            display: flex;
        }
        .popup-box {
            background: white;
            border-radius: 25px;
            padding: 50px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            animation: popupSlideUp 0.4s ease;
            position: relative;
        }
        .popup-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 3rem;
        }
        .popup-icon.success {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }
        .popup-icon.error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }
        .popup-title {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #1a1a2e;
        }
        .popup-message {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .popup-btn {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(99,102,241,0.3);
        }
        .popup-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99,102,241,0.4);
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes popupSlideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Brand Text Styling */
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .brand-text {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            display: none;
        }
        @media (max-width: 991px) {
            .brand-text {
                display: inline-block;
            }
        }
        
            .hero-training h1 { font-size: 2.5rem; letter-spacing: -1px; }
            .section-title { font-size: 2.2rem; }
            .stat-number { font-size: 2.8rem; }
            .cta-section h2 { font-size: 2.5rem; }
            .curriculum-card, .course-overview-card { padding: 35px; }
            .modal-header { padding: 35px 25px; }
            .modal-header h2 { font-size: 2rem; }
            .modal-body { padding: 30px 20px !important; }
            .form-control { padding: 14px 16px; font-size: 0.95rem; }
            .btn-submit { padding: 16px 32px; font-size: 1rem; }
            .registration-modal { border-radius: 20px; margin: 0 15px; }
        
