/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --color-bg: #ffffff;
    --color-surface: #e3dacc;
    --color-surface-alt: #e3dacc;
    --color-text: #0B0F14;
    --color-text-muted: rgba(11, 15, 20, 0.72);
    --color-primary-hover: #0B2E20;
    --dark-green: #0B0F14;
    --icon-green: #0B0F14;
    --icon-bg: rgba(227, 218, 204, 0.3);
    --accent: #e3dacc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.landing-page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1800px;
    height: 80px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 1000;
    /* border: 1px solid rgba(15, 61, 42, 0.12); */
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 49px;
}

.logo-text {
    width: 260px;
    height: 54px;
    object-fit: contain;
}

.logo-icon {
    width: 37px;
    height: 37px;
    position: relative;
}

.logo-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--icon-green), #EADDFF);
    border-radius: 8px;
    transform: rotate(180deg) scaleY(-1);
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-item {
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
}

.nav-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-muted);
    text-transform: uppercase;

}

.nav-item:hover,
.nav-item.active {
    background: rgba(163, 230, 93, 0.2);
}

.nav-item.active span {
    color: var(--dark-green);
}

.nav-actions {
    display: flex;
    gap: 5px;
}

.btn-login,
.btn-signup {
    padding: 6px 20px;
    border-radius: 10px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: black;
}

.btn-signup {
    background: #a9dd81;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 10px 28px;
    font-size: 15px;
}

.btn-signup:hover {
    /* background: #0B2E20; */
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 140px 80px 100px;
    max-width: 1800px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 30px;
    z-index: 1;
    padding: 20px 0;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 56px;
    color: var(--color-text);
    line-height: 1.1;
    max-width: 100%;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--color-text-muted);
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
    text-align: justify;
}

.hero-image {
    position: relative;
    flex: 1.8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-img {
    width: 130%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
    /* filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12)); */
    transform: translateX(5%);
}

/* Section 2 - Unlock Potential */
.section-unlock {
    background-color: #fafbfc;
    padding: 60px 80px;
    height: auto;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    margin: 60px auto;
    max-width: 1800px;
    border-radius: 40px;
}

.unlock-content {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 100%;
}

.unlock-visual {
    position: relative;
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.unlock-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unlock-icon-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.unlock-text {
    flex: 1;
}

.unlock-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;

}

.unlock-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;

    color: var(--color-text-muted);
    text-align: justify;
}

/* Section 3 - Learning Experience */
.section-learning {
    background-color: transparent;
    padding: 110px 80px 60px;
    max-width: 1800px;
    margin: 60px auto;
    border-radius: 40px;
}

.learning-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.learning-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 45px;
    color: black;
    margin-bottom: 25px;

}

.learning-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;

}

.learning-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #fcf1fe;
    padding: 80px;
    border-radius: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.learning-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.learning-indicator-wrapper {
    position: relative;
    height: 0;
}

/* .learning-indicator-arrow {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid white;
    transition: left 0.3s ease, transform 0.3s ease;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(11, 15, 20, 0.1));
} */

.learning-image {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 320px;
    height: 450px;
    opacity: 0.6;
}

.learning-image:hover,
.learning-image.active {
    transform: translateY(-5px);
    opacity: 1;
}

.learning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learning-features {
    min-height: 300px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.learning-feature {
    background: var(--color-surface);
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: none;
    width: 100%;
}

.learning-feature.active {
    opacity: 1;
    transform: translateY(0);
    display: flex;
}

.learning-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.learning-feature-icon .material-icons {
    font-size: 35px;
    color: var(--icon-green);
}

.learning-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.learning-feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--color-text);
    margin-bottom: 20px;

}

.learning-feature-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    text-align: justify;
}

.learning-feature-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.learning-feature-btn:hover {
    background: #0f2815;
    transform: translateY(-2px);
}

/* Section 4 - Top Courses */
.section-courses {
    background-color: #fafbfc;
    padding: 120px 100px;
}

