/* General styles */
body {
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography base */
:root {
    --h1-size: clamp(2.5rem, 5vw, 4.5rem);
    --h2-size: clamp(1.5rem, 3vw, 2rem);
    --h3-size: clamp(1.2rem, 2.5vw, 1.8rem);
    --h4-size: clamp(1rem, 2vw, 1.4rem);
    --p-size: clamp(1rem, 1.5vw, 1.3rem);
    --small-size: clamp(0.875rem, 1.2vw, 1rem);
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --section-spacing: clamp(30px, 5vh, 50px);
    --content-spacing: clamp(20px, 3vh, 30px);
    --paragraph-spacing: clamp(15px, 2vh, 20px);
    --list-item-spacing: clamp(10px, 1.5vh, 15px);
}

/* Headings styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    line-height: 1.3;
}

h1 {
    font-size: var(--h1-size);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-semibold);
}

h3 {
    font-size: var(--h3-size);
    font-weight: var(--font-weight-medium);
}

h4 {
    font-size: var(--h4-size);
    font-weight: var(--font-weight-medium);
}

/* Paragraph and text styles */
p, li, a, span, button, input, select, textarea {
    font-family: 'Poppins', sans-serif;
    color: #000;
}

p {
    font-size: var(--p-size);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-regular);
}

/* Navigation text */
header nav ul li a {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: var(--font-weight-medium);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Button text */
button, .cta-button, .submit-button {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5px;
}

/* Form elements */
input, select, textarea {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: var(--font-weight-regular);
}

/* Card text */
.program-card h3,
.growth-area-card h4,
.journey-card h3,
.transform-item p {
    font-family: 'Poppins', sans-serif;
    color: #000;
}

/* Footer text */
footer p, .contact-info p {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: var(--font-weight-regular);
}

/* Enhanced text styles for specific sections */
.lead, .tagline {
    font-size: var(--h3-size);
    font-weight: var(--font-weight-medium);
    line-height: 1.6;
    color: #000;
}

.emphasis-text {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    color: #000;
}

/* List items */
ul li, ol li {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
}

/* Small text */
small, .disclaimer {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-size: var(--small-size);
    font-weight: var(--font-weight-regular);
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
    :root {
        --h1-size: clamp(2rem, 4vw, 3rem);
        --h2-size: clamp(1.3rem, 2.5vw, 1.8rem);
        --h3-size: clamp(1.1rem, 2vw, 1.5rem);
        --h4-size: clamp(0.9rem, 1.8vw, 1.2rem);
        --p-size: clamp(0.9rem, 1.3vw, 1.1rem);
    }
}

/* Section title animations */
.content h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s ease forwards;
}

/* Button styles */
button {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}

/* Navbar styles */
header nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav.scrolled {
    background: #000;
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 40px;
}

header nav ul li a {
    color: #000;  /* Black text for white background */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

header nav.scrolled ul li a {
    color: #fff;  /* White text for black background */
}

/* Hover effect for links */
header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;  /* Black underline for white background */
    transition: width 0.3s ease;
}

header nav.scrolled ul li a::after {
    background: #fff;  /* White underline for black background */
}

header nav ul li a:hover::after {
    width: 100%;
}

/* Logo styles for navbar */
header nav .logo {
    color: #fff;
}

