﻿:root {
    --primary: #00c2ff;       /* Cyan */
    --primary-dark: #009ace;
    --secondary: #6366f1;     /* Indigo */
    --hero-bg: #2b1c8e;       /* Deep Blue/Purple */
    --hero-gradient: linear-gradient(135deg, #2b1c8e 0%, #1a1159 100%);
    
    --text-dark: #111111;
    --text-grey: #555555;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    
    --font-main: 'Poppins', sans-serif;
    --container-width: 1200px;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
.logo span { color: var(--primary); }
.logo.white { color: var(--white); }

.nav-links a {
    margin-left: 2rem;
    font-weight: 500;
    color: var(--text-dark);
}
.nav-links a:hover { color: var(--primary); }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero */
.hero {
    background: var(--hero-gradient);
    color: var(--white);
    padding: 100px 0 150px; /* Extra padding bottom for overlap effect */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-bg), transparent);
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Pathways Section */
.pathways {
    margin-top: -100px; /* Overlap Hero */
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

.pathway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

a.pathway-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.pathway-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.pathway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--text-grey);
}

.pm-card::before { background: var(--primary); }
.manager-card::before { background: var(--secondary); }

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-grey);
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pm-card .icon-wrapper { background: rgba(0, 194, 255, 0.1); color: var(--primary); }
.manager-card .icon-wrapper { background: rgba(99, 102, 241, 0.1); color: var(--secondary); }

.pathway-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-desc {
    color: var(--text-grey);
    margin-bottom: 2rem;
    min-height: 80px; /* Alignment */
}

/* New Countdown Styles */
.card-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    background: transparent;
    justify-content: center;
}

.c-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 50px;
}

.c-item span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1;
}

.c-item small {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-grey);
    font-weight: 600;
}

.pm-card .c-item span { color: var(--primary); }
.manager-card .c-item span { color: var(--secondary); }

.card-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-features li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.card-features li i { color: #ccc; }
.pm-card .card-features li i { color: var(--primary); }
.manager-card .card-features li i { color: var(--secondary); }

.card-footer {
    margin-top: auto;
}

.btn-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
}

