<sty
le>        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

     
        
       
        
        /* New Header Styles */
      
      
        
        /* Hero Section */
        .heross {
            display: flex!important;
            min-height: 80vh;
            justify-content: space-between!important;
            align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;


    
                margin-top: 80px;
        }
        
        
        
        .hero-imagess {
           
            display: flex;
            justify-content: flex-end;
        }
        
        .hero-imagess img {
            max-width: 100%;
            height: 100%;
           
        }
        
        .heross h1 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            line-height: 1.2;
        }
        
        .heross h1 span {
            color: var(--primary);
        }
        
        .heross p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 1rem;
           
        }
        
        /* Courses Section */
        .sectionss {
            padding:20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-titles {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-titles h2 {
            font-size: 2rem;
            color: var(--text);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-titles h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-titles p {
            
            font-size: 1.1rem!important;
            
            margin: 0 auto;
        }
        
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .course-card {
            background-color: var(--bg);
            border-radius: var(--radius);
            overflow: hidden;
            
            transition: var(--transition);
            position: relative;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        
        .course-image {
            height: 180px;
            overflow: hidden;
        }
        
        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .course-card:hover .course-image img {
            transform: scale(1.05);
        }
        
        .course-header {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem;
        }
        
        .course-header h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .course-body {
            padding: 1.5rem;
        }
        
        .course-body p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
      
        
        /* Course Highlights */
        .highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0rem 0;
        }
        
        .highlight-column {
            background-color: var(--bg);
            border-radius: var(--radius);
            padding: 2rem;
            
        }
        
        .highlight-column h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .highlight-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }
        
        .highlight-column ul {
            list-style: none;
        }
        
        .highlight-column ul li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .highlight-column ul li:before {
            content: '•';
            color: var(--primary);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        
        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0rem 0;
        }
        
        .pricing-card {
            background-color: var(--bg);
            border-radius: var(--radius);
            padding: 2rem;
            
            text-align: center;
            transition: var(--transition);
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .price {
            font-size: 2rem;
            font-weight: 500;
            color: var(--primary);
            margin: 1.5rem 0;
        }
        
        .price span {
            display: block;
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }
        
        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }
        
        .pricing-features li {
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        /* How To Apply */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0rem 0;
        }
        
        .step-card {
            background-color: var(--bg);
            border-radius: var(--radius);
            padding: 2rem;
        
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 20px;
            background-color: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 1.2rem;
        }
        
        .step-card h3 {
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .step-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
        /* Learning Options */
        .options-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0rem 0;
        }
        
        .option-card {
            background-color: var(--bg);
            border-radius: var(--radius);
            padding: 2rem;
            
            text-align: center;
            transition: var(--transition);
        }
        
        .option-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .option-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .option-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-top: 4rem;
        }
        
        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }
         .cta-button{
            display: inline-flex!important;
            font-size: 1rem!;
         }
        .cta-button.white {
            background-color: white;
            color: var(--primary);
        }
        
        .cta-button.white:hover {
            background-color: #f0f0f0;
        }
        
        /* Footer */
        
        /* Responsive Styles */
        @media (max-width: 768px) {
          
            
            .heross {
                display: flex;
                flex-direction: column-reverse;!important;
                margin-top: 80px;
                gap: 2rem;
              
                
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 2rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                margin: 0 auto 2rem;
            }
            
            .hero-images {
                justify-content: center;
            }
            
            .section-titles h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 476px) {
            .heross h1 {
                font-size: 1.4rem;
            }
             .hero-content h1 {
                font-size: 1.2rem!important;
            }
            
           .course-body h3 {
            font-size: 1.2rem!important;
            margin-bottom: 0.5rem;
        }
           
            .hero-content{
                margin-top: 0!important;
            }
            .section-titles h2 {
                font-size: 1.3rem;
            }
            
            .cta-section h2 {
                font-size: 1.2rem!important;
            }
        }