header nav .logo-text::after {
    background: linear-gradient(90deg, #fff, transparent);
}

header nav .logo-highlight::before {
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger menu for mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    isolation: isolate;                  
    transition: transform 0.3s ease;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Enhanced active state animations */
.nav-toggle.active span:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}

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

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

/* Hover effects */
.nav-toggle:hover span {
    background-color: rgba(0, 0, 0, 0.8);
}

.nav-toggle:active span {
transform: scale(0.95);          
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    header nav {
        padding: 15px 20px;
        background: #fff;
        transition: all 0.3s ease;
    }

    header nav.scrolled {
        background: #000;
    }

    header nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 10px 0;
        gap: 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    header nav.scrolled ul {
        background: #000;
    }

    header nav ul.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    header nav ul li {
        width: 100%;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    header nav ul.active li {
        opacity: 1;
        transform: translateY(0);
    }

    header nav ul li a {
        display: block;
        padding: 12px 30px;
        font-size: 1.1rem;
        color: #000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    header nav.scrolled ul li a {
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header nav ul li a:hover {
        background: #f8f9fa;
        padding-left: 35px;
    }

    header nav.scrolled ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    header nav ul li:last-child a {
        border-bottom: none;
    }

    /* Staggered animation for menu items */
    header nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
    header nav ul.active li:nth-child(2) { transition-delay: 0.2s; }
    header nav ul.active li:nth-child(3) { transition-delay: 0.3s; }
    header nav ul.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle span {
        background-color: #000;
        transition: all 0.3s ease;
    }

    header nav.scrolled .nav-toggle span {
        background-color: #fff;
    }

    header nav.scrolled .nav-toggle:hover span {
        background-color: rgba(255, 255, 255, 0.8);
    }

    /* Active state for hamburger menu */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

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

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Ensure logo is visible in mobile view */
    header nav .logo {
        color: #000;
        z-index: 1001;
        transition: color 0.3s ease;
    }

    header nav.scrolled .logo {
        color: #fff;
    }

    header nav .logo-text,
    header nav .logo-highlight {
        color: inherit;
    }
}

/* Footer styles */
footer {
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 5px 0;
}

.footer-logo a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.02);
}

.footer-logo .logo-text {
    position: relative;
    display: inline-block;
    color: #fff;
}

.footer-logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-logo:hover .logo-text::after {
    transform: scaleX(1);
}

.footer-logo .logo-highlight {
    color: #fff;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-logo .logo-highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: skewX(-15deg);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.contact-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.contact-info p {
    margin: 0;
}

/* Enhanced footer logo styles */
.footer-logo-img {
    width: 180px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* Section spacing */
main section {
    padding: var(--section-spacing) clamp(20px, 5vw, 40px);
}

/* Adjust spacing between sections */
main section + section {
    margin-top: 0;
    padding-top: clamp(20px, 4vh, 30px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Hero section styles */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    overflow: hidden;
    border-right: 3px solid #fff;
    white-space: nowrap;
    margin: 0 auto;
    height: 1.2em; /* Fixed height for the typewriter text */
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

/* The typing animation */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff }
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
}

#hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 1.5rem 0;
    font-weight: 500;
    opacity: 0.9;
    color: #fff;
    position: relative;
    z-index: 2;
}

#hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #fff;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Impact Stats Section */
#impact-stats {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

#impact-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.stat-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stat-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Featured Programs Section */
#featured-programs {
    padding: 8rem 0;
    background: #000;
    position: relative;
    margin: 0;
    overflow: hidden;
}

#featured-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    z-index: 1;
}

#featured-programs > * {
    position: relative;
    z-index: 2;
}

#featured-programs h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff !important;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    animation: fadeSlideUp 1.2s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.programs-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 20px;
}

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-image {
        position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.program-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.program-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 2rem;
    color: #fff;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.program-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.program-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.program-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    #featured-programs {
        padding: 6rem 0;
    }
}

/* Testimonials Section */
#testimonials {
    padding: 6rem 0;
    background: #fff;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-content {
    text-align: center;
}

.quote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    color: #000;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
        display: flex;
    align-items: center;
        justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
        border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #000;
    margin: 0;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Waitlist Section */
#waitlist {
    padding: 6rem 0;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.waitlist-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.waitlist-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

#waitlist-form {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #fff;
    color: #000;
}

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

.submit-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #fff;
    color: #000;
    border-color: #000;
}

@media (max-width: 768px) {
    #waitlist {
        padding: 4rem 0;
    }
    
    #waitlist-form {
        padding: 2rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .waitlist-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    #waitlist-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.8rem;
}

.submit-button {
        padding: 0.8rem;
    }
}

/* Footer Styles */
footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.contact-info p {
    margin: 0.5rem 0;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .stat-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
    
    #waitlist-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --h1-size: 2.2rem;
        --h2-size: 1.3rem;
        --p-size: 0.9rem;
    }
    
    #hero {
        padding-top: 100px;
    }
    
    .program-card {
        flex: 0 0 85vw;
    }
    
    #waitlist-form {
        width: 100%;
        padding: 10px;
    }
}

/* Guide Popup Styles */
.guide-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-popup-overlay.active {
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.guide-popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 90%;
    width: 500px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.guide-popup-overlay.active .guide-popup-content {
    transform: translateY(0);
    opacity: 1;
}

.guide-popup-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

.guide-popup-message {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 25px;
}

.guide-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.guide-popup-form input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #000;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.guide-popup-form button {
    width: 100%;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.guide-popup-form button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.guide-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-popup-close::before,
.guide-popup-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #000;
    transform-origin: center;
}