.courses-header {
    text-align: center;
    margin-bottom: 60px;
}

.courses-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 39px;
    color: var(--color-text);
    margin-bottom: 20px;

}

.courses-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

.courses-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.courses-viewport {
    width: 100%;
    overflow: hidden;
}

.courses-scroll {
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease;
    overflow-x: auto;
    padding: 10px 10px 30px;
    scroll-padding-left: 10px;
    scroll-padding-right: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.courses-scroll::-webkit-scrollbar {
    display: none;
}

.courses-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.course-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(11, 46, 32, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.5;
}

.course-indicator.active {
    background: var(--dark-green);
    width: 32px;
    border-radius: 6px;
    opacity: 1;
}

.course-indicator:hover {
    background: rgba(11, 46, 32, 0.5);
}

.course-card {
    width: 350px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
    height: 456px;
    object-fit: cover;
    margin: 0;
    border-radius: 15px;
    aspect-ratio: 16/9;
}

.course-content {
    padding: 23px;
}

.course-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--color-text);
    margin-bottom: 10px;

}

.course-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-muted);
    text-align: justify;
}

/* Section 5 - Built for Human Potential */
.section-human-potential {
    background-color: #fafbfc;
    padding: 140px 100px 80px;
    max-width: 1800px;
    margin: 60px auto;
    border-radius: 40px;
}

.potential-header {
    text-align: center;
    margin-bottom: 60px;
}

.potential-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 39px;
    color: var(--color-text);
    margin-bottom: 20px;

}

.potential-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 945px;
    margin: 0 auto;
    text-align: justify;
}

.potential-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.potential-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.potential-image {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.potential-image:hover,
.potential-image.active {
    transform: translateY(-5px);
    opacity: 1;
}

.potential-image img {
    width: 300px;
    height: 259px;
    object-fit: cover;
}

.potential-features {
    min-height: 200px;
}

.potential-feature {
    background: #fcf1fe;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border: 1px solid rgba(15, 61, 42, 0.08);
    max-width: 983px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.potential-feature.active {
    opacity: 1;
    transform: translateY(0);
}

.potential-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.potential-feature-icon .material-icons {
    font-size: 35px;
    color: var(--icon-green);
}

.potential-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.potential-feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--color-text);
    margin-bottom: 20px;

}

.potential-feature-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    text-align: justify;
}

.potential-feature-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.potential-feature-btn:hover {
    background: #0f2815;
    transform: translateY(-2px);
}

/* Section 6 - Outcomes */
.section-outcomes {
    background-color: #f4f4f4;
    padding: 120px 100px;
    max-width: 1800px;
    margin: 60px auto;
    border-radius: 40px;
}

.outcomes-header {
    text-align: center;
    margin-bottom: 60px;
}

.outcomes-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 39px;
    color: var(--color-text);
    margin-bottom: 20px;

}

.outcomes-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

.outcomes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
}

.outcome-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 50px 40px 30px;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(15, 61, 42, 0.1);
    position: relative;
    overflow: hidden;
    width: 400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
}


.outcome-card:hover {
    transform: translateY(-12px);
    background: #eaf7dd;
    border-color: transparent;
}

.outcome-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-card:hover .outcome-icon {
    transform: scale(1.1) rotate(-6deg);
}

.outcome-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.outcome-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--color-text);
    margin-bottom: 12px;

    line-height: 1.25;
    letter-spacing: -0.02em;
}

.outcome-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(11, 15, 20, 0.7);
    margin-bottom: 28px;
    text-align: justify;
}

.outcome-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
}

.outcome-btn .material-icons {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.outcome-btn:hover {
    background: #0B2E20;
    transform: translateY(-3px);
}

.outcome-btn:hover .material-icons {
    transform: translateX(5px);
}

/* Section 7 - Impact Statistics */
.section-impact {
    background-color: #fafbfc;
    padding: 120px 100px;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 39px;
    color: var(--color-text);
    margin-bottom: 20px;

}

.impact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 775px;
    margin: 0 auto;
    text-align: justify;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 44px 36px;
    background-color: #fcf1fe;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(15, 61, 42, 0.1);
}

