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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: #000;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    z-index: 1002;
    position: relative;
}

.logo img {
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-purple {
    color: #c084fc;
    letter-spacing: 2px;
}

.logo-mars {
    color: #fff;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #c084fc;
}

nav a i {
    font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.dropdown-toggle:hover {
    color: #c084fc;
}

.dropdown-toggle i:last-child {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown-toggle.active i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 8px;
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(192, 132, 252, 0.2);
    border-left-color: #c084fc;
    padding-left: 25px;
}

.dropdown-menu a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    will-change: transform;
    cursor: grab;
}

.banner-container:active {
    cursor: grabbing;
}

.banner-slide {
    min-width: 100vw;
    height: 100vh;
    position: relative;
    flex-shrink: 0;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    bottom: 150px;
    left: 50px;
    max-width: 600px;
    z-index: 10;
}

.banner-text {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 8px;
    transition: opacity 0.3s ease-in-out;
    min-height: 80px;
}

.more-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.more-button span,
.more-button i {
    background: linear-gradient(90deg, #f33fcd, #a341ed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more-button:hover {
    transform: translateX(-50%) translateY(-3px);
    filter: brightness(1.2);
}

.more-button i {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Navigation Progress Bar */
.banner-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 1200px;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.progress-bar-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.spaceship-indicator {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    font-size: 60px;
    color: #fff;
    transition: left 0.3s ease-out;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    cursor: grab;
    pointer-events: auto;
    z-index: 20;
}

.spaceship-indicator:active {
    cursor: grabbing;
}

/* Second Section - About Purple Mars */
.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/ind-bg-02.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 50px;
    overflow: hidden;
}

.about-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 64px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
    position: relative;
    display: inline-block;
}

.about-title::before,
.about-title::after {
    content: '✦';
    position: absolute;
    color: #c084fc;
    font-size: 32px;
    animation: twinkle 2s infinite;
}

.about-title::before {
    top: -20px;
    right: -40px;
}

.about-title::after {
    bottom: -10px;
    left: -40px;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.about-underline {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #f33fcd, #a341ed);
    margin: 0 auto 40px;
}

.about-description {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.explore-button {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, #f33fcd, #a341ed);
    color: #fff;
    border: none;
    padding: 15px 60px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(192, 132, 252, 0.4);
}

.explore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 132, 252, 0.6);
}

/* Decorative elements */
.planet-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(192, 132, 252, 0.2), transparent);
    pointer-events: none;
}

.stars-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: starTwinkle 3s infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo img {
        height: 35px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 20px;
        padding: 15px 30px;
        border-radius: 8px;
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }

    nav a:hover {
        background: rgba(192, 132, 252, 0.2);
    }

    .nav-item {
        width: 80%;
        max-width: 300px;
    }

    .dropdown-toggle {
        font-size: 20px;
        padding: 15px 30px;
        border-radius: 8px;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        margin-top: 10px;
        width: 100%;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        border: none;
        background: transparent;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.show {
        max-height: 300px;
        padding: 10px 0;
        border: 1px solid rgba(192, 132, 252, 0.3);
        background: rgba(0, 0, 0, 0.5);
        border-radius: 8px;
    }

    .dropdown-menu a {
        font-size: 18px;
    }

    .banner-overlay {
        left: 20px;
        right: 20px;
        bottom: 100px;
    }

    .banner-text {
        font-size: 24px;
        padding: 15px 20px;
    }

    .banner-nav {
        width: 95%;
        bottom: 30px;
    }

    .spaceship-indicator {
        font-size: 24px;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-title {
        font-size: 42px;
    }

    .about-description {
        font-size: 16px;
    }

    .explore-button {
        padding: 12px 40px;
        font-size: 16px;
    }
}

/* Footer Styles */
footer {
    position: relative;
    min-height: 400px;
    background: url('images/footer-bg.jpg') repeat-x #07051a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 50px 40px;
    text-align: center;
}

.footer-quote {
    position: relative;
    max-width: 900px;
    margin-bottom: 80px;
}

.footer-quote-text {
    color: #e879f9;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.footer-quote-text::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -20px;
    font-size: 120px;
    color: #e879f9;
    opacity: 0.6;
    font-family: Georgia, serif;
    line-height: 1;
}

.footer-quote-text::after {
    content: '"';
    position: absolute;
    right: -20px;
    bottom: -60px;
    font-size: 120px;
    color: #e879f9;
    opacity: 0.6;
    font-family: Georgia, serif;
    line-height: 1;
}


.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #e879f9;
}