.guide-popup-close::before {
    transform: rotate(45deg);
}

.guide-popup-close::after {
    transform: rotate(-45deg);
}

.guide-popup-close:hover::before,
.guide-popup-close:hover::after {
    background: #666;
}

@media (max-width: 480px) {
    .guide-popup-content {
        padding: 30px 20px;
    }
    
    .guide-popup-title {
        font-size: 1.5rem;
    }
    
    .guide-popup-message {
        font-size: 1rem;
    }
}

/* Logo styles */
.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.logo-text {
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo:hover .logo-text::after {
    transform: scaleX(1);
}

.logo-highlight {
    color: #fff;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.logo-highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Update navbar styles to accommodate logo */
header nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    header nav {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .checkmark-list li {
        padding: 15px 20px 15px 50px;
    }

    .checkmark-list li::before {
        left: 20px;
    }
}

@media (max-width: 1024px) {
    #featured-programs {
        background-attachment: scroll;
    }
}

/* Mobile and Tablet Optimizations */
@media (max-width: 768px) {
    /* Hero Section */
    #hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 0 15px;
    }

    #hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    #hero h2 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    #hero p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    /* Programs Section */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .program-card {
    margin: 0;
}

    .program-content {
        padding: 1.5rem;
    }

    .program-content h3 {
        font-size: 1.3rem;
    }

    .program-content p {
        font-size: 0.95rem;
    }

    /* Waitlist Form */
    #waitlist-form {
        padding: 1.5rem;
    }

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

    /* Navigation */
    header nav {
        padding: 10px 15px;
    }

    .nav-toggle {
        display: flex;
    }

    header nav ul {
        padding: 1rem 0;
    }

    header nav ul li a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section */
    #hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 0 20px;
    }

    #hero h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    #hero h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    /* Programs Section */
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 20px;
    }

    /* Waitlist Form */
    #waitlist-form {
        padding: 2rem;
    }

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

/* Animation Optimizations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .program-card:hover,
    .cta-button:hover,
    .submit-button:hover {
        transform: none;
        box-shadow: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .program-card {
        border: 2px solid #000;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000;
        color: #fff;
    }
    
    .program-card {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .form-group input,
    .form-group select {
        background-color: #fff;
    color: #000;
        border-color: #ddd;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        border-color: #000;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
    }
}

/* About Hero Section */
#about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    overflow: hidden;
    padding: 120px 20px 80px;
}

#about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    z-index: 1;
}

#about-hero .content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

#about-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards;
}

#about-hero .lead {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s 0.3s ease forwards;
}

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

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
}

#hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 1.5rem 0;
    font-weight: 500;
    opacity: 0.9;
    color: #fff;
    position: relative;
    z-index: 2;
}

#hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #fff;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Mission Section Styles */
#about-mission {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

#about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.mission-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mission-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.emphasis-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 2rem 0;
    position: relative;
    display: inline-block;
}

.emphasis-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #000, transparent);
}

.mission-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mission-focus {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0;
}

.growth-areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.growth-area-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.growth-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2c3e50, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.growth-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.growth-area-card:hover::before {
        opacity: 1;
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.growth-area-card:hover .area-icon {
    transform: scale(1.1);
}

.growth-area-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.area-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.mission-conclusion {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 0 20px;
}

.conclusion-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.call-to-action {
    margin-top: 40px;
}

.cta-text {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.cta-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.cta-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2c3e50, transparent);
}

@media (max-width: 1200px) {
    .growth-areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #about-mission {
        padding: 60px 0;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .mission-subtitle,
    .mission-description {
        font-size: 1.1rem;
    }
    
    .emphasis-text {
        font-size: 2rem;
    }
    
    .mission-focus {
        font-size: 1.5rem;
    }
    
    .growth-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .growth-area-card {
        padding: 25px 20px;
    }
    
    .growth-area-card h4 {
        font-size: 1.3rem;
    }
    
    .area-description {
        font-size: 1rem;
    }
    
    .conclusion-text {
        font-size: 1.1rem;
    }
    
    .cta-highlight {
        font-size: 1.8rem;
    }
}

#our-story {
    padding: 80px 0;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
}

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

.story-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.story-question {
    display: inline-block;
    position: relative;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.question-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #fff;
    background: #000; 
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.question {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-style: italic;
}

.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    position: relative;
    width: 40px;
    flex-shrink: 0;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 2;
}