/* .stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(163, 230, 93, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f5 100%);
} */

.stat-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(11, 15, 20, 0.65);
    margin-bottom: 20px;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 72px;
    background: linear-gradient(135deg, #0B2E20 0%, #174022 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    line-height: 1;

    letter-spacing: -0.02em;
}

.stat-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(11, 15, 20, 0.7);
    max-width: 240px;
    margin: 0 auto;
    text-align: justify;
}

/* Section 8 - User Testimonials */
.section-user-testimonials {
    background-color: #fbe9fd;
    padding: 120px 100px;
    max-width: 1800px;
    margin: 60px auto;
    border-radius: 40px;
}

.user-testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
}

.user-testimonials-text-content {
    text-align: left;
}

.user-testimonials-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--color-text);
    margin-bottom: 24px;

    letter-spacing: -0.02em;
}

.user-testimonials-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    text-align: justify;
}

.user-testimonials-visual {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    border-radius: 0;
    overflow: hidden;
}

.user-testimonials-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.user-testimonials-circle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.user-testimonials-avatar {
    width: 143px;
    height: 143px;
    background: rgba(79, 55, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-testimonials-avatar .material-icons {
    font-size: 60px;
    color: var(--icon-green);
}

.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.user-testimonials-carousel {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    flex: 1;
}

.user-testimonials-carousel .user-testimonial-card {
    width: 600px;
    max-width: 90%;
    flex-shrink: 0;
    margin: 0 auto;
}

.carousel-btn {
    background: var(--dark-green);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: #0B2E20;
    transform: scale(1.1);
}

.carousel-btn .material-icons {
    font-size: 28px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(11, 46, 32, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.5;
}

.indicator.active {
    background: var(--dark-green);
    width: 32px;
    border-radius: 6px;
    opacity: 1;
}

.indicator:hover {
    background: rgba(11, 46, 32, 0.5);
}

.user-testimonial-card {
    /* background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%); */
    background-color: white;
    border-radius: 32px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(15, 61, 42, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.4 / 1;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.user-testimonial-card:hover {
    transform: translateY(-8px);
    /* border-color: rgba(163, 230, 93, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f5 100%); */
}

.user-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(163, 230, 93, 0.2), rgba(163, 230, 93, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(163, 230, 93, 0.3);
    transition: all 0.3s ease;
}

.user-testimonial-card:hover .user-testimonial-avatar {
    transform: scale(1.08);
    border-color: rgba(163, 230, 93, 0.5);
}

.user-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-testimonial-avatar .material-icons {
    font-size: 26px;
    color: var(--dark-green);
}

.user-testimonial-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.user-testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(11, 15, 20, 0.85);
    margin-bottom: 24px;
    font-style: italic;

    position: relative;
    z-index: 1;
}

.user-testimonial-author h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 6px;

    letter-spacing: -0.01em;
}

.user-testimonial-author p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: rgba(11, 15, 20, 0.5);

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section 9 - Featured Resources */
.section-featured-resources {
    background-color: #f4f4f4;
    padding: 120px 100px;
    max-width: 1800px;
    margin: 60px auto;
    border-radius: 40px;
}

.featured-resources-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-resources-icon {
    width: 109px;
    height: 109px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-resources-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-resources-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 39px;
    color: var(--color-text);
    margin-bottom: 15px;

}

.featured-resources-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 591px;
    text-align: justify;
}

.featured-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.featured-resource-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 2px solid rgba(15, 61, 42, 0.1);
    min-height: 240px;
    text-decoration: none;
    color: inherit;
}

.featured-resource-card:hover {
    transform: translateY(-10px);
    border-color: rgba(163, 230, 93, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f5 100%);
}

.featured-resource-card:first-child {
    border-top-right-radius: 60px;
}

.featured-resource-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-resource-card:hover .featured-resource-icon {
    transform: scale(1.08) rotate(-5deg);
}

.featured-resource-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-resource-icon .material-icons {
    font-size: 40px;
    color: #0B2E20;
}

.featured-resource-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 20px;

    letter-spacing: -0.01em;
    line-height: 1.3;
}

