/* Font Face Declarations */
/* Helvetica Neue */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/HelveticaNeue/HelveticaNeue.woff2') format('woff2'),
        url('../fonts/HelveticaNeue/HelveticaNeue.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/HelveticaNeue/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/HelveticaNeue/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* National2 */
@font-face {
    font-family: 'National2';
    src: url('../fonts/National2Condensed-Regular.woff2') format('woff2'),
        url('../fonts/National2Condensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'National2';
    src: url('../fonts/National2Condensed-Bold.woff2') format('woff2'),
        url('../fonts/National2Condensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'National2';
    src: url('../fonts/National2Condensed-Medium.woff2') format('woff2'),
        url('../fonts/National2Condensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'National2';
    src: url('../fonts/National2Condensed-Black.woff2') format('woff2'),
        url('../fonts/National2Condensed-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'National2';
    src: url('../fonts/National2Condensed-Light.woff2') format('woff2'),
        url('../fonts/National2Condensed-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
:root {
    --primary-color: #FF8291;
    --accent-color: #E1374B;
    --secondary-color: #f8f9fa;
    --dark-color: #0F235A;
    --background-pink-color: #FFDCD7;
    --light-color: #ffffff;
    --font-primary: 'HelveticaNeue', sans-serif;
    --font-secondary: 'National2', sans-serif;
}

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

body {
    font-family: 'HelveticaNeue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-color);
    overflow-x: hidden;
    padding-top: 90px;
    /* Same as header height */
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 1632px;
    max-width: 95%;
    margin: 0 auto;
}

.section-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.section-wrapper {
    width: 100%;
    padding: 120px 0;
}

/* Section Background Colors */
.about-section-bg {
    background-color: white;
}

.chairman-section-bg {
    background-color: var(--background-pink-color);
}

.impact-section-bg {
    background-color: white;
    padding-bottom: 0;
    /* No bottom padding for this section */
}

.mission-section-bg {
    background-color: #f8f9fa;
}

/* Section Title Style */
.section-title {
    font-family: var(--font-secondary);
    font-size: 96px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 50px;
    letter-spacing: 2px;
    line-height: 0.9;
}

/* About Section Styles */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1392px;
    /* Total width between left edge of content and right edge of video */
    margin: 0 auto;
}

.about-content {
    width: 566px;
}

.about-text {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 1.5;
    color: #333;
}

.about-video {
    width: 740px;
    /* Updated video width */
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Chairman's Message Section Styles */
.chairman-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1392px;
    margin: 0 auto;
    position: relative;
    padding: 80px 20px;
    min-height: 800px;
}

.chairman-content {
    width: 750px;
    margin-left: auto;
}

.chairman-content .section-title {
    color: var(--dark-color);
    margin-bottom: 38px;
}

.chairman-subtitle {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1.1;
    margin: 30px 0;
}

.chairman-text {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 1.5;
    color: #333;
}

.chairman-text p {
    margin-bottom: 20px;
}

.chairman-name {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: bold;
    color: var(--dark-color);
    margin-top: 19px;
    text-align: center;
}

.chairman-image {
    width: 545px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    height: fit-content;
}

.chairman-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    background-color: var(--light-color);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Scrolled header state */
header.header-scrolled {
    height: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header.header-scrolled .logo img {
    height: 35px;
}

header.header-scrolled .btn {
    transform: scale(0.9);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1392px;
}

.logo img {
    height: 46px;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 35px;
    }
}

.header-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    width: 165px;
    height: 50px;
    line-height: 47px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-solid {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    width: 128px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-white {
    background-color: white;
    color: var(--accent-color) !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 25px;
    border-radius: 4px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: var(--accent-color) !important;
    color: white !important;
    border-color: var(--accent-color);
}

/* Content links style */
.section-container a {
    color: var(--dark-color);
    font-weight: bold;
    text-decoration: underline;
}

/* Our Impact Section Styles */
.impact-section {
    max-width: 1392px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* Desktop/Mobile visibility classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.impact-section-wrapper {
    padding-bottom: 0;
}

/* Mobile Swiper for Impact Section */
.impact-swiper-container {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    height: 420px;
    /* Fixed height as requested */
}

.impact-swiper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.impact-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Full height of container */
    padding: 0;
}

.impact-swiper .impact-shape {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: auto;
}

.impact-swiper .impact-shape img {
    width: 100%;
    height: auto;
    display: block;
}

.impact-swiper .impact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Impact swiper navigation arrows */
.impact-swiper-container .swiper-button-prev,
.impact-swiper-container .swiper-button-next {
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-swiper-container .swiper-button-prev {
    left: -10px !important;
}

.impact-swiper-container .swiper-button-next {
    right: -10px !important;
}

.impact-swiper-container .swiper-button-prev img,
.impact-swiper-container .swiper-button-next img {
    width: 30px;
    height: 30px;
}

.impact-title {
    color: var(--dark-color);
    margin-bottom: 43px;
}

.impact-grid {
    position: relative;
    height: 1118px;
    margin: 0 auto;
}


.impact-item {
    position: absolute;
}

/* Position each item */
.impact-item.main-impact {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 50px;
}

.impact-shape.shape1 {
    width: 523px;
}

/* Community Food Pack */
.impact-item:nth-child(2) {
    top: 460px;
    left: 350px;
}

.impact-shape.shape2 {
    width: 330px;
}

/* School Goodie Bag */
.impact-item:nth-child(3) {
    top: 558px;
    left: 680px;
}

.impact-shape.shape3 {
    width: 450px;
}

/* Project Belanja */
.impact-item:nth-child(4) {
    top: 780px;
    left: 175px;
}

.impact-shape.shape4 {
    width: 335px;
}

/* Market Place */
.impact-item:nth-child(5) {
    top: 715px;
    left: 50%;
    transform: translateX(-50%);
}

.impact-shape.shape5 {
    width: 317px;
}

/* Bread Run */
.impact-item:nth-child(6) {
    top: 801px;
    right: 165px;
}

.impact-shape.shape6 {
    width: 350px;
}

.impact-shape.shape4 .impact-content,
.impact-shape.shape5 .impact-content,
.impact-shape.shape6 .impact-content {
    top: inherit;
    left: inherit;
    transform: none;
    width: 100%;
    text-align: center;
    bottom: 80px;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.funds-raised-container {
    display: block;
}

@media (max-width: 768px) {
    .funds-raised-container {
        display: none;
        /* Hide on mobile */
    }
}

.impact-shape.shape4 .impact-content,
.impact-shape.shape5 .impact-content,
.impact-shape.shape6 .funds-raised-container.desktop-only {
    top: inherit;
    left: inherit;
    transform: none;
    width: 100%;
    text-align: center;
    bottom: 80px;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Custom positioning classes for easy adjustment */
/* .position-adjust {
    --top-offset: 0;
    --left-offset: 0;
    --right-offset: auto;
    --width-scale: 1;
    top: var(--top-offset);
    left: var(--left-offset);
    right: var(--right-offset);
    transform: scale(var(--width-scale));
} */

/* Achievements Scroll Section */
.achievements-section-wrapper {
    /* background-color: var(--background-pink-color); */
    width: 100%;
    padding: 100px 0;
    position: relative;
    top: -4px;
    overflow: hidden;
}

.achievements-section {
    width: 100%;
    overflow: visible;
    /* Changed to visible for mobile pagination dots */
    position: relative;
}

/* Mobile Swiper for Achievements Section */
.achievements-swiper-container {
    width: 100%;
    padding: 20px 0 0;
    position: relative;
    height: 420px;
    display: none;
    /* Hidden by default, will be shown via JS */
}

/* Pagination container for achievements swiper */
.achievements-pagination-container {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    top: -40px;
}

.achievements-swiper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: visible !important;
}

.achievements-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
}

.achievements-swiper .achievement-item {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    /* Allow height to adjust to content */
    transform: scale(1);
    /* Show at full size */
}

/* Style pagination dots like vertical nav */
.achievements-pagination {
    position: static !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.achievements-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #F7F7F7;
    border: 2px solid #E1374B;
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.achievements-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.1);
}

.achievements-pagination .swiper-pagination-bullet-active {
    background-color: #E1374B;
    border: 2px solid #BEC8FF;
}

/* Adjust achievement item content for mobile */
.achievements-swiper .achievement-image {
    width: 100%;
    max-width: 240px;
    margin-bottom: 20px;
}

.achievements-swiper .achievement-number {
    font-size: 3rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.achievements-swiper .achievement-title {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.3;
}

.achievements-scroll {
    display: flex;
    width: max-content;
    /* Important for horizontal scroll */
    padding: 20px 0;
    padding-left: 300px;
    /* Exactly 300px left padding */
    padding-right: 300px;
    /* Exactly 300px right padding */
    /* Hide scrollbar but allow scrolling */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.achievements-scroll::-webkit-scrollbar {
    display: none;
}

.achievement-item {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 112px;
    /* Space between items */
    text-align: center;
}

.achievement-item:last-child {
    margin-right: 40px;
    /* Add right padding to last item */
}

.achievement-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    display: flex;
}

.achievement-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.achievement-content {
    text-align: left;
}

.achievement-number {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 84px;
    color: var(--dark-color);
    line-height: 1;
}

.achievement-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 27px;
    color: var(--accent-color);
}

/* Year on Year Snapshot Section */
.snapshot-section-wrapper {
    background-color: white;
    padding: 80px 0;
}

/* Mobile Swiper for Snapshot Section */
.snapshot-swiper-container {
    width: 100%;
    padding: 20px 0 0;
    overflow: visible !important;
    position: relative;
}

/* Pagination container for snapshot swiper */
.snapshot-pagination-container {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    top: -40px;
    display: none;
}

/* Style pagination dots like vertical nav */
.snapshot-pagination {
    position: static !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.snapshot-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #F7F7F7;
    border: 2px solid #E1374B;
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.snapshot-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.1);
}

.snapshot-pagination .swiper-pagination-bullet-active {
    background-color: #E1374B;
    border: 2px solid #BEC8FF;
}

.snapshot-swiper {
    width: 100%;
    height: auto;
}

.snapshot-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.snapshot-swiper .snapshot-item {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    height: auto;
    align-items: end;
}

/* Mobile-only funds raised in snapshot swiper */
.snapshot-swiper .funds-raised-container.mobile-only {
    padding: 0px;
    margin: 0 auto;
    /* max-width: 350px; */
    display: block;
}

.snapshot-swiper .funds-raised-container.mobile-only .funds-raised-content {
    padding: 0;
}

.snapshot-swiper .funds-raised-container.mobile-only .funds-raised-icon {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px;
}

.snapshot-swiper .funds-raised-container.mobile-only .funds-raised-data {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.snapshot-swiper .funds-raised-container.mobile-only .funds-raised-current,
.snapshot-swiper .funds-raised-container.mobile-only .funds-raised-previous {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
}

.snapshot-swiper .funds-raised-container.mobile-only .funds-raised-number {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
}

.snapshot-swiper .funds-raised-container.mobile-only .funds-raised-year {
    font-size: 1rem;
    margin-top: 2px;
    text-align: right;
}

.snapshot-swiper .funds-raised-container.mobile-only .pink-star {
    position: absolute;
    width: 40px;
    height: 40px;
}

.snapshot-swiper .funds-raised-container.mobile-only .star1 {
    top: 10px;
    left: 10px;
}

.snapshot-swiper .funds-raised-container.mobile-only .star2 {
    top: 10px;
    right: 10px;
}

.snapshot-swiper .funds-raised-container.mobile-only .star3 {
    bottom: 10px;
    left: 10px;
}

.snapshot-swiper .funds-raised-container.mobile-only .star4 {
    bottom: 10px;
    right: 10px;
}

/* Right-align snapshot data on mobile */
.snapshot-swiper .snapshot-data {
    text-align: right;
}

.snapshot-swiper .snapshot-current,
.snapshot-swiper .snapshot-previous {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
}

.snapshot-swiper .snapshot-number {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
}

.snapshot-swiper .snapshot-year {
    font-size: 1rem;
    margin-top: 2px;
    text-align: right;
}

.snapshot-section {
    max-width: 1392px;
    margin: 0 auto;
    text-align: center;
}

.snapshot-title {
    margin-bottom: 110px;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    margin: 0 auto;
    max-width: 1200px;
}

.snapshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 380px;
}

.snapshot-icon {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.snapshot-icon img {
    width: 100%;
    height: 100%;
}

.snapshot-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 27px;
    color: var(--accent-color);
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

/* Position variants for labels */
.snapshot-item:nth-child(1) .snapshot-label {
    top: 25%;
}

.snapshot-item:nth-child(3) .snapshot-label,
.snapshot-item:nth-child(4) .snapshot-label {
    top: 20%;
}

.snapshot-item:nth-child(6) .snapshot-label {
    top: 12%;
}

.snapshot-item:nth-child(2) .snapshot-label,
.snapshot-item:nth-child(5) .snapshot-label {
    bottom: 20%;
    top: auto;
}

.snapshot-item:nth-child(1) .snapshot-icon,
.snapshot-item:nth-child(2) .snapshot-icon,
.snapshot-item:nth-child(3) .snapshot-icon {
    height: 367px;
}

.snapshot-item:nth-child(4) .snapshot-icon,
.snapshot-item:nth-child(5) .snapshot-icon,
.snapshot-item:nth-child(6) .snapshot-icon {
    height: 330px;
}

.snapshot-data {
    display: flex;
    flex-direction: column;
    align-items: right;
    gap: 10px;
    text-align: right;
}

/* First row items (1-3): stacked numbers */
.snapshot-item:nth-child(-n+3) .snapshot-data {
    flex-direction: column;
}

/* Second row items (4-6): side by side numbers */
.snapshot-item:nth-child(n+4) .snapshot-data {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    align-items: flex-end;
}


.snapshot-current .snapshot-number {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 72px;
    color: var(--accent-color);
    line-height: 1;
}

.snapshot-previous .snapshot-number {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 45px;
    color: #888888;
    line-height: 1;
}

.snapshot-year {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--dark-color);
    margin-top: 5px;
    line-height: 1;
}

/* Adjust layout for side-by-side items */
.snapshot-item:nth-child(n+4) .snapshot-current,
.snapshot-item:nth-child(n+4) .snapshot-previous {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Funds Raised Section */
.funds-raised-container {
    position: relative;
    margin-top: 100px;
    padding: 60px 0;
    text-align: center;
}

/* Hide the desktop funds-raised-container on mobile */
@media (max-width: 768px) {
    .funds-raised-container:not(.mobile-only) {
        display: none;
    }
}

.funds-raised-content {
    position: relative;
    z-index: 2;
}

.funds-raised-icon {
    width: 400px;
    margin: 0 auto 30px;
}

@media (max-width: 768px) {
    .funds-raised-icon {
        width: 100%;
        max-width: 400px;
    }
}

.funds-raised-icon img {
    width: 100%;
    height: auto;
}

.funds-raised-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.funds-raised-current .funds-raised-number {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 80px;
    color: var(--accent-color);
    line-height: 1;
}

.funds-raised-previous .funds-raised-number {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 45px;
    color: #888888;
    line-height: 1;
}

.funds-raised-year {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--dark-color);
    margin-top: 5px;
    line-height: 1;
}

/* Pink Stars */
.pink-star {
    position: absolute;
    width: 70px;
    height: auto;
    opacity: 0;
    /* Start hidden and will be animated with GSAP */
    transform: translate(0, 0);
    /* Initial position will be set by GSAP */
}

.pink-star img {
    width: 100%;
    height: auto;
}

.star1 {
    top: 4%;
    left: 27%;
    width: 93px;
}

.star2 {
    top: 105%;
    right: 30%;
}

.star3 {
    bottom: 25%;
    left: 20%;
}

.star4 {
    bottom: 33%;
    right: 19%;
    width: 140px;
}

/* Pink Pyramid Transition */
.pink-pyramid-transition {
    position: relative;
    width: 100%;
    height: 680px;
    margin-top: -100px;
    overflow: hidden;
}

.pink-pyramid-svg {
    position: absolute;
    width: 1300px;
    height: auto;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    max-width: 100%;
}

/* CEO Section */
.ceo-section-bg {
    background-color: var(--background-pink-color);
    margin-top: -5px;
    /* Remove any gap between transition and section */
    position: relative;
    padding: 80px 0;
    padding-bottom: 200px;
}

.ceo-section {
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-title {
    text-align: center;
    margin-bottom: 66px;
}

.ceo-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.ceo-message {
    flex: 1;
    max-width: 650px;
    margin-top: 160px;
}

.ceo-message p {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.ceo-footnote {
    font-size: 17px !important;
    font-style: italic;
}

.ceo-image-container {
    flex: 0 0 450px;
}

.ceo-image {
    width: 100%;
    margin-bottom: 20px;
}

.ceo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ceo-name {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 40px;
    color: var(--dark-color);
    text-align: center;
}

/* Photo Gallery Section */
.photo-gallery-section-wrapper {
    padding: 100px 0;
    overflow: hidden;
}

.photo-gallery-section {
    position: relative;
    max-width: 1392px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
    /* Changed to visible for mobile pagination dots */
}

.photo-gallery-scroll {
    display: flex;
    width: max-content;
    /* Important for horizontal scroll */
    padding: 60px 0;
    padding-left: 300px;
    /* Exactly 300px left padding */
    padding-right: 300px;
    /* Exactly 300px right padding */
    gap: 40px;
    /* Hide scrollbar but allow scrolling */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.photo-gallery-scroll::-webkit-scrollbar {
    display: none;
}

.photo-frame {
    flex: 0 0 auto;
    width: 350px;
    background-color: white;
    border: 15px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    margin: 20px 10px;
    z-index: 2;
    /* Ensure frames are above the pink background */
}

/* Mobile Swiper for Gallery Section */
.gallery-swiper-container {
    width: 100%;
    padding: 20px 0 0;
    position: relative;
    height: 650px;
    /* Increased height to prevent content from being cut off */
    display: none;
    /* Hidden by default, will be shown via JS */
}

/* Pagination container for gallery swiper */
.gallery-pagination-container {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    display: none;
    /* Hidden by default, will be shown on mobile via media query */
}

/* Style pagination dots like vertical nav */
.gallery-pagination {
    display: inline-block;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #F7F7F7;
    border: 2px solid #E1374B;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.1);
}

.gallery-pagination .swiper-pagination-bullet-active {
    background-color: #E1374B;
    border: 2px solid #BEC8FF;
}

/* Adjust gallery swiper slides */
.gallery-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gallery-swiper .photo-frame {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #E1374B;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

.gallery-swiper .photo-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-swiper .photo-caption {
    padding: 15px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    color: var(--dark-color);
    min-height: 100px;
}

/* Ensure frames don't overlap too much on mobile */
@media (max-width: 768px) {
    .photo-frame {
        width: 280px;
    }

    .photo-container {
        height: 180px;
    }
}

/* Year in Review Section */
.year-review-section-wrapper {
    background-color: var(--light-color);
    padding: 0;
}

.year-review-section {
    max-width: 1200px;
    margin: 0 auto;
}

.year-review-title {
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Swiper Carousel Styles */
.swiper-container {
    width: 100%;
    position: relative;
    overflow: visible;
}

.slide-content {
    display: flex;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFA8B1;
    position: relative;
    height: 540px;
}

.slide-image {
    flex: 0 0 50%;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
}

.slide-text {
    flex: 1;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.slide-date {
    font-family: var(--font-primary);
    font-size: 16px;
    color: black;
    margin-bottom: 10px;
    line-height: 1;
}

.slide-title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 52px;
    color: var(--accent-color);
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
}

.slide-text p {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.slide-link {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
    text-decoration: underline;
    /* display: inline-block; */
    position: absolute;
    bottom: 32px;
    left: 12px;
}

/* Swiper Navigation Styles */
.swiper-button-prev,
.swiper-button-next {
    width: 35px;
    height: 65px;
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: -60px !important;
}

.swiper-button-next {
    right: -60px !important;
}

/* Hide default arrows */
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

/* Custom arrows */
.custom-prev img,
.custom-next img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--accent-color);
}

/* Hide Year in Review navigation arrows on mobile */
@media (max-width: 768px) {

    /* Use mobile hero image */
    .hero-image-container .hero-image {
        content: url("../images/hero-mobile.jpg");
    }

    .year-review-nav.swiper-button-prev,
    .year-review-nav.swiper-button-next {
        display: none;
    }
}

/* Swiper Pagination Styles */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: -30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: #ddd !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
}

/* Our Shared Purpose Section */
.shared-purpose-section-wrapper {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.shared-purpose-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pink-heart-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.pink-heart-svg {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

.shared-purpose-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 800px;
    top: 190px;
}

.shared-purpose-subtitle {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 39px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.shared-purpose-title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 91px;
    color: var(--accent-color);
    margin-bottom: 30px;
    line-height: 1.1;
}

.shared-purpose-image {
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
}

.shared-purpose-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Download Annual Report Section */
.download-report-section-wrapper {
    background-color: #FFDCD7;
    padding: 80px 0;
}

.download-report-section {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.download-report-content {
    flex: 1;
    padding-right: 40px;
}

.download-report-title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 70px;
    color: var(--accent-color);
    line-height: 0.86;
    margin-bottom: 30px;
}

.download-report-text {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.5;
    color: black;
    margin-bottom: 40px;
}


.btn-white:hover {
    background-color: #f0f0f0;
}

.download-report-image {
    flex: 0 0 40%;
    max-width: 310px;
}

.download-report-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Who Do We Help Section */
.who-we-help-section-wrapper {
    background-color: white;
    padding: 80px 0;
}

.who-we-help-section {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.who-we-help-image {
    flex: 0 0 50%;
    max-width: 510px;
}

.who-we-help-image img {
    width: 100%;
    height: auto;
    display: block;
}

.who-we-help-content {
    flex: 0 0 50%;
    max-width: 540px;
}

.who-we-help-title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 60px;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 30px;
}

.who-we-help-text {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: black;
    margin-bottom: 20px;
}

.text-link {
    color: var(--dark-color);
    font-weight: bold;
    text-decoration: underline;
}

.who-we-help-footnote {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    font-style: italic;
    margin-top: 30px;
}

/* Button Styles */
/* .btn {
    display: inline-block;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background-color: white;
    color: var(--dark-color); 
} */

.btn-white:hover {
    background-color: #f0f0f0;
}

/* How Can You Help Section */
.how-help-section-wrapper {
    background-color: #FFA8B1;
    padding: 100px 0;
    text-align: center;
}

.how-help-section {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-help-title {
    font-family: var(--font-secondary);
    font-weight: 900;
    font-size: 60px;
    color: #0A1E50;
    line-height: 1.1;
    margin-bottom: 20px;
}

.how-help-text {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: black;
    margin-bottom: 20px;
}

/* Donate Volunteer Share Section */
.donate-volunteer-section-wrapper {
    background-color: #E1374B;
    padding: 60px 0 40px;
    color: white;
}

.donate-volunteer-section {
    max-width: 1210px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.donate-column,
.volunteer-column,
.share-column {
    flex: 0 0 32%;
    padding: 0 15px;
}

.icon-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

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

.help-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 60px;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 5px;
}

.help-text {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: white;
    margin-bottom: 20px;
    min-height: 120px;
}

.button-container {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
}

.button-container .btn {
    font-size: 16px;
    padding: 6px 13px;
}


.btn-blue {
    background-color: #BEC8FF !important;
    color: #0F235A !important;
}

.btn-blue:hover {
    background-color: #AAB6FF;
}

.help-footnote {
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: italic;
    color: white;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

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

/* Vertical Navigation Dots */
.vertical-nav {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 10px 5px;
}

.vertical-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-nav li {
    margin: 22px 0;
}

.vertical-nav a {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #F7F7F7;
    border: 2px solid #0F235A;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.vertical-nav a:hover {
    transform: scale(1.1);
}

.vertical-nav a.active {
    background-color: #E1374B;
    border: 2px solid #BEC8FF;
}

/* Animations */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up.animated {
    animation: fadeUp 0.8s ease forwards;
}

/* Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
    }

    .slide-image {
        flex: 0 0 200px;
    }
}

.impact-shape {
    position: relative;
    display: inline-block;
}

.impact-shape img {
    width: 100%;
    height: auto;
}

.impact-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.impact-number {
    font-family: var(--font-secondary);
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-size: 40px;
    line-height: 1;
    margin-top: 13px;
}

.main-impact .impact-number {
    font-size: 80px;
    line-height: 1;
    margin-top: 45px;
}

.impact-description {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
}

.program-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.impact-program {
    margin-left: 10px;
    text-align: left;
}

.program-name {
    font-family: var(--font-secondary);
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
    margin-left: 4px;
}

.program-ffth {
    color: var(--dark-color);
}

.program-desc {
    color: var(--accent-color);
}

.impact-link {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--dark-color) !important;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

.impact-icon {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon img {
    max-height: 100%;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    /* Ensure image doesn't delay layout */
    min-height: 300px;
    background-color: rgba(0, 0, 0, 0.2);
}

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

.hero-content {
    position: absolute;
    top: 58%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensure content is always centered */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Ensure content is visible immediately */
    visibility: visible !important;
    opacity: 1 !important;
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-dots {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    transition: color 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.back-to-top a {
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-to-top-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1700px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .btn-outline,
    .btn-solid {
        width: auto;
        height: auto;
        padding: 10px 15px;
        line-height: normal;
        font-size: 14px;
    }

    /* Mobile/Desktop visibility switch */
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* Chairman section mobile styles */
    .chairman-content {
        width: 100%;
        margin-left: 0;
    }

    /* Impact section mobile styles */
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-block {
        width: 100%;
    }

    /* CEO section mobile styles */
    .ceo-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .ceo-message {
        margin-top: 0;
        max-width: 100%;
    }

    .ceo-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Shared purpose section mobile styles */
    .shared-purpose-content {
        top: 0;
        padding: 20px;
    }

    .shared-purpose-subtitle {
        font-size: 28px;
    }

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

    /* Who we help section mobile styles */
    .who-we-help-section {
        flex-direction: column;
        gap: 30px;
    }

    .who-we-help-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .impact-shape.shape1 {
        width: 100% !important;
    }
}

@media (max-width: 480px) {

    /* Default section padding for mobile */
    .section-wrapper,
    .chairman-section-wrapper,
    .impact-section-wrapper,
    .ceo-section-wrapper,
    .snapshot-section-wrapper,
    .shared-purpose-section-wrapper,
    .who-we-help-section-wrapper,
    .how-help-section-wrapper,
    .achievements-section-wrapper,
    .year-review-section-wrapper,
    .photo-gallery-section-wrapper,
    .download-report-section-wrapper {
        padding: 45px 40px;
    }

    .impact-section-wrapper {
        padding: 45px 0px;
    }

    .achievements-section-wrapper {
        padding: 45px 0px;
    }

    /* Replace hero image with mobile version */
    .hero-image-container .hero-image {
        content: url("../images/hero-mobile.jpg");
    }

    .vertical-nav {
        display: none;
    }

    /* Mobile hero title styles */
    .hero h1.mobile-only {
        font-size: 3.5rem;
        line-height: 0.86;
        text-align: center;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2.8rem;
        line-height: 0.86;
        text-align: center;
        margin-bottom: 15px;
    }

    p {
        font-size: 20px;
    }

    .about-video {
        margin-top: 30px;
    }

    .about-content .section-title {
        text-align: left !important;
    }

    /* Mobile chairman section styles to match reference image */
    @media (max-width: 480px) {
        .chairman-section {
            padding: 0;
        }

        /* Mobile layout styles */
        .chairman-content {
            width: 100%;
            margin-left: 0;
            display: flex;
            flex-direction: column;
        }

        /* Style for mobile chairman image */
        .chairman-image-mobile {
            width: 100%;
            max-width: 300px;
            margin: 30px auto;
            text-align: center;
        }

        .chairman-image-mobile img {
            width: 100%;
            height: auto;
            display: block;
        }

        .chairman-image-mobile .chairman-name {
            margin-top: 15px;
            font-size: 22px;
            font-weight: 700;
            color: var(--dark-color);
            text-align: center;
        }

        /* Mobile header and subtitle styles */
        .chairman-mobile-header {
            text-align: center;
            margin-bottom: 0;
        }

        .chairman-mobile-subtitle {
            margin-bottom: 30px;
            text-align: left !important;
        }

        .chairman-subtitle-mobile {
            font-family: var(--font-secondary);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-color);
            text-align: center;
            line-height: 1.4;
            text-align: left !important;
        }

        /* Hide line breaks within the mobile chairman subtitle */
        .chairman-subtitle-mobile br {
            display: none;
        }

        .chairman-text {
            text-align: left;
        }
    }

    .hero-dots {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    /* Only modify mobile padding, desktop stays the same */
    .chairman-section-mobile {
        padding: 45px 40px;
    }

    /* Mobile main impact styling */
    .mobile-main-impact {
        width: 100%;
        max-width: 300px;
        margin: 30px auto 50px;
        text-align: center;
    }

    .mobile-main-impact .impact-shape {
        position: relative;
        width: 100%;
        height: auto;
    }

    .mobile-main-impact .impact-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 5px;
    }

    .mobile-main-impact .impact-description {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .chairman-name {
        font-size: 33px;
    }

    .chairman-subtitle,
    .shared-purpose-title,
    .who-we-help-title,
    .how-help-title,
    .ceo-name {
        font-size: 28px;
    }

    .chairman-text,
    .ceo-message p,
    .who-we-help-text {
        font-size: 18px;
    }

    /* Year on Year Snapshot section mobile fixes */
    .snapshot-item {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .snapshot-item:nth-child(1) .snapshot-icon,
    .snapshot-item:nth-child(2) .snapshot-icon,
    .snapshot-item:nth-child(3) .snapshot-icon,
    .snapshot-item:nth-child(4) .snapshot-icon,
    .snapshot-item:nth-child(5) .snapshot-icon,
    .snapshot-item:nth-child(6) .snapshot-icon {
        height: auto;
        width: 100%;
    }

    .snapshot-current .snapshot-number {
        font-size: 42px;
    }

    .snapshot-previous .snapshot-number {
        font-size: 20px;
    }

    /* Items 1-3: stacked format (2024 above 2023) */
    .snapshot-item.item1 .snapshot-data,
    .snapshot-item.item2 .snapshot-data,
    .snapshot-item.item3 .snapshot-data {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    /* Items 4-6: side by side format (2024 next to 2023) */
    .snapshot-item.item4 .snapshot-data,
    .snapshot-item.item5 .snapshot-data,
    .snapshot-item.item6 .snapshot-data {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        align-items: flex-end;
    }

    /* Impact section additional mobile fixes */
    .impact-block {
        padding: 15px;
    }

    .impact-number {
        font-size: 36px;
    }

    .impact-label {
        font-size: 16px;
    }

    /* Fix for funds raised container */
    .funds-raised-container {
        height: auto;
        padding: 30px 0;
    }

    /* Horizontal scrolling sections mobile fixes */
    .achievements-scroll {
        padding-left: 20px;
    }

    .achievement-card {
        width: 280px;
        min-width: 280px;
    }

    .photo-gallery-scroll {
        padding: 30px 10px;
        gap: 20px;
    }

    .photo-frame {
        width: 280px;
    }

    /* Download report section mobile fixes */
    .download-report-section {
        flex-direction: column;
        text-align: center;
    }

    .download-report-content {
        margin-bottom: 30px;
    }

    .download-report-image {
        margin: 0 auto;
    }

    .snapshot-item.item1 .snapshot-label {
        top: 21%;
    }

    .snapshot-item.item2 .snapshot-label {
        top: 60%;
    }

    .snapshot-item.item3 .snapshot-label {
        top: 18%;
    }

    .snapshot-item.item4 .snapshot-label {
        top: 18%;
    }

    .snapshot-item.item5 .snapshot-label {
        top: 60%;
    }

    .snapshot-item.item6 .snapshot-label {
        top: 15%;
    }

    .snapshot-pagination-container,
    .gallery-pagination-container {
        display: block;
    }

    .pink-pyramid-transition {
        height: 240px;
    }

    .impact-swiper .impact-shape {
        max-width: 400px;
    }

    .gallery-swiper .photo-frame {
        border: 15px solid white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: rotate(-2deg) !important;
    }

    /* Increase height for gallery slides on mobile */
    .year-review-section-wrapper .slide-content {
        height: 800px;
    }

    .year-review-section-wrapper .slide-image {
        flex: initial;
    }

    .year-review-section-wrapper .slide-title {
        line-height: 0.86;
        margin-bottom: 20px;
        font-size: 40px;
    }

    .year-review-section-wrapper .slide-link {
        position: initial;
    }

    .year-review-section-wrapper .slide-text {
        padding: 20px 10px;
    }

    /* Disable appear animations for shared purpose section on mobile */
    .shared-purpose-content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Ensure the pink heart is fully visible on mobile without animation */
    .pink-heart-svg {
        opacity: 1 !important;
        transform: scale(1) !important;
        transition: none !important;
    }

    .donate-volunteer-section {
        display: block;
    }

    /* Add margin between columns on mobile */
    .donate-column,
    .volunteer-column,
    .share-column {
        margin-bottom: 40px;
    }

    /* Stack buttons vertically on mobile */
    .button-container {
        flex-direction: column;
        gap: 15px;
    }

    .button-container .btn {
        width: 240.1px !important;
        margin: 0;
    }

    .snapshot-current .snapshot-number {
        font-size: 51px;
    }

    .snapshot-previous .snapshot-number {
        font-size: 40px;
    }

    /* Only apply to items 4-6 */
    .snapshot-swiper .snapshot-item.item4,
    .snapshot-swiper .snapshot-item.item5,
    .snapshot-swiper .snapshot-item.item6 {
        align-items: center;
    }

    .snapshot-item.item4 .snapshot-data,
    .snapshot-item.item5 .snapshot-data,
    .snapshot-item.item6 .snapshot-data {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        align-items: flex-end;
        width: 60%;
        /* border: 1px solid red; */
        text-align: center !important;
    }
}