.marker-line {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 40px);
    background: rgba(255, 255, 255, 0.2);
}

.timeline-content {
    flex: 1;
    padding-left: 30px;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.timeline-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.transformation-section {
    margin-top: 6rem;
}

.transform-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.transform-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.transform-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.transform-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.transform-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.transform-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.transform-card:hover .transform-icon {
    transform: scale(1.1);
}

.transform-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.transform-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.story-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-conclusion p {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1200px) {
    .transform-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #our-story {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-marker {
        width: 100%;
        height: 40px;
        margin-bottom: 20px;
    }
    
    .marker-line {
        height: 100%;
        left: 20px;
        top: 0;
    }
    
    .marker-dot {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    .timeline-card {
        padding: 20px;
    }

    .transform-cards {
        grid-template-columns: 1fr;
    }
    
    .transform-card {
        padding: 20px;
    }
    
    .story-conclusion {
        padding: 20px;
    }

    .story-conclusion p {
        font-size: 1.1rem;
    }
}

#philosophy {
    padding: 100px 0;
    background: #fff;
    color: #000;
    position: relative;
    overflow: hidden;
}

#philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.philosophy-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.philosophy-lead {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.philosophy-statement {
    margin-bottom: 80px;
    position: relative;
}

.statement-content {
    max-width: 800px;
    margin: 0 auto;
        text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.statement-content:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.statement-content h3 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.statement-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.8);
    margin: 0;
}

.philosophy-pillars {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
}

.pillar {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.pillar:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.pillar-content h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.pillar-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

.philosophy-principles {
    margin-bottom: 80px;
}

.principles-header {
    text-align: center;
    margin-bottom: 50px;
}

.principles-header h3 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.principles-header p {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.principle {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.principle:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.principle-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(0,0,0,0.2);
    margin-right: 25px;
    font-family: 'Poppins', sans-serif;
}

.principle-content {
    flex: 1;
}

.principle-content h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.principle-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

.philosophy-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.cta-content p {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.philosophy-cta .cta-button {
    display: inline-block;
    padding: 15px 40px;
        font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

.philosophy-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #333;
}

@media (max-width: 1200px) {
    .philosophy-pillars {
        flex-direction: column;
        gap: 20px;
    }
    
    .pillar {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    #philosophy {
        padding: 60px 0;
    }
    
    .philosophy-content {
        padding: 0 20px;
    }
    
    .philosophy-lead {
        font-size: 1.5rem;
    }
    
    .statement-content {
        padding: 30px 25px;
    }
    
    .statement-content h3 {
        font-size: 1.4rem;
    }
    
    .statement-content p {
        font-size: 1rem;
    }
    
    .pillar {
        padding: 25px;
    }

    .pillar-content h4 {
        font-size: 1.1rem;
    }
    
    .pillar-content p {
        font-size: 0.95rem;
    }
    
    .principle {
        padding: 25px;
    }
    
    .principle-number {
        font-size: 1.2rem;
        margin-right: 20px;
    }
    
    .principle-content h4 {
        font-size: 1.1rem;
    }
    
    .principle-content p {
        font-size: 0.95rem;
    }
    
    .philosophy-cta {
        padding: 30px 25px;
    }
    
    .cta-content p {
    font-size: 1.2rem;
    }
    
    .philosophy-cta .cta-button {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

#founder {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

#founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

#founder .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

#founder h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
}

#founder h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-image:hover {
    transform: translateY(-10px);
}

.founder-image:hover::before {
    opacity: 1;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.founder-text p:first-of-type {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.founder-text p:last-of-type {
    margin-top: 10px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1200px) {
    .founder-content {
        gap: 40px;
    }
    
    .founder-text p {
        font-size: 1.05rem;
    }
    
    .founder-text p:first-of-type {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #founder {
        padding: 80px 0;
    }
    
    #founder .content {
        padding: 0 20px;
    }
    
    #founder h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .founder-text p {
        font-size: 1rem;
       }
    
    .founder-text p:first-of-type {
        font-size: 1.1rem;
        padding-left: 15px;
    }
}

/* Programs Hero Section */
#programs-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    margin-top: 60px;
}

.programs-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.programs-hero-image img {
        width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.programs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.programs-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.programs-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards;
}

.programs-hero-content p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s 0.3s ease forwards;
}

.programs-hero-content .cta-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s 0.6s ease forwards;
}

