/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    background: #2c5aa0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-logo .logo-image {
    height: 45px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.8rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Medium screen navigation adjustments */
@media (max-width: 1024px) {
    .nav-list {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.6rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .nav-logo .logo-text {
        font-size: 1.2rem;
    }
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #2c5aa0;
    background: white;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.2s ease;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    margin-top: 70px;
}

/* Simple Hero Section */
.simple-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.simple-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.course-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Video Section Styles */
.video-section {
    margin: 3rem auto 2rem;
    max-width: 800px;
}

.video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    background: #000;
}

.video-caption {
    margin-top: 1rem;
    font-size: 1rem;
    color: #ffd700;
    font-style: italic;
    text-align: center;
}

.cta-section {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Course Overview */
.course-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pricing-highlight {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.pricing-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Module Preview */
.module-preview {
    padding: 80px 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.module-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.module-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.view-curriculum {
    text-align: center;
    margin-top: 3rem;
}

/* Curriculum Page Styles */
.curriculum-header {
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.curriculum-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.curriculum-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.curriculum-modules {
    padding: 80px 0;
}

.module-card {
    background: white;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.module-header {
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 2rem;
}

.module-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.module-header h3 {
    font-size: 2rem;
    margin: 0;
}

.module-content {
    padding: 2rem;
}

.module-content h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.topics-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 8px;
    margin: 1rem 0;
}

.topics-list li {
    padding: 10px 15px;
    border-bottom: none;
    border-radius: 6px;
    background: #f8f9fa;
    border-left: 3px solid #ff6b35;
    font-size: 0.95rem;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.topics-list li:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.topics-list li:before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
}

/* Course Info Section */
.course-info {
    background: #f8f9fa;
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.pricing-info {
    text-align: center;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #666;
    margin-bottom: 0.5rem;
}

.discount {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    background: #2c5aa0;
    color: white;
    padding: 1rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
}

/* Buttons */
.cta-button {
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.secondary-button {
    background: transparent;
    color: #2c5aa0;
    padding: 1rem 2rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #2c5aa0;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #2c5aa0;
    color: white;
}

/* Pricing Styles */
.pricing-hero {
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.discount-banner {
    background: #ff6b35;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-weight: bold;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.pricing-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.pricing-header-card h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin: 2rem 0;
}

.price-current {
    font-size: 3rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
}

.period {
    font-size: 1.2rem;
}

.price-original {
    color: #666;
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.savings-badge {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

.cta-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Value Section */
.value-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

/* High-Touch Guarantee & Course Focus */
.guarantee-focus {
    padding: 80px 0;
    background: #f8f9fa;
}

.guarantee-focus h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.guarantee-features h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text strong {
    color: #2c5aa0;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.focus-breakdown {
    text-align: center;
}

.focus-breakdown h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.donut-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background: conic-gradient(
        #ff6b6b 0% 70%,
        #ffa500 70% 90%, 
        #8e44ad 90% 100%
    );
    position: relative;
}

.donut-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.project-work-color {
    background: #ff6b6b;
}

.live-instruction-color {
    background: #ffa500;
}

.personal-support-color {
    background: #8e44ad;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: bold;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-button {
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-button.phone {
    background: #2c5aa0;
    color: white;
}

.contact-button.whatsapp {
    background: #25d366;
    color: white;
}

.contact-button.email {
    background: #ea4335;
    color: white;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Enrollment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 1;
}

.close:hover,
.close:focus {
    color: #2c5aa0;
}

.enrollment-step {
    display: none;
    padding: 2rem;
}

.enrollment-step.active {
    display: block;
}

.enrollment-step h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
}

.enrollment-step p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.payment-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.payment-method h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-details {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 2px solid #e1e5e9;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-item:last-child {
    border-bottom: none;
}

.till-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    font-family: 'Courier New', monospace;
}

.amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b35;
}

.copy-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #1e3d6f;
}

.payment-instructions {
    margin: 2rem 0;
}

.payment-instructions h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.payment-instructions ol {
    padding-left: 1.5rem;
}

.payment-instructions li {
    margin: 0.8rem 0;
    line-height: 1.5;
}

.confirmation-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.confirmation-note p {
    margin: 0.5rem 0;
    text-align: left;
}

.confirmation-note a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: bold;
}

.step-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.success-step {
    text-align: center;
}

.success-step h2 {
    color: #28a745;
    font-size: 2rem;
}

.success-details {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.success-details p {
    margin: 0.5rem 0;
    color: #155724;
}

.success-step ul {
    text-align: left;
    max-width: 400px;
    margin: 1rem auto;
}

.success-step li {
    margin: 0.8rem 0;
    line-height: 1.5;
}

.enroll-button {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.enroll-button:hover {
    background: linear-gradient(135deg, #e55a2b, #d64925);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.form-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.enrollment-checklist {
    list-style: none;
    margin: 1rem 0;
}

.enrollment-checklist li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.enrollment-checklist li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.urgency-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Instructor Styles */
.instructor-hero {
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 80px 0;
}

.instructor-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.instructor-photo {
    position: relative;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.instructor-avatar {
    font-size: 5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.instructor-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge.certified {
    background: #ff6b35;
}

.badge.experience {
    background: rgba(255,255,255,0.2);
}

.instructor-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.instructor-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.instructor-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Timeline */
.experience-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #2c5aa0;
    transform: translateX(-50%);
}

.timeline-item {
    margin: 3rem 0;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: #2c5aa0;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 45%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #666;
    margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #2c5aa0;
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid #2c5aa0;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.philosophy-point h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.success-metrics {
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.metric {
    margin: 1.5rem 0;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Industry Section */
.industry-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.industry-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industry-highlights {
    margin: 2rem 0;
}

.industry-highlights ul {
    list-style: none;
}

.industry-highlights li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.sector-card {
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.sector-stats {
    margin-top: 2rem;
}

.sector-stat {
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sector-stat:last-child {
    border-bottom: none;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Education & Background Section */
.education-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

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

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

.education-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.education-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.education-card h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.skill-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.skill-text {
    font-weight: 500;
    color: #333;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.achievement-icon {
    font-size: 2rem;
    min-width: 40px;
}

.achievement-item p {
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* FAQ Styles */
.faq-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.faq-header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 2rem;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.faq-category h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.6;
    color: #555;
}

.faq-contact {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-contact h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-button {
    background: #2c5aa0;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-button:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
}

/* MySQL Tutorial Styles */
.mysql-header {
    background: linear-gradient(135deg, #00758F 0%, #005662 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.mysql-header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.mysql-subtitle {
    font-size: 1.3rem;
    color: #00BCD4;
    margin-bottom: 2rem;
}

.mysql-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.course-stats-mysql {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.course-stats-mysql .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #00BCD4;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.tutorial-navigation {
    padding: 60px 0;
    background: #f8f9fa;
}

.tutorial-navigation h2 {
    text-align: center;
    color: #00758F;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.nav-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.nav-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.nav-card h3 {
    color: #00758F;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.nav-card p {
    color: #666;
    line-height: 1.5;
}

.tutorial-content {
    padding: 80px 0;
}

.tutorial-section {
    margin-bottom: 5rem;
}

.tutorial-section h2 {
    color: #00758F;
    font-size: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #00BCD4;
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.lesson-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.lesson-card:hover {
    transform: translateY(-5px);
}

.lesson-video {
    position: relative;
    background: #000;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.lesson-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    text-align: center;
    color: white;
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.lesson-content {
    padding: 1.5rem;
}

.lesson-content h3 {
    color: #00758F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.lesson-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.lesson-content ul {
    list-style: none;
    padding: 0;
}

.lesson-content li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.lesson-content li:before {
    content: "✓";
    color: #00BCD4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.exercise-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 15px;
}

.exercise-section h2 {
    text-align: center;
    color: #00758F;
    margin-bottom: 3rem;
}

.exercise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exercise-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.exercise-card h3 {
    color: #00758F;
    margin-bottom: 1rem;
}

.exercise-skills {
    margin-top: 1.5rem;
}

.skill-tag {
    background: #00BCD4;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.next-steps {
    background: linear-gradient(135deg, #00758F 0%, #005662 100%);
    color: white;
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.next-steps h2 {
    margin-bottom: 1rem;
}

.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Mobile Responsiveness for MySQL Tutorial */
@media (max-width: 768px) {
    .mysql-header h1 {
        font-size: 2.2rem;
    }
    
    .course-stats-mysql {
        gap: 1rem;
    }
    
    .course-stats-mysql .stat-item {
        padding: 1rem;
        min-width: 120px;
    }
    
    .nav-grid {
        grid-template-columns: 1fr;
    }
    
    .lesson-grid {
        grid-template-columns: 1fr;
    }
    
    .exercise-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2c5aa0;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 2rem 1rem;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
        font-size: 1.1rem;
        border-radius: 8px;
        margin: 0.25rem;
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo .logo-image {
        height: 35px;
    }

    .nav-logo .logo-text {
        font-size: 1.2rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-container,
    .overview-content,
    .instructor-container,
    .contact-container,
    .philosophy-container,
    .industry-content,
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Mobile Video Styles */
    .video-section {
        margin: 2rem auto 1.5rem;
    }

    .video-container {
        padding: 15px;
        border-radius: 10px;
    }

    .video-caption {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .path-container {
        flex-direction: column;
    }

    .path-arrow {
        transform: rotate(90deg);
    }

    .timeline:before {
        left: 2rem;
    }

    .timeline-marker {
        left: 2rem;
    }

    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem !important;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .instructor-stats {
        justify-content: center;
    }

    .photo-placeholder {
        width: 150px;
        height: 150px;
    }

    .instructor-avatar {
        font-size: 3.5rem;
    }

    .education-grid,
    .skills-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .skill-item {
        padding: 0.8rem;
    }

    .achievement-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .photo-placeholder {
        width: 120px;
        height: 120px;
    }

    .instructor-avatar {
        font-size: 2.5rem;
    }

    .benefits-grid,
    .value-grid,
    .expertise-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-current {
        font-size: 2.5rem;
    }

    .contact-buttons {
        gap: 0.5rem;
    }

    .contact-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Modal Responsive */
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .enrollment-step {
        padding: 1.5rem;
    }

    .enrollment-step h2 {
        font-size: 1.5rem;
    }

    .payment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .till-number {
        font-size: 1.3rem;
    }

    .step-buttons {
        flex-direction: column;
    }

    .payment-details {
        padding: 1rem;
    }
}

/* SEO and Accessibility Enhancements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Course Stats Section */
.course-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Skills Preview Section */
.skills-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.skills-list li {
    background: white;
    padding: 1rem;
    border-left: 4px solid #4CAF50;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.skills-list li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Additional Resources Cards */
.additional-resources {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.additional-resources h3 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.additional-resources p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card.highlight {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

.resource-link {
    color: #00758F;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #005662;
    text-decoration: none;
}

.resource-button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resource-button:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
}

.skills-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-category h4 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.learning-path {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid #2c5aa0;
}

.learning-path h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.learning-path p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Highlight */
.contact-highlight {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #4CAF50;
    text-align: center;
    margin-top: 2rem;
}

.contact-highlight h2 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.contact-highlight a {
    color: #1976D2;
    text-decoration: none;
    font-weight: bold;
}

.contact-highlight a:hover {
    text-decoration: underline;
}

/* Enhanced Feature Items */
.feature-item h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

/* Mobile optimizations for new elements */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
    
    .course-stats {
        padding: 2rem 0;
    }
}

/* ===================================
   PYTHON TUTORIAL PAGE STYLES
   =================================== */

/* Python Header Section */
.python-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.python-hero {
    max-width: 800px;
    margin: 0 auto;
}

.python-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.python-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.python-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e3f2fd;
}

/* Python Badges */
.python-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.free {
    background: #4caf50;
    color: white;
}

.badge.level {
    background: #2196f3;
    color: white;
}

.badge.duration {
    background: #ff9800;
    color: white;
}

.badge.projects {
    background: #9c27b0;
    color: white;
}

/* Python Stats */
.python-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.python-stats .stat-item {
    text-align: center;
}

.python-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.python-stats .stat-label {
    color: #e3f2fd;
    font-size: 0.9rem;
}

/* Learning Path Section */
.learning-path {
    background: #f8f9fa;
    padding: 3rem 0;
}

.path-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.path-step {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 180px;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.path-arrow {
    font-size: 1.5rem;
    color: #1e3c72;
    font-weight: bold;
}

/* Python Curriculum */
.python-curriculum {
    padding: 4rem 0;
    background: #ffffff;
}

.curriculum-week {
    margin-bottom: 3rem;
    border: 2px solid #e3f2fd;
    border-radius: 15px;
    overflow: hidden;
}

.curriculum-week h3 {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.4rem;
}

.lesson-group {
    padding: 2rem;
}

.lesson-group h4 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.lesson-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
}

.lesson-content h5 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.lesson-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.lesson-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic {
    background: #e3f2fd;
    color: #1e3c72;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Python Tools Section */
.python-tools {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 4rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.tool-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Career Benefits Section */
.career-benefits {
    padding: 4rem 0;
    background: #1e3c72;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.benefit-item h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.demand {
    background: #4caf50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile Responsiveness for Python */
@media (max-width: 768px) {
    .python-header h1 {
        font-size: 2rem;
    }
    
    .python-stats {
        gap: 1.5rem;
    }
    
    .python-stats .stat-number {
        font-size: 2rem;
    }
    
    .path-steps {
        flex-direction: column;
    }
    
    .path-arrow {
        transform: rotate(90deg);
    }
    
    .lesson-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Course Actions Styling */
.course-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.enroll-btn-small {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.enroll-btn-small:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Mobile responsive for course actions */
@media (max-width: 768px) {
    .course-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .enroll-btn-small {
        width: 100%;
        text-align: center;
    }
}

/* Realistic disclaimers styling */
.realistic-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.realistic-disclaimer p {
    margin: 0;
    color: #495057;
}

/* Interactive Quiz Game Styling */
.quiz-game-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    margin: 2rem 0;
}

.quiz-game-header {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.quiz-game-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.game-badge {
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.quiz-game-container {
    max-width: 600px;
    margin: 0 auto;
}

.quiz-game {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quiz-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    margin-right: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 20%;
}

.question-counter {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
}

.question-card {
    text-align: center;
    margin-bottom: 2rem;
}

.question-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.answer-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-btn {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.answer-btn:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateY(-2px);
}

.answer-btn.selected {
    border-color: #28a745;
    background: #d4edda;
    color: #155724;
}

.answer-btn.correct {
    border-color: #28a745;
    background: #d4edda;
    color: #155724;
}

.answer-btn.incorrect {
    border-color: #dc3545;
    background: #f8d7da;
    color: #721c24;
}

.quiz-controls {
    text-align: center;
}

.next-btn, .restart-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.next-btn:hover, .restart-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.next-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.restart-btn {
    background: #28a745;
}

.restart-btn:hover {
    background: #218838;
}

.quiz-results {
    text-align: center;
    padding: 2rem 0;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.result-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.result-content p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.course-recommendation {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.course-recommendation h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.recommended-course-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.course-icon {
    font-size: 2rem;
}

.course-info {
    flex: 1;
    text-align: left;
}

.course-info h5 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.course-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.enroll-rec-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enroll-rec-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* Results Graph Styling */
.results-graph-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.results-graph-section h4 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.skills-chart {
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.category-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.category-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.category-score {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.category-percentage {
    font-size: 0.9rem;
    color: #6c757d;
}

.score-excellent { color: #28a745; }
.score-good { color: #17a2b8; }
.score-fair { color: #ffc107; }
.score-needs-work { color: #dc3545; }

/* Mobile responsive for quiz */
@media (max-width: 768px) {
    .quiz-game-header h2 {
        font-size: 1.8rem;
    }
    
    .quiz-game {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .answer-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-bar {
        margin-right: 0;
    }
    
    .recommended-course-card {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .course-info {
        text-align: center;
    }
}

/* ===================================================
   POWER BI TUTORIAL PAGE STYLES
   ================================================== */

/* Power BI Header and Hero Section */
.powerbi-header {
    background: linear-gradient(135deg, #f7b32b 0%, #fcb131 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.powerbi-hero {
    max-width: 800px;
    margin: 0 auto;
}

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

.powerbi-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.powerbi-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

/* Power BI Badges */
.powerbi-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.powerbi-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.powerbi-badges .badge.free {
    background: #27ae60;
    border-color: #2ecc71;
}

.powerbi-badges .badge.level {
    background: #e74c3c;
    border-color: #c0392b;
}

.powerbi-badges .badge.duration {
    background: #9b59b6;
    border-color: #8e44ad;
}

.powerbi-badges .badge.projects {
    background: #3498db;
    border-color: #2980b9;
}

/* Power BI Stats */
.powerbi-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.powerbi-stats .stat-item {
    text-align: center;
}

.powerbi-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.powerbi-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Learning Path Section */
.learning-path {
    background: #f8f9fa;
    padding: 80px 0;
}

.learning-path h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.path-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.path-step {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}

.step-number {
    background: #f7b32b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.path-arrow {
    color: #f7b32b;
    font-size: 2rem;
    font-weight: bold;
}

.path-step h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.path-step p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Power BI Curriculum */
.powerbi-curriculum {
    padding: 80px 0;
    background: white;
}

.powerbi-curriculum h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

/* Power BI Features */
.powerbi-features {
    background: #f8f9fa;
    padding: 80px 0;
}

.powerbi-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Power BI Career Benefits */
.career-benefits {
    background: white;
    padding: 80px 0;
}

.career-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 5px solid #f7b32b;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.demand {
    display: inline-block;
    background: #e8f5e8;
    color: #27ae60;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Complete Skills Path */
.complete-path {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.complete-path h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.complete-path > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.skills-path {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-step {
    background: white;
    color: #2c3e50;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.skill-step:hover {
    transform: translateY(-5px);
}

.skill-step.highlight {
    background: #f7b32b;
    color: white;
    transform: scale(1.05);
}

.skill-step.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.skill-step h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.skill-step p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.path-link {
    color: #f7b32b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.path-link:hover {
    text-decoration: underline;
}

.path-button {
    background: #f7b32b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.path-button:hover {
    background: #e09e1e;
}

.current-course {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.path-plus {
    color: #f7b32b;
    font-size: 2rem;
    font-weight: bold;
}

/* Mobile Responsiveness for Power BI */
@media (max-width: 768px) {
    .powerbi-header h1 {
        font-size: 2.2rem;
    }
    
    .powerbi-subtitle {
        font-size: 1.1rem;
    }
    
    .powerbi-badges {
        justify-content: center;
    }
    
    .powerbi-stats {
        gap: 25px;
    }
    
    .path-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .path-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .skills-path {
        flex-direction: column;
        align-items: center;
    }
    
    .path-plus {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}