.footer-links span {
    color: #666;
    margin: 0 5px;
}

.footer-copyright {
    color: #666;
    font-size: 13px;
    margin-top: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .more-button {
        display: none;
    }

    footer {
        padding: 60px 20px 30px;
    }

    .footer-quote-text {
        font-size: 20px;
        padding: 0 40px;
    }

    .footer-quote-text::before {
        font-size: 80px;
        left: -10px;
        top: -15px;
    }

    .footer-quote-text::after {
        font-size: 80px;
        right: -10px;
        bottom: -40px;
    }

    .footer-links a {
        font-size: 14px;
        margin: 0 5px;
    }

    .footer-copyright {
        font-size: 14px;
    }
}

/* Purple Mars - Project Background */
.pm-background-section {
    position: relative;
    min-height: 100vh;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}
.pm-background-section:active { cursor: grabbing; }

.pm-background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.pm-background-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #fff;
}

.pm-background-title {
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 34px;
    font-weight: 800;
}

.pm-background-text {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    transition: opacity 0.25s ease;
}

.pm-background-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
}

.pm-background-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.45);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.pm-background-dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.75);
}

.pm-background-dot.active {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}

@media (max-width: 1200px) {
    .pm-background-section {
        min-height: 640px;
        padding: 70px 50px;
    }

    .pm-background-title {
        font-size: 48px;
    }

    .pm-background-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .pm-background-section {
        min-height: 560px;
        padding: 90px 20px 70px;
        align-items: center;
    }

    .pm-background-content {
        max-width: 100%;
    }

    .pm-background-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .pm-background-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .pm-background-dots {
        gap: 10px;
        bottom: 22px;
    }

    .pm-background-dot {
        width: 10px;
        height: 10px;
    }
}

/* Purple Mars - Fundamental Purpose */
.pm-purpose-section {
    position: relative;
    min-height: 100vh;
    background-image: url('images/pm-bg-11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 90px 80px;
    overflow: hidden;
}

.pm-purpose-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.pm-purpose-content {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    color: #fff;
}

.pm-purpose-title {
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 800;
}

.pm-purpose-underline {
    width: 210px;
    height: 3px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #f33fcd, #a341ed);
}

.pm-purpose-list {
    margin: 0;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.7;
}

.pm-purpose-list li {
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .pm-purpose-section {
        padding: 80px 50px;
    }

    .pm-purpose-title {
        font-size: 46px;
    }

    .pm-purpose-list {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .pm-purpose-section {
        min-height: auto;
        justify-content: center;
        padding: 70px 20px;
    }

    .pm-purpose-overlay {
        background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    }

    .pm-purpose-title {
        font-size: 32px;
    }

    .pm-purpose-underline {
        width: 150px;
        margin-bottom: 20px;
    }

    .pm-purpose-list {
        padding-left: 20px;
        font-size: 15px;
        line-height: 1.65;
    }
}

/* Why Women - Facts and Figures */
.ww-facts-section {
    position: relative;
    min-height: 100vh;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}
.ww-facts-section:active { cursor: grabbing; }

.ww-facts-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.ww-facts-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: #fff;
}

.ww-facts-small-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.25s ease;
}

.ww-facts-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    transition: opacity 0.25s ease;
}

.ww-facts-line {
    width: 120px;
    height: 3px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.ww-facts-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    transition: opacity 0.25s ease;
}

.ww-facts-text .ww-facts-underline {
    text-decoration: underline;
}

.ww-facts-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
}

.ww-facts-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.45);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.ww-facts-dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.75);
}