@media (max-width: 768px) {
    #programs-hero {
        min-height: 70vh;
    }

    .programs-hero-content {
        padding: 0 15px;
    }

    .programs-hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .programs-hero-content p {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
}

/* Journey Paths Section */
#journey-paths {
    padding: 6rem 0;
    background: #fff;
}

.masonry-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.path-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.path-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.path-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.path-card:hover .path-image img {
    transform: scale(1.05);
}

.path-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.path-card:hover .path-overlay {
    opacity: 1;
}

.path-content {
    padding: 2rem;
    background: #fff;
    position: relative;
}

.path-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: #000;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.path-content h2 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.path-tagline {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.path-description {
    margin-bottom: 1.5rem;
}

.path-description p {
    font-size: 0.95rem;
}

.path-emphasis {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
    padding-left: 1.5rem;
    border-left: 3px solid #000;
    margin: 2rem 0;
}

.path-outcomes {
    margin-bottom: 2.5rem;
}

.path-outcomes h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.path-outcomes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.path-outcomes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.5;
}

.path-outcomes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.path-outcomes li:hover::before {
    transform: translateX(5px);
}

.path-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #000;
    border: 2px solid #000;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

.path-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Tablet and smaller desktop screens */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 1.5rem;
    }
    
    .path-image {
        height: 320px;
    }
    
    .path-content {
        padding: 1.8rem;
    }
    
    .path-content h2 {
        font-size: 1.4rem;
    }
    
    .path-emphasis {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
}

/* Tablet screens */
@media (max-width: 768px) {
    #journey-paths {
        padding: 4rem 0;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 2rem;
    }
    
    .path-image {
        height: 300px;
    }
    
    .path-content {
        padding: 1.5rem;
    }
    
    .path-badge {
        right: 1.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .path-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .path-tagline {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .path-description p {
        font-size: 1rem;
    }
    
    .path-emphasis {
        font-size: 1.1rem;
        padding-left: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .path-outcomes h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .path-outcomes li {
        font-size: 1rem;
        padding: 0.7rem 0;
        padding-left: 1.8rem;
    }
    
    .path-cta {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    #journey-paths {
        padding: 3rem 0;
    }
    
    .masonry-grid {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .path-image {
        height: 250px;
    }
    
    .path-content {
        padding: 1.2rem;
    }
    
    .path-badge {
        right: 1.2rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .path-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .path-tagline {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .path-description p {
        font-size: 0.95rem;
    }
    
    .path-emphasis {
        font-size: 1rem;
        padding-left: 1rem;
        margin: 1.2rem 0;
    }
    
    .path-outcomes h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .path-outcomes li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
    
    .path-cta {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Podcast Hero Section */
#podcast-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    margin-top: 60px;
}

.podcast-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.podcast-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.podcast-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.podcast-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podcast-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards;
}

.podcast-tagline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s 0.3s ease forwards;
}

/* Coming Soon Section */
#podcast-coming-soon {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#podcast-coming-soon h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #000;
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease forwards;
}

#podcast-coming-soon p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s 0.3s ease forwards;
}

#podcast-coming-soon p:first-of-type {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
}

#podcast-coming-soon p:nth-of-type(2) {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 1.5rem;
}

#podcast-coming-soon p:last-of-type {
    margin-bottom: 3rem;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(0, 0, 0, 0.7);
}

.notify-form {
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s 0.6s ease forwards;
}

.notify-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.notify-form input[type="email"] {
    flex: 1;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.notify-form input[type="email"]:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.notify-button {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.podcast-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wave-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.wave-line:nth-child(1) {
    top: 20%;
    animation: wave 8s infinite linear;
}

.wave-line:nth-child(2) {
    top: 50%;
    animation: wave 12s infinite linear;
}

.wave-line:nth-child(3) {
    top: 80%;
    animation: wave 10s infinite linear;
}

@keyframes wave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Popup Overlay */
.popup-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: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-message {
    font-size: 1.1rem;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #podcast-coming-soon {
        padding: 6rem 0;
    }

    .notify-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .notify-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #podcast-coming-soon {
        padding: 4rem 0;
    }

    .podcast-hero-content h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .podcast-tagline {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .podcast-description p {
        font-size: clamp(1rem, 2vw, 1.1rem);
    }

    .notify-form input[type="email"] {
        padding: 1rem 1.2rem;
    }

    .notify-button {
        padding: 1rem 1.5rem;
    }
}

/* Hero Canvas */
.hero-canvas-container {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    z-index: 1;
    pointer-events: none;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}