.featured-resource-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(11, 15, 20, 0.7);

    margin-bottom: 20px;
}

.featured-resource-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-resource-btn .material-icons {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.featured-resource-btn:hover {
    background: #0B2E20;
    transform: translateY(-2px);
}

.featured-resource-btn:hover .material-icons {
    transform: translateX(4px);
}

.section-features {
    background-color: var(--dark-green);
    padding: 120px 100px;
    height: auto;
    min-height: 419px;
    position: relative;
    overflow: hidden;
}

.features-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 100px;
}

.feature-circles {
    position: relative;
    width: 246px;
    height: 246px;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    background: var(--icon-green);
    top: -81.3%;
    left: 0;
}

.circle-2 {
    background: #EADDFF;
    top: -81.3%;
    left: 0;
}

.circle-3 {
    background: var(--accent);
    top: -81.3%;
    left: 0;
}

.circle-content {
    position: absolute;
    inset: 25.06% 72.01% 23.63% 13.33%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .material-icons {
    font-size: 30px;
    color: var(--dark-green);
}

.feature-text {
    color: #ffffff;
    width: 147px;
}

.feature-text h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;

}

.feature-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;

}

/* Section 3 - How It Works */
.section-how-it-works {
    background-color: transparent;
    padding: 120px 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--dark-green);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-text-muted);

}

/* Removed unused .step CSS rules - elements don't exist in HTML */

/* Section 4 - Testimonials */
.section-testimonials {
    background-color: transparent;
    padding: 120px 100px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--color-surface);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(15, 61, 42, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;

}

.testimonial-author h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-green);
    margin-bottom: 4px;

}

.testimonial-author p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(30, 30, 30, 0.6);

}

/* Section 5 - Resources */
.section-resources {
    background-color: transparent;
    padding: 120px 100px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.resource-card {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card:first-child {
    border-top-right-radius: 60px;
}

.resource-icon {
    width: 76px;
    height: 76px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-icon .material-icons {
    font-size: 36px;
    color: var(--icon-green);
}

.resource-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 10px;

}

.resource-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.4;

}

/* Footer */
.footer {
    background-color: #0B0F14;
    height: 236px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.footer-brand h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 200px;
    color: #a9dd81;
    line-height: 1;

}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #a9dd81;
    transition: gap 0.3s ease;
}

.footer-link:hover {
    gap: 15px;
}

.footer-link span:first-child {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;

}

.footer-link .material-icons {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1520px) {
    .footer-brand h2 {
        font-size: 150px;
    }
}

