
        html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
:root {
            --primary-deep: #0a2463;
            --primary-bright: #4fc3f7;
            --primary-light: #1e88e5;
            --accent-gradient: linear-gradient(135deg, #0a2463 0%, #1e88e5 100%);
            --text-light: #ffffff;
            --text-muted: #e3f2fd;
            --card-bg: rgba(255, 255, 255, 0.1);
            --card-border: rgba(255, 255, 255, 0.15);
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
            --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
     
        .content-paragraph{
            padding: 10px;
        }
         :root {
            --primary: #7c3aed;
            --primary-dark: #6d28d9;
            --secondary: #10b981;
            --accent: #f59e0b;
            --dark: #1f2937;
            --light: #f9fafb;
            --text-dark: #1f2937;
            --text-light: #ffffff;
            --card-bg: rgba(255, 255, 255, 0.9);
            --card-border: rgba(255, 255, 255, 0.2);
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
            --gradient: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
        }
        
     
        
        .skillsha-hero {
            background: var(--light);
            color: var(--text-dark);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin-top: 35px;
        }
        
        .skillsha-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .skillsha-heroGrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: center;
        }
        
        .skillsha-tagline {
            display: inline-flex;
            align-items: center;
            background: var(--gradient);
            padding: 0.6rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-weight: 500;
            animation: fadeInDown 1s ease-out;
        }
        
        .skillsha-tagline i {
            margin-right: 0.5rem;
            color: var(--accent);
        }
        
        .skillsha-mainHeading {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 800;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            color: var(--dark);
        }
        
        .skillsha-mainHeading span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .skillsha-mainHeading span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0.6rem;
            background: rgba(124, 58, 237, 0.2);
            z-index: -1;
            border-radius: 2px;
            transform: skewX(-15deg);
        }
        
        .skillsha-subHeading {
            font-size: 1.4rem;
            margin-bottom: 1.8rem;
            font-weight: 400;
            color: var(--dark);
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .skillsha-divider {
            height: 0.25rem;
            width: 4rem;
            background: var(--primary);
            margin: 1.5rem 0;
            border-radius: 0.25rem;
            animation: expandWidth 1s ease-out 0.6s both;
        }
        
        .skillsha-ctaGroup {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }
        
        .skillsha-button {
            padding: 1.1rem 2.2rem;
            border-radius: 3.125rem;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.625rem;
            position: relative;
            overflow: hidden;
        }
        
        .skillsha-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .skillsha-button:hover::before {
            left: 100%;
        }
        
        .skillsha-button--primary {
            background: var(--primary);
            color: var(--light);
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-soft);
        }
        
        .skillsha-button--primary:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-0.25rem);
            box-shadow: 0 0.5rem 1.5rem rgba(124, 58, 237, 0.3);
        }
        
        .skillsha-button--secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .skillsha-button--secondary:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-0.25rem);
        }
        
        .skillsha-button--accent {
            background: var(--accent);
            color: var(--light);
            border: 2px solid var(--accent);
        }
        
        .skillsha-button--accent:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-0.25rem);
        }
        
        .skillsha-featureGrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 2rem 0;
            animation: fadeInUp 0.8s ease-out 1s both;
        }
        
        .skillsha-featureCard {
            display: flex;
            align-items: center;
            background: var(--card-bg);
            padding: 1.2rem;
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
        }
        
        .skillsha-featureCard:hover {
            transform: translateY(-0.4rem);
            background: white;
            box-shadow: var(--shadow-medium);
            border-color: var(--primary);
        }
        
        .skillsha-featureIcon {
            color: var(--primary);
            font-size: 2rem;
            margin-right: 1rem;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .skillsha-featureCard:hover .skillsha-featureIcon {
            transform: scale(1.2);
            color: var(--secondary);
        }
        
        .skillsha-featureText {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .skillsha-heroVisual {
            position: relative;
            text-align: center;
            animation: fadeInRight 1s ease-out 0.5s both;
        }
        
        .skillsha-mainVisual {
            width: 100%;
            border-radius: 0.75rem;
            box-shadow: var(--shadow-medium);
            transform: perspective(50rem) rotateY(-5deg);
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
            border: 5px solid white;
        }
        
        .skillsha-mainVisual:hover {
            transform: perspective(50rem) rotateY(0);
        }
        
        .skillsha-floatingElement {
            position: absolute;
            background: white;
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: var(--shadow-medium);
            display: flex;
            align-items: center;
            z-index: 3;
            animation: skillsha-float 6s ease-in-out infinite;
            border: 1px solid #e5e7eb;
        }
        
        .skillsha-floatingElement i {
            color: var(--primary);
            font-size: 2.2rem;
            margin-right: 0.75rem;
        }
        
        .skillsha-element--one {
            top: 10%;
            left: -10%;
            background: var(--primary);
            color: var(--light);
            animation-delay: 0s;
        }
        
        .skillsha-element--two {
            bottom: 20%;
            right: -10%;
            background: var(--secondary);
            color: var(--light);
            animation-delay: 1s;
        }
        
        .skillsha-element--three {
            bottom: 10%;
            left: -5%;
            background: var(--accent);
            color: var(--light);
            animation-delay: 2s;
        }
        
        @keyframes skillsha-float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-1rem) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        .skillsha-statsGrid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            margin-top: 4rem;
            gap: 1.5rem;
            animation: fadeInUp 1s ease-out 1.2s both;
        }
        
        .skillsha-statCard {
            text-align: center;
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
        }
        
        .skillsha-statCard:hover {
            transform: translateY(-0.4rem);
            background: white;
            box-shadow: var(--shadow-medium);
            border-color: var(--primary);
        }
        
        .skillsha-statNumber {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .skillsha-statLabel {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            color: var(--dark);
            font-weight: 600;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(2rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-2rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(2rem);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 4rem;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .skillsha-heroGrid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .skillsha-mainHeading {
                font-size: 2.8rem;
            }
            
            .skillsha-statsGrid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .skillsha-floatingElement {
                display: none;
            }
            
            /* Changed from order: -1 to order: 1 to move image after content */
            .skillsha-heroVisual {
                order: 1;
                max-width: 80%;
                margin: 0 auto;
            }
            
            /* Ensure content comes first */
            .skillsha-heroContent {
                order: 0;
            }
        }
        
        @media (max-width: 768px) {
            .skillsha-mainHeading {
                font-size: 2.4rem;
            }
            
            .skillsha-subHeading {
                font-size: 1.2rem;
            }
            
            .skillsha-featureGrid {
                grid-template-columns: 1fr;
            }
            
            .skillsha-button {
                padding: 1rem 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .skillsha-hero {
                padding: 60px 0;
                margin-top: 60px;
            }
            
            .skillsha-mainHeading {
                font-size: 2rem;
            }
            
            .skillsha-subHeading {
                font-size: 1.1rem;
            }
            
            .skillsha-statsGrid {
                grid-template-columns: 1fr;
            }
            
            .skillsha-ctaGroup {
                flex-direction: column;
            }
            
            .skillsha-button {
                width: 100%;
                justify-content: center;
            }
            
            .skillsha-heroVisual {
                max-width: 100%;
            }
        }
        
        /* Counter animation */
        .skillsha-counter {
            display: inline-block;
        }
   /* why chose us */
     .content-text{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    .point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}
.containerera {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;  
    max-width: 1500px;
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.point-icon {
    color: #4fc3f7;
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.point-content p {
    margin: 0;
    font-size: 1.1rem;
    color: #37474f;
}
.content-paragraph{
    line-height: 1.5;
}
         /* Reset and Base Styles */
        
        
        
        /* Container */
        .skillsha-container {
            max-width: 1400px;
            margin: 0 auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Main Box */
        .skillsha-main-box {
            border-radius: 12px;
            padding: 40px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .skillsha-main-box:hover {
            transform: translateY(-5px);
        }
        
        /* Header */
        .skillsha-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .skillsha-logo {
            font-size: 32px;
            font-weight: 700;
            color: #4361ee;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
     
        
        /* Content */
        .skillsha-content-list {
            list-style: none;
            padding: 0;
        }
        
        .skillsha-content-item {
            padding: 25px;
            margin-bottom: 25px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #4361ee;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
        }
        
        .skillsha-content-item:hover {
            border-left: 4px solid #ff6b6b;
            transform: translateX(5px);
        }
        
        .skillsha-item-icon {
            margin-right: 20px;
            font-size: 22px;
            color: #4361ee;
            min-width: 35px;
            padding-top: 3px;
        }
        
        .skillsha-item-text {
            flex: 1;
            font-size: 17px;
        }
        
        .skillsha-highlight {
            color: #4361ee;
            font-weight: 600;
        }
        
        /* Section Title */
        .skillsha-section-title {
            text-align: center;
            font-size: 28px;
            color: #4361ee;
            margin: 50px 0 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .skillsha-section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4361ee, #3a0ca3);
            border-radius: 2px;
        }
        
        /* Courses Intro */
        .skillsha-courses-intro {
            text-align: center;
            font-size: 18px;
            color: #6c757d;
            margin-bottom: 40px;
            text-align: justify;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Courses Grid */
        .skillsha-courses-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 30px;
            justify-content: center;
        }
        
        .skillsha-course-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            flex: 1;
            min-width: 300px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 5px solid #4361ee;
            display: flex;
            flex-direction: column;
        }
        
        .skillsha-course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        .skillsha-course-icon {
            font-size: 28px;
            color: #4361ee;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .skillsha-course-title {
            color: #3a0ca3;
            margin-bottom: 15px;
            text-align: center;
            font-size: 22px;
        }
        
        .skillsha-course-desc {
            margin-bottom: 15px;
            color: #495057;
            flex-grow: 1;
        }
        
        .skillsha-course-fee {
            background: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
            margin: 20px 0;
            font-weight: 600;
            color: #4361ee;
            text-align: center;
        }
        
        .skillsha-course-includes {
            background: #e9ecef;
            padding: 12px;
            border-radius: 8px;
            font-size: 15px;
            color: #495057;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .skillsha-main-box {
                padding: 25px;
            }
            
            .skillsha-content-item {
                flex-direction: column;
                padding: 20px;
            }
            
            .skillsha-item-icon {
                margin-bottom: 15px;
                margin-right: 0;
                text-align: center;
            }
            
            .skillsha-courses-grid {
                flex-direction: column;
            }
            
            .skillsha-course-card {
                min-width: 100%;
            }
            
            .skillsha-logo {
                font-size: 26px;
            }
            
        
        }
         .st-container {
            max-width: 1400px;
            margin: 40px auto;
        }
        
        .st-pricing-section {
            background: white;
            border-radius: 16px;
            padding: 50px 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }
        
        .st-section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .st-section-title {
            font-size: 36px;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 15px;
        }
        
        .st-section-subtitle {
            font-size: 18px;
            color: #64748b;
            text-align: justify;
            margin: 0 auto;
            line-height: 1.6;
            margin-top: 20px;
        }
        
        .st-pricing-cards {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .st-pricing-card {
            background: white;
            border-radius: 16px;
            padding: 35px;
            flex: 1;
            min-width: 320px;
            max-width: 380px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .st-pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .st-card-badge {
            position: absolute;
            top: 20px;
            right: -10px;
            background: #ef4444;
            color: white;
            padding: 8px 20px;
            font-weight: 700;
            font-size: 14px;
            border-radius: 20px 0 0 20px;
            box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
        }
        
        .st-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .st-price-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .st-original-price {
            font-size: 18px;
            color: #94a3b8;
            text-decoration: line-through;
        }
        
        .st-discount-price {
            font-size: 32px;
            font-weight: 800;
            color: #2563eb;
        }
        
        .st-discount-percent {
            background: #dbeafe;
            color: #2563eb;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
        }
        
        .st-features-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .st-features-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
        }
        
        .st-features-list li:last-child {
            border-bottom: none;
        }
        
        .st-features-list i {
            color: #2563eb;
            margin-right: 12px;
            font-size: 16px;
        }
        
        .st-payment-options {
            background: #f8fafc;
            border-radius: 12px;
            padding: 40px;
            margin-top: 50px;
            border: 1px solid #e2e8f0;
        }
        
        .st-payment-title {
            text-align: center;
            font-size: 26px;
            color: #1e40af;
            margin-bottom: 30px;
        }
        
        .st-options-grid {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .st-option-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            flex: 1;
            min-width: 250px;
            max-width: 320px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .st-option-icon {
            background: #dbeafe;
            color: #2563eb;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }
        
        .st-option-title {
            font-size: 18px;
            font-weight: 600;
            color: #1e40af;
            margin-bottom: 12px;
        }
        
        .st-value-message {
            text-align: center;
            margin-top: 40px;
            padding: 25px;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            border-radius: 12px;
            color: white;
        }
        
        .st-value-message p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .st-pricing-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .st-pricing-card {
                min-width: 100%;
            }
            
            .st-options-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .st-option-card {
                min-width: 100%;
            }
            
            .st-section-title {
                font-size: 28px;
            }
            
            .st-section-subtitle {
                font-size: 16px;
            }
        }
        @media (max-width: 600px) {
    .st-section-title {
        font-size: 22px; /* Smaller heading */
    }

    .st-section-subtitle {
        font-size: 14px; /* Reduce text size for subtitle */
        text-align: center; /* Center align for better readability */
    }

    .st-pricing-card {
        padding: 25px; /* Reduce padding */
        font-size: 14px;
    }

    .st-discount-price {
        font-size: 26px; /* Smaller price text */
    }

    .st-option-title {
        font-size: 16px;
    }

    .st-payment-title {
        font-size: 20px;
    }

    .st-value-message p {
        font-size: 16px;
    }
}

         :root {
            --primary: #3a6ea5;
            --secondary: #ff6b6b;
            --accent: #4ecdc4;
            --dark: #2d3e50;
            --light: #f8f9fa;
            --text: #333344;
            --background: #f0f7ff;
        }
        
        
        .certificate-container {
            max-width: 1500px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }
        
        .certificate-header {
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 30px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .certificate-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .certificate-title {
            font-family: 'Merriweather', serif;
            font-size: 3rem;
            margin-bottom: 15px;
            letter-spacing: 1.5px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .certificate-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            font-weight: 300;
        }
        
        .certificate-content-wrapper {
            display: flex;
            flex-wrap: wrap;
            padding: 40px;
        }
        
        .certificate-info {
            flex: 1;
            min-width: 320px;
            padding: 25px;
        }
        
        .certificate-display {
            flex: 1;
            min-width: 320px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .achievement-highlight {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-left: 20px;
        }
        
        .achievement-highlight::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            height: 80%;
            width: 5px;
            background: var(--secondary);
            transform: translateY(-50%);
        }
        
        .benefits-container {
            list-style: none;
            margin-top: 30px;
        }
        
        .benefit-item {
            margin-bottom: 30px;
            padding-left: 45px;
            position: relative;
        }
        
        .benefit-icon {
            position: absolute;
            left: 0;
            top: 0;
            color: white;
            font-size: 1.4rem;
            background: var(--accent);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
        }
        
        .benefit-title {
            font-size: 1.35rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .benefit-description {
            color: #555;
            font-size: 1.05rem;
        }
        
        .certificate-holder {
            border: 5px solid var(--primary);
            border-radius: 10px;
            padding: 15px;
            background: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .certificate-holder::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
        }
        
        .certificate-holder:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .certificate-image {
            width: 100%;
            display: block;
            border: 1px solid #eee;
        }
        
        .certificate-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .action-button {
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        
        .action-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 5px 15px rgba(58, 110, 165, 0.3);
        }
        
        .action-primary:hover {
            background: #2c5590;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(58, 110, 165, 0.4);
        }
        
        .action-secondary {
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        
        .action-secondary:hover {
            background: rgba(78, 205, 196, 0.1);
            transform: translateY(-3px);
        }
        
     
        
        @media (max-width: 900px) {
            .certificate-content-wrapper {
                flex-direction: column;
            }
            
            .certificate-title {
                font-size: 2.5rem;
            }
            
            .certificate-holder {
                margin-top: 20px;
            }
            
            .certificate-actions {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 600px) {
            .certificate-header {
                padding: 20px;
            }
            
            .certificate-title {
                font-size: 2rem;
            }
            
            .certificate-subtitle {
                font-size: 1.1rem;
            }
            
            .certificate-content-wrapper {
                padding: 20px;
            }
            
            .benefit-item {
                padding-left: 35px;
            }
            
            .benefit-icon {
                width: 28px;
                height: 28px;
                font-size: 1.1rem;
            }
        }
 /* lear from industry expert */
         .training-module-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .training-module-container {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        
        .training-module-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .training-module-header {
            text-align: center;
            margin-bottom: 50px;
            color: #2c3e50;
        }
        
        .training-module-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .training-module-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2c3e50);
            border-radius: 2px;
        }
        
        .training-module-intro {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin: 0 auto;
            text-align: justify;
            margin-top: 20px;
        }
        
        .training-module-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }
        
        .training-module-expertise {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .training-module-subheader {
            margin-bottom: 25px;
        }
        
        .training-module-subtitle {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .training-module-description {
            color: #7f8c8d;
        }
        
        .training-module-features {
            list-style: none;
        }
        
        .training-module-features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .training-module-features li i {
            position: absolute;
            left: 0;
            top: 3px;
            color: #3498db;
            font-size: 18px;
        }
        
        .training-module-tools {
            margin-top: 40px;
        }
        
        .training-module-toolgrid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .training-module-tool {
            text-align: center;
            padding: 15px 10px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .training-module-tool:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .training-module-toolicon {
            font-size: 2rem;
            color: #3498db;
            margin-bottom: 10px;
        }
        
        .training-module-toolname {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .training-module-projects {
            flex: 1;
            min-width: 300px;
        }
        
        .training-module-projectlist {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .training-module-projectcard {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        
        .training-module-projectcard:hover {
            transform: translateY(-5px);
        }
        
        .training-module-projectheader {
            padding: 20px;
            background: #3498db;
            color: white;
        }
        
        .training-module-projecttitle {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .training-module-projectbody {
            padding: 20px;
        }
        
        .training-module-projectdesc {
            margin-bottom: 15px;
            color: #555;
        }
        
        .training-module-projecttags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .training-module-tag {
            background: #f1f8ff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #3498db;
            font-weight: 600;
        }
        
        .training-module-cta {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            border-radius: 10px;
            color: white;
        }
        
        .training-module-ctatitle {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .training-module-button {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: white;
            color: #3498db;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .training-module-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .training-module-content {
                flex-direction: column;
            }
            
            .training-module-toolgrid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 600px) {
    .training-module-title {
        font-size: 1.6rem; /* Smaller size for screens < 600px */
    }
}
/* For screens less than 600px (already added by you) */
@media (max-width: 600px) {
    .training-module-title {
        font-size: 1.6rem; /* Smaller size for screens < 600px */
        text-align: center;
    }
    .training-module-intro {
        font-size: 1rem;
        text-align: center;
        padding: 0 10px;
    }
    .training-module-toolgrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .training-module-content {
        gap: 20px;
    }
    .training-module-projectcard {
        margin: 0 auto;
        max-width: 95%;
    }
}

/* For screens less than 480px (mobile phones) */
@media (max-width: 480px) {
    .training-module-wrapper {
        padding: 20px 10px;
    }
    .training-module-title {
        font-size: 1.4rem;
    }
    .training-module-intro {
        font-size: 0.95rem;
    }
    .training-module-subtitle {
        font-size: 1.4rem;
    }
    .training-module-toolgrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .training-module-cta {
        padding: 20px;
    }
    .training-module-ctatitle {
        font-size: 1.4rem;
    }
    .training-module-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* For extra small screens less than 360px */
@media (max-width: 360px) {
    .training-module-title {
        font-size: 1.2rem;
    }
    .training-module-intro {
        font-size: 0.9rem;
    }
    .training-module-toolgrid {
        grid-template-columns: 1fr;
    }
    .training-module-button {
        width: 100%;
        text-align: center;
    }
}

 /* END */
 
        
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --dark: #1e293b;
            --light: #f8fafc;
            --accent: #f97316;
            --gray: #64748b;
        }
        
  
        
        .skillsha-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
      
        
        .skillsha-section {
            padding: 80px 0;
        }
        
        .skillsha-sectionTitle {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .skillsha-sectionTitle h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .skillsha-sectionTitle h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        
        .skillsha-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--gray);
        }
        
        .skillsha-content p {
            margin-bottom: 20px;
        }
        
        .skillsha-highlights {
            background-color: #e0e7ff;
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .skillsha-cardGroup {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .skillsha-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .skillsha-card:hover {
            transform: translateY(-10px);
        }
        
        .skillsha-cardHeader {
            background-color: var(--dark);
            color: var(--light);
            padding: 20px;
            text-align: center;
        }
        
        .skillsha-cardBody {
            padding: 20px;
        }
        
        .skillsha-cardBody ul {
            list-style-type: none;
            padding: 0;
        }
        
        .skillsha-cardBody li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .skillsha-cardBody li:before {
            content: "✓";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .skillsha-salaryBlock {
            background-color: var(--dark);
            color: var(--light);
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .skillsha-salaryBox {
            display: inline-block;
            background: var(--light);
            color: var(--dark);
            padding: 20px;
            margin: 15px;
            border-radius: 8px;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: justify;
        }
        
        .skillsha-salaryBox h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        
        
        @media (max-width: 768px) {
            .skillsha-navLinks {
                display: none;
            }
            
            .skillsha-banner h1 {
                font-size: 2.2rem;
            }
            
            .skillsha-card {
                width: 100%;
                max-width: 350px;
            }
        }
  
        
        .container-skl-7a9 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .header-skl-2b3 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .header-skl-2b3 h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .header-skl-2b3 p {
            font-size: 1.2rem;
            color: #7f8c8d;
            /* max-width: 800px; */
            text-align: justify;
            margin-top: 20px;
             
        }
        
        .highlight-skl-5f1 {
            color: #2563eb;
            font-weight: 600;
        }
        
        .features-grid-skl-8d4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .feature-card-skl-6c2 {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card-skl-6c2:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon-skl-9e3 {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 20px;
        }
        
        .feature-card-skl-6c2 h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .feature-card-skl-6c2 p {
            color: #7f8c8d;
        }
        
        .certificates-section-skl-4g7 {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            padding: 50px;
            border-radius: 10px;
            margin-bottom: 60px;
        }
        
        .cert-header-skl-1h5 {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .cert-header-skl-1h5 h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .cert-cards-skl-7k8 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .cert-card-skl-3m2 {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        
        .cert-card-skl-3m2 h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #93c5fd;
        }
        
        .companies-section-skl-5n9 {
            margin-bottom: 60px;
        }
        
        .companies-header-skl-8j2 {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .companies-header-skl-8j2 h2 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .companies-grid-skl-2d7 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .company-item-skl-6f4 {
            background: white;
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            font-weight: 500;
            color: #2c3e50;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .company-item-skl-6f4:hover {
            transform: scale(1.05);
        }
        
        .company-icon-skl-3b8 {
            font-size: 2rem;
            color: #2563eb;
        }
        
        .cta-section-skl-9r1 {
            background: #2563eb;
            color: white;
            padding: 50px;
            border-radius: 10px;
            text-align: center;
        }
        
        .cta-header-skl-4t6 h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .cta-buttons-skl-7p3 {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .btn-skl-3q8 {
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-primary-skl-5w2 {
            background: white;
            color: #2563eb;
        }
        
        .btn-primary-skl-5w2:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary-skl-8x4 {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary-skl-8x4:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .header-skl-2b3 h1 {
                font-size: 2.2rem;
            }
            
            .certificates-section-skl-4g7,
            .cta-section-skl-9r1 {
                padding: 30px;
            }
            
            .cta-buttons-skl-7p3 {
                flex-direction: column;
                align-items: center;
            }
        }
        /* table */
      
        
    
        
        .comparison-container-skl-9b2 {
            max-width: 1200px;
            margin: 40px auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .comparison-header-skl-4t7 {
            padding: 40px 20px 20px;
            text-align: center;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
        }
        
        .comparison-header-skl-4t7 h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .comparison-header-skl-4t7 p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .comparison-table-skl-6d3 {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table-skl-6d3 th {
            padding: 15px 10px;
            text-align: left;
            background-color: #f8fafc;
            font-weight: 600;
            color: #1e293b;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .comparison-table-skl-6d3 td {
            padding: 15px 10px;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
        }
        
        .feature-col-skl-8k1 {
            width: 60%;
            font-weight: 500;
            color: #334155;
            word-wrap: break-word;
        }
        
        .skillsha-col-skl-3j7, .other-col-skl-9f2 {
            width: 20%;
            text-align: center;
        }
        
        .skillsha-col-skl-3j7 {
            background-color: rgba(37, 99, 235, 0.05);
        }
        
        .checkmark-skl-5g4 {
            color: #2563eb;
            font-size: 1.3rem;
            font-weight: bold;
        }
        
        .crossmark-skl-2h8 {
            color: #ef4444;
            font-size: 1.3rem;
            font-weight: bold;
        }
        
        .footer-note-skl-8k9 {
            padding: 25px 20px;
            background: #f8fafc;
            text-align: center;
            color: #475569;
            border-top: 1px solid #e2e8f0;
        }
        
        .read-more-btn-skl-7t3 {
            display: block;
            width: 100%;
            padding: 15px;
            background: #2563eb;
            color: white;
            border: none;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            text-align: center;
            max-width: 200px;
            margin: auto;
            margin-top: 10px;
            margin-bottom: 10px;
            border-radius: 15px;
        }
        
        .read-more-btn-skl-7t3:hover {
            background: #1e40af;
        }
        
        .hidden-rows-skl-4h6 {
            display: none;
        }
        
        .visible-rows-skl-9j2 {
            display: table-row;
        }
        
        /* Mobile-specific styles */
        @media (max-width: 768px) {
            .comparison-container-skl-9b2 {
                margin: 20px auto;
                border-radius: 10px;
            }
            
            .comparison-header-skl-4t7 {
                padding: 25px 15px 15px;
            }
            
            .comparison-header-skl-4t7 h1 {
                font-size: 1.6rem;
            }
            
            .comparison-header-skl-4t7 p {
                font-size: 1rem;
            }
            
            .comparison-table-skl-6d3 {
                display: table;
                width: 100%;
            }
            
            .comparison-table-skl-6d3 th, 
            .comparison-table-skl-6d3 td {
                padding: 12px 8px;
                font-size: 0.9rem;
                display: table-cell;
            }
            
            .feature-col-skl-8k1 {
                width: 60%;
                font-size: 0.85rem;
            }
            
            .skillsha-col-skl-3j7, .other-col-skl-9f2 {
                width: 20%;
                font-size: 0.85rem;
            }
            
            .checkmark-skl-5g4, .crossmark-skl-2h8 {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            .comparison-header-skl-4t7 h1 {
                font-size: 1.4rem;
            }
            
            .comparison-table-skl-6d3 th, 
            .comparison-table-skl-6d3 td {
                padding: 10px 6px;
                font-size: 0.8rem;
            }
            
            .feature-col-skl-8k1 {
                font-size: 0.8rem;
            }
            
            .read-more-btn-skl-7t3 {
                padding: 12px;
                font-size: 1rem;
            }
            
            .footer-note-skl-8k9 {
                padding: 20px 15px;
                font-size: 0.9rem;
            }
        }
        
        /* Very small devices */
        @media (max-width: 360px) {
            .comparison-table-skl-6d3 th, 
            .comparison-table-skl-6d3 td {
                padding: 8px 4px;
                font-size: 0.75rem;
            }
            
            .feature-col-skl-8k1 {
                font-size: 0.75rem;
            }
            
            .checkmark-skl-5g4, .crossmark-skl-2h8 {
                font-size: 1rem;
            }
        }
 /* fee table */
        
         
        
        .pricing-container-skl-8x3 {
            max-width: 1400px;
            margin: 40px auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .pricing-header-skl-5f2 {
            padding: 40px 40px 20px;
            text-align: center;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
        }
        
        .pricing-header-skl-5f2 h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .pricing-header-skl-5f2 p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .pricing-table-skl-7g4 {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .pricing-table-skl-7g4 th {
            padding: 20px;
            text-align: left;
            background-color: #f8fafc;
            font-weight: 600;
            color: #1e293b;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .pricing-table-skl-7g4 td {
            padding: 10px;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
        }
        
        .feature-col-skl-9h8 {
            width: 50%;
            font-weight: 500;
            color: #334155;
        }
        
        .skillsha-col-skl-2k7, .other-col-skl-4j3 {
            width: 25%;
            text-align: center;
        }
        
        .skillsha-col-skl-2k7 {
            background-color: rgba(37, 99, 235, 0.05);
            position: relative;
        }
        
        .highlight-skl-6n9 {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .price-skl-3d5 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2563eb;
            margin: 10px 0;
        }
        
        .save-tag-skl-8f2 {
            color: #10b981;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .other-price-skl-7h5 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ef4444;
            text-decoration: line-through;
        }
        
        .checkmark-skl-5t4 {
            color: #10b981;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .crossmark-skl-1g6 {
            color: #ef4444;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .benefits-section-skl-9k2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 40px;
            background: #f8fafc;
        }
        
        .benefit-card-skl-3j8 {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .benefit-icon-skl-7f3 {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 20px;
        }
        
        .benefit-card-skl-3j8 h3 {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .benefit-card-skl-3j8 p {
            color: #64748b;
        }
        
        .cta-section-skl-5g7 {
            padding: 40px;
            text-align: center;
            background: white;
        }
        
        .cta-button-skl-8h4 {
            display: inline-block;
            padding: 15px 40px;
            background: #2563eb;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }
        
        .cta-button-skl-8h4:hover {
            background: #1e40af;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }
        
        @media (max-width: 768px) {
            .pricing-container-skl-8x3 {
                margin: 20px auto;
            }
            
            .pricing-header-skl-5f2 {
                padding: 30px 20px 15px;
            }
            
            .pricing-header-skl-5f2 h1 {
                font-size: 2rem;
            }
            
            .pricing-table-skl-7g4 th, 
            .pricing-table-skl-7g4 td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }
            
            .price-skl-3d5 {
                font-size: 1.5rem;
            }
            
            .other-price-skl-7h5 {
                font-size: 1.3rem;
            }
            
            .benefits-section-skl-9k2 {
                padding: 30px 20px;
                grid-template-columns: 1fr;
            }
            
            .cta-section-skl-5g7 {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .pricing-header-skl-5f2 h1 {
                font-size: 1.7rem;
            }
            
            .pricing-header-skl-5f2 p {
                font-size: 1rem;
            }
            
            .pricing-table-skl-7g4 {
                display: block;
                overflow-x: auto;
            }
            
            .feature-col-skl-9h8 {
                width: 60%;
            }
            
            .skillsha-col-skl-2k7, .other-col-skl-4j3 {
                width: 20%;
            }
        }
 
       

        :root {
            --primary-blue: #1a5f7a;
            --secondary-blue: #3d8bb6;
            --light-blue: #e8f4fc;
            --accent-blue: #2c7da0;
            --dark-blue: #0a2942;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --text-dark: #2d3436;
            --text-light: #566573;
            --shadow: 0 8px 20px rgba(13, 78, 119, 0.15);
            --border-radius: 12px;
        }
 

        .knowledgeAccessContainer {
            max-width: 1200px;
            width: 100%;
            margin: 40px auto;
        }

        .educationGatewayHeader {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .educationGatewayHeader h2 {
            font-size: 2.8rem;
            color: var(--dark-blue);
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .educationGatewayHeader p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .financialPathways {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 70px;
        }

        .paymentJourneyCard {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 35px 30px;
            width: 100%;
            max-width: 370px;
            transition: all 0.3s ease;
            border-top: 5px solid var(--accent-blue);
            position: relative;
            overflow: hidden;
        }

        .paymentJourneyCard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .paymentJourneyCard:hover {
            transform: translateY(-8px);
        }

        .paymentJourneyCard:hover::before {
            opacity: 1;
        }

        .paymentJourneyCard h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 1.6rem;
            font-weight: 600;
        }

        .paymentJourneyCard p {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .paymentIcon {
            font-size: 2.8rem;
            color: var(--secondary-blue);
            margin-bottom: 25px;
            background: var(--light-blue);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .paymentHighlight {
            background: var(--light-blue);
            padding: 12px 18px;
            border-radius: 8px;
            font-weight: 600;
            color: var(--primary-blue);
            display: inline-block;
            margin-top: 15px;
            font-size: 1.05rem;
            border-left: 4px solid var(--secondary-blue);
        }

        .learningScheduleSection {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border-radius: var(--border-radius);
            padding: 50px 40px;
            color: var(--white);
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

        .learningScheduleSection::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(25deg);
        }

        .scheduleHeader {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .scheduleHeader h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .scheduleHeader p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .timingOptions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            position: relative;
            z-index: 2;
        }

        .scheduleOptionCard {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            width: 100%;
            max-width: 350px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease;
        }

        .scheduleOptionCard:hover {
            transform: translateY(-5px);
        }

        .scheduleOptionCard h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
        }

        .scheduleOptionCard h4 i {
            margin-right: 12px;
            font-size: 1.6rem;
        }

        .scheduleOptionCard p {
            font-size: 1.05rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .educationAction {
            text-align: center;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .learningJourneyButton {
            display: inline-block;
            background: var(--white);
            color: var(--primary-blue);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .learningJourneyButton:hover {
            background: var(--light-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 768px) {
            .financialPathways, .timingOptions {
                flex-direction: column;
                align-items: center;
            }
            
            .paymentJourneyCard, .scheduleOptionCard {
                max-width: 100%;
            }
            
            .educationGatewayHeader h2 {
                font-size: 2.2rem;
            }
            
            .learningScheduleSection {
                padding: 40px 25px;
            }
        }
 