.pm-card .btn-card {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

.pm-card .btn-card:hover { background: var(--primary-dark); }

.manager-card .btn-card {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.manager-card .btn-card:hover { background: #4f46e5; }

/* About Section */
.about-us {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    text-align: center;
}

.about-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.7rem 1.2rem;
    background: transparent;
    border: 2px solid #0A66C2;
    color: #0A66C2;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.linkedin-btn:hover {
    background: #0A66C2;
    color: white;
}

.linkedin-btn i {
    font-size: 1.1rem;
}

.about-text h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-grey);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Author Section */
.author {
    padding: 80px 0;
}

.author-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.author-img-wrapper {
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.author-img-wrapper img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.linkedin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background: transparent;
    border: 2px solid #0A66C2;
    color: #0A66C2;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.linkedin-btn:hover {
    background: #0A66C2;
    color: white;
}

.linkedin-btn i {
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-info h4 { color: var(--primary); text-transform: uppercase; margin-bottom: 5px; font-size: 1rem; }
.author-info h2 { text-align: left; margin-bottom: 1rem; }
.bio { color: var(--text-grey); margin-bottom: 1rem; line-height: 1.7; }
.bio strong { color: var(--text-dark); }

.author-achievements {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.author-achievements li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}
.author-achievements li:last-child { margin-bottom: 0; }
.author-achievements li i { color: #22c55e; margin-right: 10px; flex-shrink: 0; }

/* Trainer Logos Section */
.trainer-logos {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.logos-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: 2rem;
    font-weight: 600;
}

.company-logos-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.company-logos-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
}

.company-logo-img {
    max-height: 100px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.company-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Hide duplicated logos on desktop */
.trainer-logos .company-logo-img.duplicate {
    display: none;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials (Carousel) */
.testimonials { background: var(--hero-bg); color: var(--white); position: relative; padding: 80px 0; }
.testimonials h2 { color: var(--white); text-align: center; margin-bottom: 0.5rem; }
.testimonials-intro {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px; /* Space for arrows */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.review-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: calc(50% - 1rem); /* 2 items visible (subtract gap) */
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars { color: #ffd700; margin-bottom: 1rem; font-size: 1.2rem; }
.review-card p { font-style: italic; opacity: 0.9; margin-bottom: 1.5rem; }
.reviewer { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: 0.3s;
}
.carousel-btn:hover { background: var(--primary); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active { background: var(--primary); transform: scale(1.2); }

/* Lead Magnet */
.lead-magnet {
    background: var(--white);
    border-top: 1px solid #eee;
}

.magnet-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin: 3rem auto;
}

.magnet-text {
    flex: 1;
    min-width: 280px;
}

.magnet-text h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.magnet-text p {
    margin: 0;
    color: var(--text-grey);
}

.magnet-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    max-width: 450px;
}

.form-group-row {
    display: flex;
    gap: 10px;
}

.form-group-row input {
    flex: 1;
}

.form-consent {
    font-size: 0.7rem;
    color: var(--text-grey);
    text-align: left;
    line-height: 1.4;
}

.form-consent label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    cursor: pointer;
}

.form-consent input {
    margin-top: 3px;
    width: auto; /* Reset inherited width */
    flex-shrink: 0;
}

.magnet-form input[type="email"] {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%; /* Changed from fixed width to 100% of flex item */
    font-family: var(--font-main);
}

.magnet-form .btn-primary {
    padding: 15px 25px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.magnet-form .btn-primary:hover {
    background: var(--primary-dark);
}

/* PS Section */
.ps-section {
    background: var(--light-bg);
    padding: 2.5rem 0;
    border-top: 1px solid #eee;
}

.ps-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-grey);
    text-align: center;
}

.ps-section a {
    color: var(--primary);
    font-weight: 500;
}

.ps-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--hero-bg);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    margin-top: 30px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
    .pathway-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .author-layout { flex-direction: column; }
    .hero h1 { font-size: 2.2rem; }
    .about-img { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    /* Author Section Mobile */
    .author-layout {
        text-align: center;
        align-items: center;
    }
    .author-img-wrapper {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .author-img-wrapper img {
        width: 250px;
        height: 250px;
        margin: 0 auto 1rem;
    }
    .linkedin-btn {
        margin-bottom: 1.5rem;
    }
    .author-info h2 { text-align: center; }
    .author-achievements {
        text-align: left;
    }

    /* Carousel Responsive */
    .review-card { min-width: 100%; flex: 0 0 100%; }
    .carousel-container { padding: 0; } /* Remove side padding on mobile */
    .carousel-btn { display: none; } /* Hide arrows on mobile, use dots/swipe */

    /* Company Logos Marquee Mobile */
    .trainer-logos .company-logos-wrapper {
        max-width: 100% !important;
        padding: 0 !important;
        overflow: hidden !important;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    .trainer-logos .company-logos-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 2.5rem !important;
        width: max-content !important;
        animation: scroll-logos 10s linear infinite !important;
    }
    .trainer-logos .company-logo-img.duplicate {
        display: inline-block !important;
    }
    .trainer-logos .company-logos-grid .company-logo-img {
        max-height: 55px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        transition: none !important;
    }

    /* Lead Magnet Responsive */
    .magnet-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .magnet-text h3 { font-size: 1.25rem; }
    .magnet-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    .form-group-row {
        flex-direction: column;
        width: 100%;
    }
    .form-group-row input,
    .form-group-row button {
        width: 100%;
    }
    .form-consent {
        font-size: 0.65rem;
        line-height: 1.5;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .form-consent label {
        flex-direction: row;
        align-items: flex-start;
    }
    .form-consent span {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .pathway-card { padding: 2rem; }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
    }
    .nav-content {
        flex-wrap: wrap;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        margin-top: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        margin-left: 0;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
}