.ww-facts-dot.active {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .ww-facts-section {
        min-height: 100vh;
        padding: 60px 24px 70px;
    }

    .ww-facts-small-title {
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    .ww-facts-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .ww-facts-line {
        width: 80px;
        margin-bottom: 18px;
    }

    .ww-facts-text {
        font-size: 17px;
        line-height: 1.55;
    }

    .ww-facts-dots {
        bottom: 24px;
        gap: 10px;
    }

    .ww-facts-dot {
        width: 10px;
        height: 10px;
    }
}

/* Why Women - More Facts and Figures */
.ww-more-facts-section {
    position: relative;
    min-height: 100vh;
    padding: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-image: url('images/ww-bg-11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ww-more-facts-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.ww-more-facts-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    color: #fff;
}

.ww-more-facts-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.15;
}

.ww-more-facts-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.ww-more-facts-line {
    width: 140px;
    height: 3px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.ww-more-facts-list {
    margin: 0;
    padding-left: 22px;
    list-style-type: disc;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.75;
}

.ww-more-facts-list li {
    margin-bottom: 14px;
}

.ww-more-facts-list li::marker {
    color: #fff;
}

@media (max-width: 768px) {
    .ww-more-facts-section {
        padding: 60px 20px 70px;
    }

    .ww-more-facts-title {
        font-size: 28px;
    }

    .ww-more-facts-subtitle {
        font-size: 14px;
    }

    .ww-more-facts-line {
        width: 100px;
        margin-bottom: 20px;
    }

    .ww-more-facts-list {
        font-size: 15px;
        line-height: 1.7;
        padding-left: 20px;
    }

    .ww-more-facts-list li {
        margin-bottom: 12px;
    }
}

/* Why Women - Inequality Effects & Challenges */
.ww-challenges-section {
    position: relative;
    min-height: 100vh;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('images/ww-bg-21.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ww-challenges-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.ww-challenges-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
}

.ww-challenges-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.ww-challenges-line {
    width: 200px;
    height: 3px;
    margin-bottom: 36px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.ww-challenges-block {
    margin-bottom: 28px;
}

.ww-challenges-block:last-child {
    margin-bottom: 0;
}

.ww-challenges-label {
    display: inline-block;
    background: rgba(167, 139, 250, 0.85);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.ww-challenges-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
    .ww-challenges-section {
        padding: 60px 20px 70px;
    }

    .ww-challenges-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .ww-challenges-line {
        width: 140px;
        margin-bottom: 24px;
    }

    .ww-challenges-block {
        margin-bottom: 22px;
    }

    .ww-challenges-label {
        font-size: 15px;
        padding: 6px 12px;
    }

    .ww-challenges-text {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* Why Women - UN's Gender Equality Targets */
.ww-targets-section {
    position: relative;
    min-height: 100vh;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('images/ww-bg-31.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ww-targets-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.ww-targets-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.ww-targets-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.ww-targets-line {
    width: 180px;
    height: 3px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.ww-targets-list {
    margin: 0;
    padding-left: 22px;
    list-style-type: disc;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.75;
}

.ww-targets-list li {
    margin-bottom: 14px;
}

.ww-targets-list li::marker {
    color: #fff;
}

@media (max-width: 768px) {
    .ww-targets-section {
        padding: 60px 20px 70px;
    }

    .ww-targets-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .ww-targets-line {
        width: 120px;
        margin-bottom: 20px;
    }

    .ww-targets-list {
        font-size: 15px;
        line-height: 1.7;
        padding-left: 20px;
    }

    .ww-targets-list li {
        margin-bottom: 12px;
    }
}

/* Why Mars - All About Mars */
.wm-about-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 60px 70px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-image: url('images/wm-bg-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.wm-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.wm-about-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    color: #fff;
}

.wm-about-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15;
}

.wm-about-line {
    width: 140px;
    height: 3px;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.wm-about-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.wm-about-menu {
    flex-shrink: 0;
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wm-about-menu-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    border: none;
    text-align: left;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 4px;
    line-height: 1.4;
}

.wm-about-menu-item:hover {
    background: rgba(192, 132, 252, 0.25);
    color: #fff;
}

.wm-about-menu-item.active {
    background: #a341ed;
    color: #fff;
    font-weight: 600;
}

.wm-about-panel {
    flex: 1;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 8px;
    padding: 28px 32px;
    backdrop-filter: blur(4px);
}

.wm-about-panel-heading {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.45;
}

.wm-about-panel-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15.5px;
    line-height: 1.75;
}

.wm-about-panel-list li {
    margin-bottom: 10px;
}

.wm-about-panel-list li::marker {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .wm-about-section {
        min-height: auto;
        padding: 70px 30px 60px;
        align-items: flex-start;
    }

    .wm-about-body {
        flex-direction: column;
        gap: 16px;
    }

    .wm-about-menu {
        width: 100%;
        flex-direction: column;
        gap: 4px;
    }

    .wm-about-menu-item {
        width: 100%;
        text-align: left;
        font-size: 15px;
        padding: 13px 16px;
    }

    .wm-about-panel {
        width: 100%;
        padding: 22px;
    }

    .wm-about-panel-heading {
        font-size: 16px;
    }

    .wm-about-panel-list {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .wm-about-section {
        padding: 60px 16px 50px;
    }

    .wm-about-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .wm-about-line {
        width: 100px;
        margin-bottom: 20px;
    }

    .wm-about-menu-item {
        font-size: 14px;
        padding: 11px 14px;
    }

    .wm-about-panel {
        padding: 18px;
    }

    .wm-about-panel-heading {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .wm-about-panel-list {
        font-size: 13.5px;
        line-height: 1.7;
        padding-left: 18px;
    }

    .wm-about-panel-list li {
        margin-bottom: 8px;
    }
}

/* Why Mars - NASA's Journey to Mars */
.wm-journey-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 60px 70px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-image: url('images/wm-bg-11.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.wm-journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.70) 50%, rgba(0,0,0,0.30) 100%);
    z-index: 1;
}

.wm-journey-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.wm-journey-small-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.wm-journey-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.wm-journey-line {
    width: 140px;
    height: 3px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.wm-journey-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.wm-journey-text:last-of-type {
    margin-bottom: 28px;
}

.wm-journey-btn {
    display: inline-block;
    padding: 13px 26px;
    background: #a341ed;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.25s, transform 0.2s;
}

.wm-journey-btn:hover {
    background: #8b2fd1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .wm-journey-section {
        min-height: auto;
        padding: 60px 20px 60px;
    }

    .wm-journey-title {
        font-size: 30px;
    }

    .wm-journey-line {
        width: 100px;
        margin-bottom: 20px;
    }

    .wm-journey-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .wm-journey-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Why Mars - Technologies Section */
.wm-tech-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('images/wm-bg-21.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.wm-tech-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.wm-tech-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    color: #fff;
}

.wm-tech-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.wm-tech-line {
    width: 140px;
    height: 3px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.wm-tech-list {
    margin: 0;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.75;
}

.wm-tech-list li {
    margin-bottom: 16px;
}

.wm-tech-list li strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .wm-tech-section {
        min-height: auto;
        padding: 60px 20px 60px;
    }

    .wm-tech-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .wm-tech-line {
        width: 100px;
        margin-bottom: 20px;
    }

    .wm-tech-list {
        font-size: 14px;
        padding-left: 18px;
    }

    .wm-tech-list li {
        margin-bottom: 12px;
    }
}

/* Why Mars - Motivation */
.wm-motivation-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('images/wm-bg-31.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.wm-motivation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.wm-motivation-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}

.wm-motivation-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.wm-motivation-line {
    width: 140px;
    height: 3px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.wm-motivation-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 20px;
}

.wm-motivation-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .wm-motivation-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .wm-motivation-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .wm-motivation-line {
        width: 100px;
        margin-bottom: 20px;
    }

    .wm-motivation-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
}

/* About - Purple Gallery */
.pg-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #1a0a2e;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.pg-left {
    padding: 80px 120px 80px 60px;
    background: #30203a;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pg-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    line-height: 1.15;
}

.pg-line {
    width: 120px;
    height: 3px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.pg-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.pg-center {
    width: 360px;
    position: absolute;
    bottom: -16px;
    right: 50%;
    margin-right: -180px;
    overflow: hidden;
}

.pg-character {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

.pg-right {
    padding: 80px 60px 80px 120px;
    background: #000;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pg-right-text {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    max-width: 420px;
}

@media (max-width: 900px) {
    .pg-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
    }

    .pg-left {
        padding: 60px 28px 40px;
        height: auto;
    }

    .pg-center {
        width: 240px;
        margin-right: -60px;
        bottom: -12px;
        right: 0;
    }

    .pg-character {
        height: 100%;
        width: auto;
        object-position: center bottom;
    }

    .pg-right {
        padding: 0 120px 60px 28px;
        height: auto;
        right: 0;
        background: #30203a;
    }

    .pg-right-text {
        max-width: 100%;
        font-size: 15px;
    }
}

/* About - The 10 */
.the10-section {
    background: #1e0f38;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 60px;
    min-height: 100vh;
}

.the10-content {
    width: 100%;
    text-align: center;
    margin-bottom: 48px;
}

.the10-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.the10-line {
    width: 120px;
    height: 3px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.the10-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}

.the10-nft {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.the10-nft-link {
    color: #c084fc;
    text-decoration: underline;
    transition: color 0.2s;
}

.the10-nft-link:hover {
    color: #e879f9;
}

.the10-images {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}


.the10-grid {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.the10-grid img {
    width: 100%;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.the10-grid img:hover {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .the10-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.the10-img-top {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.the10-img-bottom {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .the10-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .the10-title {
        font-size: 32px;
    }

    .the10-desc {
        font-size: 15px;
    }

    .the10-nft {
        font-size: 13px;
    }
}

/* About - Philosophies in Leadership */
.pg-book-section {
    display: flex;
    align-items: center;
    background: #30203a;
    overflow: hidden;
}

.pg-book-img-wrap {
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.pg-book-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pg-book-content {
    flex: 1;
    padding: 80px 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pg-book-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.pg-book-line {
    width: 120px;
    height: 3px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.pg-book-text {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
}

.pg-book-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #a341ed;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    align-self: flex-start;
    transition: background 0.25s, transform 0.2s;
}

.pg-book-btn:hover {
    background: #8b2fd1;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .pg-book-section {
        flex-direction: column;
        min-height: auto;
    }

    .pg-book-img-wrap {
        flex: none;
        width: 100%;
        min-height: 300px;
        height: 50vw;
        max-height: 420px;
    }

    .pg-book-content {
        padding: 48px 28px 60px;
    }

    .pg-book-title {
        font-size: 26px;
    }

    .pg-book-text {
        font-size: 15px;
    }
}

/* Mission & Vision */
.mv-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/ind-bg-04.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.mv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 90%);
    z-index: 1;
}

.mv-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.mv-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.mv-line {
    width: 120px;
    height: 3px;
    margin: 0 auto 36px;
    background: linear-gradient(90deg, #c084fc, #a341ed);
}

.mv-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
}

.mv-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mv-section {
        padding: 90px 24px 60px;
    }

    .mv-title {
        font-size: 32px;
    }

    .mv-line {
        width: 80px;
        margin-bottom: 24px;
    }

    .mv-text {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Shared slider track & slides */
.slider-track {
    position: absolute;
    inset: 0;
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    z-index: 0;
}

.slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Shared slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 52px;
    line-height: 1;
    width: 52px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
}

.slider-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.22);
}

.slider-arrow-prev { left: 20px; }
.slider-arrow-next { right: 20px; }

@media (max-width: 768px) {
    .slider-arrow {
        width: 36px;
        height: 52px;
        font-size: 36px;
    }

    .slider-arrow-prev { left: 8px; }
    .slider-arrow-next { right: 8px; }
}

/* Lightbox */
.lb-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lb-backdrop.active {
    display: flex;
}

.lb-img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(192, 132, 252, 0.25);
    user-select: none;
    padding: 40px;
    background: #fff;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
    z-index: 9001;
}

.lb-close:hover {
    opacity: 1;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-size: 52px;
    line-height: 1;
    width: 56px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
    z-index: 9001;
}

.lb-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.22);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

@media (max-width: 768px) {
    .lb-img {
        max-width: 96vw;
        max-height: 80vh;
    }

    .lb-arrow {
        width: 40px;
        height: 56px;
        font-size: 36px;
    }

    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }

    .lb-close {
        top: 12px;
        right: 16px;
        font-size: 36px;
    }
}
