#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Change to match your site background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

#loader img {
    width: 120px;
    height: auto;
    animation: spinPulse 2s infinite ease-in-out;
}

@keyframes spinPulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

body.loaded #loader {
    opacity: 0;
    pointer-events: none;
}
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

/* Modal Image */
.modal-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.close-btn:active {
    transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        max-width: 95vw;
        max-height: 85vh;
        margin: 10px;
    }

    .modal-image {
        max-height: 75vh;
    }

    .close-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
        font-size: 18px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        max-width: 98vw;
        max-height: 80vh;
        border-radius: 8px;
    }

    .modal-image {
        max-height: 70vh;
    }

    .close-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .content h1 {
        font-size: 1.5rem;
    }
}

/* Animation for page load */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

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

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--card-color), var(--card-color-light));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--card-color);
}

.card-ai {
    --card-color: #3b82f6;
    --card-color-light: #60a5fa;
}

.card-data {
    --card-color: #fbbf24;
    --card-color-light: #fcd34d;
}

.card-efficiency {
    --card-color: #6366f1;
    --card-color-light: #818cf8;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
    opacity: 0.2;
    transform: scale(1.5);
    z-index: -1;
}

.card-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--card-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateX(5px);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    background: var(--card-color);
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 8px;
    flex-shrink: 0;
    position: relative;
}

.feature-bullet::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--card-color);
    border-radius: 50%;
    top: -4px;
    left: -4px;
    opacity: 0.3;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.highlight {
    color: var(--card-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.decorative-1 {
    top: -50px;
    right: -50px;
}

.decorative-2 {
    bottom: -50px;
    left: -50px;
}

.journey-wrapper {
    /*max-width: 1000px;*/
    margin: 0 auto;
}

.journey-header {
    margin-bottom: 50px;
}

.journey-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    text-align: left;
    margin-bottom: 15px;
    position: relative;
}

.journey-main-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.learning-timeline {
    position: relative;
    padding-left: 30px;
}

.learning-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #1d4ed8, #7c3aed);
    border-radius: 2px;
}

.journey-module {
    position: relative;
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--module-accent);
    transition: all 0.3s ease;
}

.journey-module:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.journey-module::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--module-accent);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--module-accent);
}

.module-foundation {
    --module-accent: #3b82f6;
}

.module-facebook {
    --module-accent: #fbbf24;
}

.module-visual {
    --module-accent: #ef4444;
}

.module-networking {
    --module-accent: #10b981;
}

.module-platform {
    --module-accent: #8b5cf6;
}

.journey-module-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.journey-module-number {
    background: var(--module-accent);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 25px;
    margin-right: 15px;
    min-width: fit-content;
}

.journey-module-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
}

.journey-module-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.journey-lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.journey-lesson-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-lesson-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--module-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.journey-lesson-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: var(--module-accent);
    transform: translateY(-2px);
}

.journey-lesson-item:hover::before {
    transform: scaleY(1);
}

.journey-lesson-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.journey-lesson-title::before {
    content: 'â—';
    color: var(--module-accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.journey-lesson-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.journey-highlight {
    color: var(--module-accent);
    font-weight: 600;
}

.journey-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--module-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .journey-main-title {
        font-size: 2.2rem;
    }

    .learning-timeline {
        padding-left: 20px;
    }

    .learning-timeline::before {
        left: 10px;
    }

    .journey-module::before {
        left: -32px;
        width: 16px;
        height: 16px;
    }

    .journey-module {
        padding: 25px 20px;
    }

    .journey-lessons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .journey-module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.journey-completion-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.journey-module:last-child .journey-completion-indicator {
    background: var(--module-accent);
}

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

/* Section 1: What You'll Actually Achieve */
.achieve-section {
    margin-bottom: 80px;
}

.achieve-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: left;
    position: relative;
}

.achieve-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.achieve-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.achieve-week-card {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.4s ease;
}

.achieve-week-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
}

.achieve-week-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.achieve-week-number {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    z-index: 2;
}

.achieve-week-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.achieve-week-desc {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section 2: The Future is Now */
.future-section {
    margin-bottom: 80px;
}

.future-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.future-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.future-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

.future-subtitle .future-highlight {
    color: #3b82f6;
    font-weight: 700;
}

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

.future-capability-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 18px;
    padding: 30px;
    border-left: 6px solid #f59e0b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.future-capability-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.future-capability-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
}

.future-capability-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
}

.future-capability-desc {
    color: #a16207;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section 3: Who This Course Transforms */
.transform-section {
    margin-bottom: 40px;
}

.transform-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: left;
    position: relative;
}

.transform-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.transform-column {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 5px solid var(--column-color);
}

.transform-perfect {
    --column-color: #10b981;
}

.transform-not {
    --column-color: #ef4444;
}

.transform-column-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.transform-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
    background: var(--column-color);
}

.transform-column-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}

.transform-list {
    list-style: none;
}

.transform-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--column-color);
    transition: all 0.3s ease;
}

.transform-list-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateX(5px);
}

.transform-bullet {
    width: 8px;
    height: 8px;
    background: var(--column-color);
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 6px;
    flex-shrink: 0;
}

.transform-item-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .achieve-title,
    .future-main-title,
    .transform-title {
        font-size: 2rem;
    }

    .achieve-timeline,
    .future-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .transform-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achieve-week-card,
    .future-capability-box,
    .transform-column {
        padding: 25px 20px;
    }
}

.future-emphasis {
    font-weight: 700;
    color: #f59e0b;
}