@media (max-width: 1440px) {
    .navbar {
        width: 95%;
        top: 20px;
    }

    .nav-item,
    .btn-login,
    .btn-signup {
        white-space: nowrap;
    }

    .hero-section {
        padding: 120px 50px 0px;
        gap: 30px;
        justify-content: flex-start;
    }

    .hero-content {
        width: 40%;
        max-width: 450px;
    }

    .hero-image {
        width: 55%;
        max-width: 700px;
    }

    .unlock-content {
        padding: 90px 50px;
    }

    .learning-content,
    .courses-header,
    .potential-header,
    .outcomes-header,
    .impact-header,
    .user-testimonials-header,
    .featured-resources-header {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1320px) {
    .navbar {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 75px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 30px;
        border-radius: 40px;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(15, 61, 42, 0.15);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .footer {
        flex-direction: column;
        height: auto;
        padding: 50px 24px;
        gap: 40px;
        text-align: center;
    }

    .footer-brand h2 {
        font-size: 60px;
        margin-bottom: 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
    }

    .footer-column {
        align-items: center;
    }
}

@media (max-width: 1024px) {
    /* Navbar styles moved to 1320px query */

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hero-section {
        padding: 140px 20px 0px;
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 40px;
        text-align: center;
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero-image {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img {
        transform: none;
        width: 100%;
    }

    .unlock-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        height: auto;
        gap: 20px;
    }

    .unlock-visual {
        margin-bottom: 0;
        min-height: auto;
        width: 100%;
    }

    .section-unlock {
        padding: 0px 10px;
        margin: 0px 10px;
        border-radius: 20px;
    }

    .section-features {
        padding: 0px 30px;
    }

    .section-courses,
    .section-outcomes,
    .section-impact,
    .section-user-testimonials,
    .section-featured-resources,
    .section-how-it-works,
    .section-testimonials,
    .section-resources {
        padding: 80px 10px;
        margin: 40px 0;
    }


    .section-learning,
    .section-human-potential,
    .section-user-testimonials,
    .section-featured-resources,
    .section-outcomes {
        padding: 100px 0px 40px;
        margin: 40px 10px;
    }

    .learning-features,
    .potential-features {
        min-height: auto;
    }

    .learning-images {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .learning-image {
        width: 100%;
        max-width: 280px;
    }

    .learning-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

    .learning-features {
        min-height: auto;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .learning-feature {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        display: none;
        margin-bottom: 20px;
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }

    .learning-feature.active {
        display: flex !important;
    }

    .learning-feature,
    .potential-feature {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .learning-feature-icon,
    .potential-feature-icon {
        margin: 0 auto 20px;
    }

    .learning-feature-btn,
    .potential-feature-btn {
        align-self: center;
    }

    .courses-scroll {
        justify-content: flex-start;
    }

    .potential-images {
        flex-direction: column;
        align-items: center;
    }

    .outcomes-grid {
        justify-content: center;
    }

    .user-testimonials-grid,
    .featured-resources-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stat-card {
        width: 100%;
        max-width: 450px;
    }

    .featured-resources-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        height: 75px;
        padding: 0 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(15, 61, 42, 0.15);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .logo-text {
        width: 200px;
        height: 52px;
    }

    .mobile-menu-btn .material-icons {
        font-size: 30px;
    }

    .hero-section {
        flex-direction: column;
        padding: 160px 24px 60px;
        justify-content: center;
        text-align: center;
        min-height: auto;
        gap: 50px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .hero-image {
        width: 100%;
        flex: none;
    }

    .hero-img {
        width: 100%;
        transform: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        font-size: 12px;
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
        width: 100%;
    }

    .unlock-title {
        font-size: 28px;
    }

    .unlock-description {
        font-size: 14px;
    }

    .learning-title,
    .courses-title,
    .potential-title,
    .outcomes-title,
    .impact-title {
        font-size: 28px;
    }

    .learning-content {
        padding-bottom: 0
    }

    .user-testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .user-testimonials-text-content {
        text-align: center;
    }

    .user-testimonials-visual {
        flex: 0 0 180px;
        width: 180px;
        height: 180px;
    }

    .user-testimonials-title,
    .featured-resources-title {
        font-size: 28px;
    }

    .learning-feature-title,
    .potential-feature-title {
        font-size: 22px;
    }

    .course-card {
        width: 280px;
    }

    .course-card img {
        height: 400px;
    }

    .stat-number {
        font-size: 60px;
    }

    .user-testimonial-card {
        flex-direction: column;
        text-align: center;
        aspect-ratio: auto;
        padding: 30px 20px;
    }

    .featured-resource-card {
        flex-direction: column;
        text-align: center;
    }

    .featured-resource-card:first-child {
        border-top-right-radius: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-surface-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-hover, #0B2E20);
}