 

/* Learning Path Section */
.learning-path {
    padding: 60px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.path-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #733373;
	font-weight: bold;
	font-size: 1.1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.path-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.path-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3D1D4F, #FFD700);
    transform: translateX(-50%);
    border-radius: 2px;
}

.path-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.path-item:nth-child(even) {
    flex-direction: row-reverse;
}

.path-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin: 0 40px;
    box-shadow: 0 10px 30px rgba(61, 29, 79, 0.3);
}

.path-content {
    flex: 1;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff8e1 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #3D1D4F;
    transition: all 0.3s ease;
}

.path-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.path-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3D1D4F;
    margin-bottom: 15px;
}

.path-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.path-features {
    list-style: none;
}

.path-features li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.path-action {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(61, 29, 79, 0.1);
}

.path-button {
    display: inline-block;
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.path-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.path-button:hover::before {
    width: 200px;
    height: 200px;
}

.path-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(61, 29, 79, 0.3);
}

/* Courses Grid */
.courses-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff8e1 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3D1D4F;
    margin-bottom: 15px;
}

.course-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.meta-item {
    text-align: center;
    flex: 1;
}

.meta-value {
    font-weight: bold;
    color: #3D1D4F;
    font-size: 1.1rem;
}

.meta-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.course-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.course-button {
    width: 100%;
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(61, 29, 79, 0.3);
}

/* Instructors Section */
.instructors-section {
    padding: 60px 40px;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instructor-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.instructor-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.instructor-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #3D1D4F, #FFD700);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.instructor-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3D1D4F;
    margin-bottom: 10px;
}

.instructor-title {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructor-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-number {
    font-weight: bold;
    color: #3D1D4F;
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Registration Section */
.registration-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, #3D1D4F 0%, #733373 100%);
    color: white;
}

.registration-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.registration-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input, .form-select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.form-submit {
    width: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #3D1D4F;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}


/* Responsive */
@media (max-width: 768px) {
    

    .learning-path, .courses-section, .instructors-section {
        padding: 40px 20px;
    }

    .path-item {
        flex-direction: column !important;
        text-align: center;
    }

    .path-number {
        margin: 0 0 20px 0;
    }

    .path-line {
        display: none;
    }

    .courses-grid, .instructors-grid {
        grid-template-columns: 1fr;
    }

    .registration-form {
        padding: 30px 20px;
    }
}