/* Burger menu styles - clean and proper */

/* Timeline row: prevent year captions from wrapping to two rows */
.timeline, .milestones, .years-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; }
.timeline .year, .milestones .year, .years-row .year { white-space: nowrap; }

/* Mobile burger menu styles */
@media (max-width: 900px) {
    .header .burger,
    .burger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px;
    }
    
    .header .burger .line,
    .burger .line {
        display: block;
        width: 28px;
        height: 4px;
        background: #000000;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .header .nav,
    .nav { 
        z-index: 999; 
    }
}

/* Education card: center icon and title */
.program-item .program-icon { margin-left: auto; margin-right: auto; }
.program-item .program-title { text-align: center; }
/* --- Overflow and mobile nav fixes --- */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure header and its contents never exceed viewport width */
.header, .header-content {
    max-width: 100%;
}

/* Prevent background page scroll when mobile nav is open */
body.nav-open {
    overflow: hidden;
}

/* Be explicit about box sizing for the fullscreen nav */
.nav {
    box-sizing: border-box;
    overscroll-behavior: contain;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: justify;
}

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

/* Mobile-friendly scrolling */
* {
    -webkit-overflow-scrolling: touch;
}

/* Better touch targets for mobile */
button, .btn, .nav-link, .donate-btn-header, .social-icon {
    touch-action: manipulation;
}

/* Prevent zoom on input focus for iOS */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
    font-size: 16px;
}

@media (max-width: 768px) {
    /* Donate hero image: show full image without cropping */
    .donate-hero { height: auto; margin-top: 76px; }
    .donate-hero .hero-background { position: relative; height: auto; }
    .donate-hero .hero-image { width: 100%; height: auto; object-fit: contain; object-position: center top; display: block; }
    .donate-hero .hero-overlay { display: none; }
    .donate-hero .hero-content { padding: 16px; }
    input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
        font-size: 16px !important;
    }
}

/* Mobile footer: center logo and text, use full width */
@media (max-width: 768px) {
    .footer .footer-content { 
        grid-template-columns: 1fr !important; 
        align-items: center !important; 
        justify-items: center !important; 
        text-align: center !important;
    }
    .footer .footer-column:first-child { 
        grid-column: 1 / -1 !important; 
        width: 100% !important; 
        align-items: center !important; 
        text-align: center !important; 
    }
    .footer .footer-logo-img { 
        display: block; 
        margin: 0 auto 16px !important; 
        height: 90px;
    }
    .footer .footer-mission { 
        width: 100% !important; 
        max-width: 100% !important; 
        text-align: center !important; 
        margin: 0 auto 24px !important; 
    }
    .footer .social-icons { justify-content: center !important; }
}

/* Footer contact icon alignment fix (mobile) */
@media (max-width: 768px) {
    .footer .contact-item { grid-template-columns: 22px auto; align-items: center; }
    .footer .contact-item i { margin-top: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
}

/* Footer first column: center logo, text, and social icon */
/* Force center alignment for the first footer column (all breakpoints) */
.footer .footer-content .footer-column:first-child {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Desktop: left-align footer column 1 */
@media (min-width: 769px) {
    .footer .footer-content .footer-column:first-child { align-items: flex-start !important; text-align: left !important; }
    .footer .footer-content .footer-column:first-child .footer-logo-img { margin: 0 !important; }
    .footer .footer-content .footer-column:first-child .footer-mission { margin: 0 !important; text-align: left !important; }
    .footer .footer-content .footer-column:first-child .footer-title { text-align: left !important; }
    .footer .footer-content .footer-column:first-child .footer-title::after { left: 0 !important; transform: none !important; }
    .footer .footer-content .footer-column:first-child .social-icons { justify-content: flex-start !important; }
}

/* Mobile: center-align footer column 1 */
@media (max-width: 768px) {
    .footer .footer-content .footer-column:first-child { align-items: center !important; text-align: center !important; }
    .footer .footer-content .footer-column:first-child .footer-logo-img { display: block; margin: 0 auto !important; }
    .footer .footer-content .footer-column:first-child .footer-mission { margin: 0 auto !important; text-align: center !important; }
    .footer .footer-content .footer-column:first-child .footer-title { text-align: center !important; }
    .footer .footer-content .footer-column:first-child .footer-title::after { left: 50% !important; transform: translateX(-50%) !important; }
    .footer .footer-content .footer-column:first-child .social-icons { justify-content: center !important; }
}

/* Center align program/focus blocks on mobile */
@media (max-width: 768px) {
    .program-item .program-icon, .focus-icon { margin-left: auto; margin-right: auto; display: block; }
    .program-item, .focus-content { text-align: center; }
    .program-item .program-title, .focus-title { text-align: center; }
    /* Education page specific */
    .education-program .program-text { text-align: center; }
    .education-program .program-icon { margin-left: auto; margin-right: auto; }
    .education-program .program-title { text-align: center; }
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    padding: 0 10px;
    position: relative;
}

/* Burger menu button */
.burger {
    display: none; /* Hidden by default, shown on mobile */
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.burger .line {
    display: block;
    width: 28px;
    height: 4px;
    background: #000000;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
    box-shadow: none;
}
.burger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active .line:nth-child(2) {
    opacity: 0;
}
.burger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.nav.open + .donate-btn-header { display: none; }
body.nav-open { overflow: hidden; }

.logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #35BCFF 0%, #DC2718 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #35BCFF;
    transform: translateY(-1px);
}

.donate-btn-header {
    background: linear-gradient(135deg, #35BCFF 0%, #2980b9 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(53, 188, 255, 0.3);
    border: none;
    cursor: pointer;
}

.donate-btn-header:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 188, 255, 0.4);
}

/* Desktop: show only one Donate button (hide the nav duplicate) */
@media (min-width: 769px) {
    .nav .nav-donate { display: none; }
}

/* Hero Section */
.hero {
    position: relative;
	height: calc(100vh - 100px);
	margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 500px;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 73, 94, 0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.donate-btn-hero {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 30px;
    transition: background 0.3s ease;
}

.donate-btn-hero:hover {
    background: #2980b9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Impact Section */
.impact {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.impact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-number {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
    text-align: center;
}

/* Generic contact blocks (Email Us, Call Us) */
.contact-card,
.contact-block,
.contact-box {
    text-align: center;
}
.contact-card h3,
.contact-block h3,
.contact-box h3 { text-align: center; }
.contact-card p,
.contact-block p,
.contact-box p { text-align: center; }

/* Our Focus Areas Section */
.focus-areas {
    padding: 100px 0;
    background: white;
}

.focus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-items: center;
}

.section-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.focus-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.focus-icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.focus-icon i {
    font-size: 1.5rem;
    color: white;
}

.focus-details {
    flex: 1;
}

.focus-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.focus-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.focus-image {
    text-align: center;
}

.focus-img {
	max-width: 560px;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Join Us Section */
.join-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #35BCFF 0%, #89718B 100%);
    color: white;
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-title {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: white;
}

.join-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.7;
    color: white;
}

.join-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.join-btn {
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.join-btn.donate {
    background: #3498db;
    color: white;
}

.join-btn.donate:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.join-btn.journey {
    background: white;
    color: #3498db;
    border: 2px solid #3498db;
}

.join-btn.journey:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #35BCFF, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-items: center;

}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    align-items: center;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-mission {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 400px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #35BCFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(53, 188, 255, 0.3);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #35BCFF;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #35BCFF;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    opacity: 1;
    color: #35BCFF;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.contact-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-item i {
    width: 20px;
    color: #35BCFF;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span {
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* Additional Page Styles */

/* About Page Styles */
.about-hero {
    position: relative;
	height: calc(60vh + 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.55);
    z-index: -1;
}

.about-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.about-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.left-align {
    text-align: left !important;
}

.mission-vision {
    padding: 100px 0;
    background: #f8f9fa;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-card, .vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.mission-icon i, .vision-icon i {
    font-size: 2rem;
    color: white;
}

.mission-title, .vision-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-text, .vision-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.our-story {
    padding: 100px 0;
    background: white;
}

.story-content {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 30px;
	align-items: center;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.leadership {
    padding: 100px 0;
    background: #f8f9fa;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.leader-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    width: 120px;
    height: 120px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.leader-image i {
    font-size: 3rem;
    color: white;
}

.leader-name {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.leader-title {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center !important;
    display: block;
}

/* Ensure designations are centered across layouts */
.designation, .position, .leader-title { text-align: center; display: block; }

.leader-bio {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.value-text {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Story Timeline */
.story-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3498db;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 50px;
    text-align: left;
}

.story-timeline {
    margin-top: 0;
}

.timeline-item {
    margin-bottom: 50px;
}

.timeline-content {
    position: relative;
}

.timeline-text {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-title-right {
	font-size: 1.2rem;
	color: #DC2718;
	font-weight: 700;
	font-style: italic;
	text-align: left;
	margin: 0;
}

.timeline-header {
    margin-bottom: 20px;
}

.timeline-bold {
    font-weight: 700;
    font-style: italic;
    color: #3498db;
    font-size: 1.1rem;
}

.timeline-bold-italic {
    font-weight: 700;
    color: #3498db;
    font-size: 1.1rem;
    margin-left: 10px;
}

.story-img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Founders Section */
.our-founders {
    padding: 60px 0;
    background: #f8f9fa;
}

.founders-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.main-founders {
    text-align: center;
}

.founders-img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founders-names {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.founders-title {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    text-align: center;
}

.other-founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.founder-card {
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    margin: 10px;
}

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

.founder-img {
    width: 280px;
    height: 280px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center top;
    margin: 0;
    padding: 0;
}

.founder-name {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 2px;
}

.founder-position {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    text-align: center;
}

/* Social Impact Section */
.social-impact {
    padding: 100px 0;
    background: white;
}

/* Women's Health Section */
.womens-health {
    padding: 100px 0;
    background: #f8f9fa;
}

.health-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: #DC2718;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon i {
    color: white;
    font-size: 1.5rem;
}

.health-programs {
    margin-top: 40px;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.program-icon {
	width: 60px;
	height: 60px;
	background: #DC2718;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.program-icon i {
	font-size: 1.5rem;
	color: white;
}

.program-title {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.program-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.health-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.our-partners {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.partner-icon {
    width: 50px;
    height: 50px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partner-icon i {
    color: white;
    font-size: 1.5rem;
}

.partner-name {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.partners-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ecf0f1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: all;
}

.nav-arrow:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.nav-arrow i {
    font-size: 0.9rem;
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

/* Across India Section */
.across-india {
    padding: 100px 0;
    background: white;
}

.india-stats {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.stat-box {
    background: linear-gradient(90deg, #89718B 0%, #35BCFF 100%);
    color: white;
    padding: 50px 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 800px;
    max-width: 1000px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-left {
    flex: 1;
    padding-right: 40px;
}

.stat-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.stat-right {
    text-align: center;
    flex-shrink: 0;
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stat-number-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0.9;
}

/* Annual Reports Section */
.annual-reports {
    padding: 100px 0;
    background: #f8f9fa;
}

.reports-section {
    margin-top: 60px;
}

.reports-subheading {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.reports-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    overflow: hidden;
    margin: 0 20px;
}

.reports-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.5s ease;
}

.report-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 320px;
    min-width: 320px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.report-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e8f6ff;
    color: #35BCFF;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.report-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #35BCFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.report-icon i {
    color: white;
    font-size: 1rem;
}

.report-title {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 30px; /* below badges */
    line-height: 1.3;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-description {
    font-size: 0.85rem;
    color: #6b7a8c;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.page-count {
    font-size: 0.8rem;
    color: #95a5a6;
    font-weight: 500;
}

.download-btn {
    background: #DC2718;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.3s ease;
}

/* Make report card button text a bit smaller than global */
.report-card .download-btn {
    font-size: 0.7rem;
    padding: 4px 8px;
}

.download-btn:hover {
    background: #b91c13;
}

.download-btn i {
    font-size: 0.8rem;
}

.slider-btn { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.slider-btn { display: flex; }

.slider-btn:hover {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: white;
    border-color: #ecf0f1;
    color: inherit;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-btn i {
    font-size: 1rem;
}

/* Journey Page Styles */

.timeline {
    padding: 100px 0;
    background: white;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #e74c3c;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 100px;
    text-align: center;
}

.timeline-content-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
    flex: 1;
    max-width: 300px;
}

.timeline-title {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.impact-stories {
    padding: 100px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card, .success-story {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover, .success-story:hover {
    transform: translateY(-10px);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.story-icon i {
    font-size: 2rem;
    color: white;
}

.story-title, .success-story .story-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-text, .success-story .story-text {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-author, .success-story .story-author {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
}

/* Education Page Styles */
.education-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
}

.education-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.education-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.education-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.55);
    z-index: -1;
}

.education-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.hero-banner {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: #DC2718;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}
/* Ensure the red banner is perfectly centered on the Education page */
.education-hero .hero-banner { left: 50% !important; transform: translateX(-50%) !important; }
@media (max-width: 768px) {
    .education-hero .hero-banner { top: -60px; }
}

.banner-text {
    letter-spacing: 0.5px;
}

.education-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.education-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Our Focus Section */
.our-focus {
    padding: 80px 0;
    background: white;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.focus-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.focus-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.focus-icon i {
    font-size: 1.8rem;
    color: white;
}

.focus-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.focus-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Education Program Section */
.education-program {
    padding: 100px 0;
    background: #f8f9fa;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

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

/* Align program icon next to the heading on Education & Skill page */
.program-text .program-icon {
    display: inline-flex;
    margin-right: 12px;
}
.program-text .program-title {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.program-text .program-icon + .program-title {
    align-self: flex-start;
}

/* Ensure icon stays centered above title in Education Program */
.education-program .program-text { text-align: center; align-items: center; }
.education-program .program-text .program-icon { display: flex; margin: 0 auto 16px; }
.education-program .program-text .program-title { display: block; text-align: center; }
/* Force center alignment for heading and description */
.education-program .program-title { text-align: center !important; margin-left: auto !important; margin-right: auto !important; width: fit-content; }
.education-program .program-description { text-align: center; margin-left: auto; margin-right: auto; }

/* Responsive Enhancements */
@media (max-width: 992px) {
    .report-card { width: 280px; min-width: 280px; }
    .nav-list { gap: 18px; }
}

@media (max-width: 768px) {
    /* Consistent mobile header across all pages */
    .header { 
        padding: 8px 0; 
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        overflow-x: hidden; /* guard against off-canvas elements */
    }
    .header-content { 
        position: relative; 
        display: flex; 
        flex-direction: row; 
        align-items: center; 
        justify-content: flex-start; 
        padding: 0 15px 0 0; 
        gap: 0; 
        height: 60px; 
        width: 100%;
        flex-wrap: nowrap;
        text-align: left;
    }
    .logo { 
        display: flex; 
        align-items: center; 
        flex: 0 1 auto; 
        min-width: 0; 
        max-width: calc(100% - 60px); /* leave space for burger */
        z-index: 1002;
        margin-left: 0;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .logo-img { display: block; height: 55px; width: auto; }
    .logo-img { 
        height: 55px; 
        width: auto;
        transition: transform 0.3s ease;
    }
    .burger { 
        display: flex; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute; 
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px; 
        height: 40px; 
        z-index: 1002; 
        background: none; 
        border: none; 
        cursor: pointer;
        padding: 8px;
    }
    /* Burger menu lines */
    .burger .line {
        display: block;
        width: 28px;
        height: 4px;
        background: #000000;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
        margin: 3px 0;
    }
    
    .burger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .burger.active .line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .burger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Default burger line transitions */
    .burger .line {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Mobile navigation - dropdown from top, light theme */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        color: #111827;
        transform: translateY(-100%);
        transition: transform 0.35s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        will-change: transform;
        overflow-x: hidden;
    }
    .nav.open { 
        transform: translateY(0); 
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    .nav-link { 
        padding: 15px 25px; 
        display: block; 
        color: #111827;
        font-size: 1.2rem;
        font-weight: 500;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 200px;
    }
    .nav-link:hover,
    .nav-link.active {
        background: rgba(17, 24, 39, 0.06);
        color: #111827;
        transform: scale(1.05);
    }
    
    /* Hide desktop donate button in mobile nav */
    .header .donate-btn-header { 
        display: none; 
    }
    
    /* Mobile donate button in nav */
    .nav .donate-btn-header {
        display: inline-block;
        background: linear-gradient(135deg, #35BCFF 0%, #2980b9 100%);
        color: white;
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        margin-top: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(53, 188, 255, 0.3);
    }
    .nav .donate-btn-header:hover {
        background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(53, 188, 255, 0.4);
    }


    /* Fix hero top offsets to account for fixed header */
    .hero, .about-hero, .education-hero, .donate-hero, .journey-hero { 
        height: calc(100vh - 76px); 
        margin-top: 76px; 
    }

    /* Footer: make Quick Links and Contact side by side */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: left;
        justify-items: center; /* center items by default */
        justify-content: center; /* center grid within container */
    }
    /* First footer column (logo/mission/social) full width on first row */
    .footer-content .footer-column:first-child {
        grid-column: 1 / -1 !important;
        align-items: center !important;
        text-align: center !important;
        justify-self: center !important;
        width: 100%;
        max-width: 560px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    /* Center elements inside the first footer column */
    .footer-content .footer-column:first-child .footer-logo-img { margin-left: auto !important; margin-right: auto !important; display: block; }
    .footer-content .footer-column:first-child .footer-mission { max-width: 480px; margin: 0 auto 20px !important; text-align: center !important; }
    .footer-content .footer-column:first-child .footer-title { text-align: center !important; }
    .footer-content .footer-column:first-child .footer-title::after { left: 50% !important; transform: translateX(-50%) !important; }
    .footer-content .footer-column:first-child .social-icons { justify-content: center !important; }
    /* Center title underline inside the first column */
    .footer-content .footer-column:first-child .footer-title { text-align: center; }
    .footer-content .footer-column:first-child .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-content .footer-column:nth-child(2),
    .footer-content .footer-column:nth-child(3) {
        align-items: flex-start;
        text-align: left;
        justify-self: start; /* left align these two columns within the grid */
    }
    .footer-links, .contact-info { align-items: flex-start; }
    /* Footer mission: left-align and stretch full width on mobile */
    .footer-content .footer-column:first-child .footer-mission {
        text-align: left !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 0 20px 0 !important;
    }
    /* Education & About program blocks */
    .program-details { width: 100%; }
    .program-title { text-align: center !important; }
    .program-description { text-align: left !important; }
    /* Journey story blocks */
    .story-content h3 { text-align: center; }
    .story-content p { text-align: left; }
    /* Ensure all link text is left-aligned in the two columns */
    .footer-content .footer-column:nth-child(2) .footer-title,
    .footer-content .footer-column:nth-child(3) .footer-title { text-align: left; }
    .footer-content .footer-column:nth-child(2) .footer-title::after,
    .footer-content .footer-column:nth-child(3) .footer-title::after { left: 0; transform: none; }
    .footer-content .footer-column:nth-child(2) .footer-links,
    .footer-content .footer-column:nth-child(3) .footer-links { text-align: left; align-items: flex-start; }
    .footer-links li, .footer-links a { text-align: left; }
    /* Align contact icons next to text */
    .contact-info { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
    .contact-item { display: grid; grid-template-columns: 20px auto; column-gap: 10px; align-items: start; text-align: left; }
    .contact-item i { grid-column: 1; margin-top: 2px; flex-shrink: 0; }
    .contact-item span { grid-column: 2; text-align: left; display: block; }
    /* Explicit placement to force two columns even if HTML order changes */
    .footer-content .footer-column:nth-child(2) { grid-column: 1; grid-row: 2; }
    .footer-content .footer-column:nth-child(3) { grid-column: 2; grid-row: 2; }

    /* Make logo flush to the left edge in header */
    .header .container { padding-left: 0; padding-right: 0; }
    .logo { margin-left: 0; }
    .logo-img { display: block; }
    
    /* Reports slider mobile improvements */
    .reports-slider { position: relative; padding: 0 10px; }
    .slider-btn { width: 40px; height: 40px; }
    .report-card { width: 260px; min-width: 260px; padding: 16px; }
    .report-title { margin-top: 24px; font-size: 0.95rem; }
    .report-description { font-size: 0.8rem; }

    /* Footer: show Quick Links + Contact as two columns on mobile */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: left;
    }
    /* First footer column (logo/mission/social) spans both columns */
    .footer-content .footer-column:first-child { grid-column: 1 / -1; }
    .footer-links, .contact-info { justify-content: flex-start; align-items: flex-start; }
    
    /* Focus items mobile layout */
    .focus-item { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 15px;
    }
    .focus-icon { 
        margin: 0 auto 15px; 
    }
    .program-text .program-icon { 
        margin: 0 auto 15px; 
        display: block;
    }
    .program-item { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 15px;
    }

    /* Journey page: remove left gutter and align text flush left */
    .our-story { padding-left: 0; padding-right: 0; }
    .story-content { padding-left: 15px; padding-right: 15px; grid-template-columns: 1fr; }
    .story-content h3 { text-align: center; }
    .story-paragraph { text-align: left; margin-left: 0; }
    /* Phone view: justify running text */
    .hero-description,
    .section-description,
    .program-description,
    .story-paragraph,
    .footer-mission,
    p { text-align: justify; }

    /* Footer uniformity across pages */
    .footer { padding: 50px 0 20px; }
    .footer .container { padding-left: 16px; padding-right: 16px; }
    .footer-content { gap: 24px; }
}

@media (max-width: 480px) {
    .nav-list { gap: 12px; }
    .nav-link { font-size: 12px; }
    .report-card { width: 240px; min-width: 240px; }
    .slider-container { margin: 0 10px; }
    .cta-btn, .join-btn { padding: 12px 24px; }
    .focus-icon, .program-icon { width: 48px; height: 48px; }
    /* Footer two columns */
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

/* Enhanced Donate page responsive design */
@media (max-width: 992px) {
    .donation-form-container { padding: 0 20px; }
    .amount-selection { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .amount-btn { padding: 20px 16px; }
    .payment-cards, .legal-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    /* Donate page mobile optimization */
    .donation-form { padding: 20px; margin: 0 10px; border-radius: 12px; }
    .donation-type-toggle { 
        display: flex; 
        gap: 12px; 
        justify-content: center; 
        flex-wrap: wrap; 
        margin-bottom: 24px;
    }
    .toggle-label { padding: 12px 20px; border-radius: 25px; }
    
    /* Amount selection - better mobile layout */
    .amount-selection { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 12px; 
        margin-bottom: 24px;
    }
    .amount-btn { 
        width: 100%; 
        padding: 20px 16px; 
        border-radius: 12px;
        text-align: center;
    }
    .amount { font-size: 1.2rem; font-weight: 700; }
    .amount-desc { font-size: 0.9rem; opacity: 0.8; }
    
    /* Custom amount input */
    .custom-amount-section { margin-bottom: 24px; }
    .custom-amount-input { 
        max-width: 100%; 
        display: flex; 
        align-items: center;
        border: 2px solid #e1e5e9;
        border-radius: 8px;
        padding: 12px 16px;
    }
    .custom-amount-input .form-input { 
        width: 100%; 
        border: none; 
        outline: none;
        font-size: 1.1rem;
    }
    
    /* Form fields - single column with better spacing */
    .form-fields-grid { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 20px; 
        margin-bottom: 24px;
    }
    .form-group { margin-bottom: 0; }
    .form-input, .form-textarea { 
        width: 100%; 
        padding: 14px 16px;
        border: 2px solid #e1e5e9;
        border-radius: 8px;
        font-size: 16px;
    }
    .form-label { 
        font-weight: 600; 
        margin-bottom: 8px; 
        display: block;
        color: #2c3e50;
    }
    
    /* Newsletter subscription */
    .newsletter-subscription { 
        margin-bottom: 24px; 
        padding: 16px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    .checkbox-label { 
        display: flex; 
        align-items: flex-start; 
        gap: 12px;
        cursor: pointer;
    }
    
    /* Donation summary - mobile friendly */
    .donation-summary { 
        margin: 24px 0; 
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
        border-left: 4px solid #35BCFF;
    }
    .summary-header { 
        display: flex; 
        align-items: center; 
        gap: 8px; 
        margin-bottom: 16px;
    }
    .summary-item { 
        display: flex; 
        justify-content: space-between; 
        margin-bottom: 8px;
    }
    
    /* Submit button */
    .donate-submit-btn { 
        width: 100%; 
        padding: 18px 24px;
        font-size: 1.1rem;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    
    /* Security notice */
    .security-notice { 
        display: flex; 
        justify-content: center; 
        gap: 20px; 
        flex-wrap: wrap;
        padding: 16px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    .security-item { 
        display: flex; 
        align-items: center; 
        gap: 6px;
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    /* Payment and Legal cards */
    .payment-cards, .legal-cards { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 20px; 
        margin-top: 30px;
    }
    .payment-card, .legal-card { 
        padding: 24px 20px; 
        text-align: center; 
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    /* Gratitude wall - better mobile layout */
    .gratitude-wall { padding: 60px 0; }
    .donors-section { margin-bottom: 40px; }
    .donors-title { 
        font-size: 1.5rem; 
        margin-bottom: 20px; 
        text-align: center;
    }
    .institutional-donors, .individual-donors { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 16px; 
    }
    .donor-card { 
        padding: 20px; 
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    /* Team section - mobile carousel */
    .team-section { padding: 60px 0; }
    .team-slider { 
        overflow: hidden; 
        position: relative;
        padding: 0 20px;
    }
    .team-track { 
        display: flex; 
        gap: 16px; 
        transition: transform 0.3s ease;
    }
    .team-card { 
        min-width: 280px; 
        padding: 20px; 
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .team-btn { 
        position: absolute; 
        top: 50%; 
        transform: translateY(-50%);
        background: white;
        border: 2px solid #e1e5e9;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .team-btn.prev-btn { left: 0; }
    .team-btn.next-btn { right: 0; }
    
    /* Prevent horizontal overflow */
    .container, .section-header, .donation-form-container, 
    .gratitude-wall, .team-section { 
        max-width: 100%; 
        overflow-x: hidden; 
        padding-left: 16px;
        padding-right: 16px;
    }
}

.program-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon i {
    font-size: 1.8rem;
    color: white;
}

.program-title {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.program-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #2c3e50;
}

.program-features li i {
    color: #DC2718;
    font-size: 1rem;
}

/* Ensure feature list icons are vertically centered next to text */
.education-program .program-features li { align-items: center; line-height: 1.6; }
.education-program .program-features li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Center the red square icons above section headings site-wide */
.focus-icon, .program-icon, .contact-icon { margin-left: auto; margin-right: auto; display: flex; align-items: center; justify-content: center; }

.program-image {
    text-align: center;
}

.program-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #3498db;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Ready to Make a Difference Section */
.ready-to-make-difference {
    padding: 100px 0;
    background: white;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-details {
    margin: 0;
}

.contact-email,
.contact-phone {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 8px 0;
    font-weight: 500;
}

.programs {
    padding: 100px 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #ecf0f1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.programs .program-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.womens-health .program-title { text-align: center; }

/* Mobile: logo and text side-by-side in 2 columns */
@media (max-width: 768px) {
    .womens-health .program-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    .womens-health .program-icon { margin: 0 auto 10px !important; }
    .womens-health .program-title, .womens-health .program-description { text-align: center; }
}

/* Ensure women's health icons are horizontally centered at all widths */
.womens-health .program-icon { margin-left: auto; margin-right: auto; display: flex; align-items: center; justify-content: center; }

.program-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.program-features {
    list-style: none;
    padding: 0;
}

.program-features li {
    padding: 8px 0;
    color: #2c3e50;
    position: relative;
    padding-left: 25px;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.training-impact {
    padding: 100px 0;
    background: #f8f9fa;
}

.training-impact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.training-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.training-stat {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.training-placeholder {
    background: #ecf0f1;
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    color: #7f8c8d;
}

.training-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.success-stories {
    padding: 100px 0;
    background: white;
}

/* Journey Page Styles */
.journey-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
}


.journey-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.journey-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.journey-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.journey-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.event-details {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.event-details p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.award-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.award-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon i {
    font-size: 1.5rem;
    color: white;
}

.award-year {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #DC2718;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 30px;
    text-align: center;
}

.award-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.award-organization {
    font-size: 1.1rem;
    color: #35BCFF;
    font-weight: 600;
    margin-bottom: 15px;
}

.award-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Felicitations Section */
.felicitations-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.felicitations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.felicitation-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.felicitation-card:hover {
    transform: translateY(-5px);
}

.felicitation-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.felicitation-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.felicitation-icon i {
    font-size: 1.5rem;
    color: white;
}

.felicitation-year {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #DC2718;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 30px;
    text-align: center;
}

.felicitation-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.felicitation-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: white;
}

.timeline-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.timeline-bar {
    position: relative;
    width: 100%;
    height: 120px;
    background: linear-gradient(90deg, #89718B 0%, #35BCFF 100%);
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.timeline-point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.timeline-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.timeline-milestone {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-container {
    position: relative;
    margin-top: 60px;
}

.gallery-slider {
    overflow: hidden;
    margin: 0 60px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    width: calc(100% * 6); /* 6 slides total */
}

.gallery-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: calc(100% / 6); /* Each slide takes 1/6 of total width */
    flex-shrink: 0;
}

.gallery-item {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-btn:hover {
    background: #35BCFF;
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: white;
}

.news-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    text-align: left;
}

.news-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-icon i {
    font-size: 1.5rem;
    color: white;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-source {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 15px;
}

.news-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.news-link {
    margin-top: 15px;
}

.external-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.external-link:hover {
    color: #DC2718;
    border-bottom: 1px solid #DC2718;
}

/* Journey CTA Section */
.journey-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #35BCFF 0%, #89718B 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #35BCFF;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #2980b9;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) and (min-width: 1025px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav {
        gap: 30px;
        margin-left: -15px;
    }
    
    .nav-list {
        gap: 28px;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .donate-btn-header {
        padding: 10px 22px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header { 
        padding: 8px 0;
        position: relative;
        z-index: 1000;
    }
    
    /* Keep logo and burger on one row */
    .header-content { 
        display: flex; 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        padding: 0 12px; 
        gap: 0;
        position: relative;
        z-index: 1001;
    }
    
    .logo { 
        display: flex; 
        align-items: center; 
    }
    
    /* Burger menu styles are defined in the earlier media query */
    
    /* Mobile navigation - initial state */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        color: #111827;
        z-index: 998;
        display: none;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, opacity;
        overflow-x: hidden;
        opacity: 0;
    }
    
    /* Mobile navigation - open state */
    .nav.open {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 12px 20px;
        width: auto;
        text-align: center;
        display: block;
        color: #111827;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link:hover {
        color: #35BCFF;
        background: rgba(53, 188, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .nav-link:active {
        transform: translateY(0);
    }
    
    .logo-img { 
        height: 70px; 
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hide donate in header; show inside menu */
    .header .donate-btn-header { display: none; }
    .nav.open .donate-btn-header { 
        display: inline-block; 
        width: auto; 
        text-align: center; 
        margin-top: 20px;
        padding: 12px 24px;
        background: #35BCFF;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .footer-logo-img {
        height: 90px;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 100%;
    }
    
    .donate-btn-hero {
        padding: 12px 25px;
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .focus-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .focus-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .focus-img {
        max-width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }
    
    .focus-list {
        gap: 30px;
    }
    
    .focus-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .focus-icon {
        margin: 0 auto 15px;
        width: 50px;
        height: 50px;
    }
    
    .focus-icon i {
        font-size: 1.3rem;
    }
    
    .focus-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .focus-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .footer-mission {
        text-align: justify;
        margin: 0 auto 30px;
        max-width: 100%;
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        padding: 8px 0;
        display: block;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-item i {
        margin: 0 auto;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .join-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1.1rem;
        text-align: center;
        border-radius: 30px;
        transition: all 0.3s ease;
    }
    
    .join-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    
    .join-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .join-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .impact-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .card-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Additional Page Responsive Styles */
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 0;
        padding-right: 0;
    }
    .story-content .timeline-content, .story-content .timeline-title-right, .story-content .timeline-text { margin-left: 0; padding-left: 16px; padding-right: 16px; }
    
    .training-impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .timeline-content-item {
        margin: 0;
        max-width: 100%;
    }
    
    .about-hero-title, .journey-hero-title, .education-hero-title {
        font-size: 2.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* About Us Page Responsive */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .health-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founders-content {
        gap: 25px;
    }
    
    .other-founders {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-box {
        flex-direction: column;
        text-align: center;
        min-width: auto;
        padding: 30px 40px;
        gap: 20px;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .partner-card {
        padding: 25px 15px;
        min-height: 140px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
    
    .nav-arrow {
        display: none;
    }
    
    .story-main-title {
        font-size: 2rem;
    }
    
    /* Education Page Responsive */
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .program-content {
        gap: 50px;
    }
    
    .education-hero .hero-title {
        font-size: 3rem;
    }
    
    /* Donate Page Tablet Responsive */
    .donation-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .payment-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .legal-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .institutional-donors, .individual-donors {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Annual Reports Slider Responsive */
    .slider-container {
        margin: 0 40px;
    }
    
    .report-card {
        min-width: 260px;
        height: 240px;
    }
    
    .stat-box {
        min-width: 600px;
        padding: 40px 50px;
    }
    
    .stat-title {
        font-size: 1.5rem;
    }
    
    .stat-number-large {
        font-size: 3rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
}

/* Our Story: center titles and paragraphs */
.our-story .story-main-title { text-align: center !important; }
.our-story .timeline-title-right { text-align: center !important; }
.our-story .timeline-text { text-align: justify !important; margin-left: auto; margin-right: auto; max-width: 760px; }
.our-story .story-content { justify-items: center; }
.our-story .timeline-content { max-width: 800px; margin: 0 auto; }
@media (max-width: 768px) {
    .our-story .story-content { text-align: center; }
    .our-story .story-content p { text-align: center !important; }
}

/* Make Our Story section more compact on phones */
@media (max-width: 768px) {
    .our-story { padding: 60px 0; }
    .our-story .story-main-title { font-size: 1.8rem; margin-bottom: 20px; }
    .our-story .story-content { gap: 16px; padding: 0; display: flex; flex-direction: column; align-items: stretch; }
    .our-story .timeline-title-right { font-size: 1rem !important; }
    .our-story .timeline-text { font-size: 0.95rem !important; line-height: 1.6; max-width: 640px; text-align: left !important; margin-left: 0 !important; margin-right: 0 !important; padding-left: 16px !important; padding-right: 16px !important; }
    .our-story .story-text, .our-story .story-text p { text-align: left !important; }
    .our-story .story-text { padding: 16px; background: #ffffff; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); width: 100%; }
    .our-story .story-image { padding: 10px; background: #ffffff; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
    .our-story .story-img { height: 220px; border-radius: 10px; }
    /* Remove outer left/right padding specific to this section on phones */
    .our-story .container { padding-left: 0 !important; padding-right: 0 !important; }
    /* Remove inner side padding to visually center the text block */
    .our-story .story-text { padding-left: 0 !important; padding-right: 0 !important; }
}

/* Desktop vs Mobile heading alignment */
@media (min-width: 769px) {
    .our-story .timeline-title-right { text-align: left !important; }
    .womens-health .program-title { text-align: left !important; }
    /* Footer desktop: ensure columns start at same top baseline */
    .footer .footer-content { align-items: start; }
    .footer .footer-column { align-self: start; display: flex; flex-direction: column; justify-content: flex-start; }
    .footer .footer-title { margin-top: 0; }
}
@media (max-width: 768px) {
    .our-story .timeline-title-right { text-align: center !important; }
    .womens-health .program-title { text-align: center !important; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 5px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .donate-btn-header {
        padding: 8px 16px;
        font-size: 12px;
        margin-top: 5px;
    }
    
    .footer-logo-img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .impact-card {
        padding: 30px 20px;
    }
    
    .card-number {
        font-size: 2.5rem;
    }
    
    .join-title {
        font-size: 2.5rem;
    }
    
    /* Annual Reports Mobile */
    .slider-container {
        margin: 0 20px;
    }
    
    .report-card {
        min-width: 240px;
        height: 220px;
        padding: 20px;
    }
    
    .report-title {
        font-size: 1.1rem;
        margin-top: 40px;
    }
    
    .report-description {
        font-size: 0.85rem;
    }
    
    .story-main-title {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .partner-card {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .partner-name {
        font-size: 0.85rem;
    }
    
    .stat-box {
        min-width: auto;
        padding: 30px 40px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .stat-left {
        padding-right: 0;
    }
    
    .stat-title {
        font-size: 1.3rem;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 0.8rem;
    }
    
    /* Education Page Responsive */
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .program-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .education-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 30px;
        display: inline-block;
    }
    
    /* Policy Page Responsive */
    .policy-title {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 30px 20px;
    }
    
    .policy-section .section-title {
        font-size: 1.5rem;
    }
    
    .policy-item-title {
        font-size: 1.2rem;
    }
    
    /* Donate Page Responsive */
    .donation-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .amount-selection {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-fields-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .institutional-donors {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .individual-donors {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-container {
        padding: 40px 20px;
    }
    
    .team-title {
        font-size: 2rem;
    }
    
    .team-slide {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }
    
    .team-slider {
        margin: 0 40px;
    }
    
    .team-btn {
        width: 40px;
        height: 40px;
    }
    
    .donate-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .community-title {
        font-size: 2.5rem;
    }
    
    /* Journey Page Responsive */
    .journey-hero-title {
        font-size: 2.5rem;
    }
    
    .journey-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .event-details {
        position: static;
        margin: 20px auto;
        text-align: center;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .felicitations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .timeline-bar {
        width: 95%;
        height: 80px;
        padding: 0 25px;
        border-radius: 0;
    }
    
    .timeline-label {
        font-size: 1.1rem;
    }
    
    .timeline-milestone {
        font-size: 0.8rem;
    }
    
    .gallery-slider {
        margin: 0 20px;
    }
    
    .gallery-slide {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    /* News Section Responsive */
    .news-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .news-icon {
        margin: 0 auto;
    }
    
    /* Enhanced Mobile Styles */
    .focus-img {
        max-width: 100%;
        height: 200px;
    }
    
    .join-btn {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 5px 0;
        min-width: 200px;
    }
    
    .focus-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .focus-icon {
        margin: 0 auto;
    }
    
    .program-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .program-icon {
        margin: 0 auto;
    }
    
    .mission-vision-content {
        gap: 30px;
    }
    
    .mission-card, .vision-card {
        padding: 30px 20px;
    }
    
    .values-grid {
        gap: 25px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .founders-content {
        gap: 25px;
    }
    
    .founders-img {
        max-width: 100%;
        height: auto;
    }
    
    .other-founders {
        gap: 30px;
    }
    
    .founder-card {
        padding: 10px;
        margin: 10px;
        overflow: hidden;
    }
    
    .founder-img {
        width: 280px;
        height: 280px;
        margin: 0;
        padding: 0;
        border-radius: 10px;
    }
    
    .founder-name {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 2px;
    }
    
    .founder-position {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 2px;
    }
    
    .health-content {
        gap: 30px;
    }
    
    .health-img {
        max-width: 100%;
        height: auto;
    }
    
    .impact-cards {
        gap: 25px;
    }
    
    .impact-card {
        padding: 25px 15px;
    }
    
    .card-number {
        font-size: 2.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .contact-options {
        gap: 25px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-details {
        font-size: 0.9rem;
    }
    
    /* Form Elements Mobile */
    .form-input, .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    /* Button Enhancements */
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-height: 44px; /* iOS touch target */
    }
    
    /* Slider Controls Mobile */
    .slider-btn, .team-btn {
        width: 44px;
        height: 44px;
        min-height: 44px;
    }
    
    .slider-btn i, .team-btn i {
        font-size: 1rem;
    }
    
    /* Gallery Mobile */
    .gallery-item {
        height: 120px;
    }
    
    .gallery-btn {
        width: 44px;
        height: 44px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    /* Donation Form Mobile */
    .donation-summary {
        padding: 20px 15px;
    }
    
    .summary-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        height: 70px;
        margin: 0 auto 15px;
    }
    
    .footer-mission {
        font-size: 0.9rem;
        margin: 0 auto 20px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 25px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 8px 0;
        display: block;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
        color: #35BCFF;
    }
    
    .contact-info {
        gap: 15px;
        align-items: center;
    }
    
    .contact-item {
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px 0;
    }
    
    .contact-item i {
        margin: 0 auto;
        font-size: 1.1rem;
    }
    
    .contact-item span {
        line-height: 1.4;
        word-break: break-word;
    }
    
    .social-icons {
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .copyright {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Payment Screens Mobile */
    .payment-container {
        padding: 20px 15px;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .summary-sidebar {
        order: -1;
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-main {
        padding: 30px 20px;
    }
    
    .qr-section {
        padding: 30px 20px;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .method-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .method-tab {
        justify-content: center;
        padding: 12px 20px;
    }
    
    .success-card {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .footer-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Very Small Screens (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .nav-list {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .donate-btn-header {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .focus-img {
        height: 150px;
    }
    
    .join-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .impact-card {
        padding: 20px 15px;
    }
    
    .card-number {
        font-size: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 25px 15px;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .founder-card {
        padding: 10px;
        margin: 10px;
        overflow: hidden;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .gallery-item {
        height: 100px;
    }
    
    .slider-btn, .team-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i, .team-btn i {
        font-size: 0.9rem;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Landscape Orientation for Small Screens */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 5px 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .donate-btn-header {
        padding: 6px 14px;
        font-size: 11px;
    }
}

/* Policy Page Styles */
.policy-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.policy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.policy-meta {
    margin-top: 20px;
}

.last-updated {
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.policy-content {
    padding: 100px 0;
    background: #f8f9fa;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: white;
    margin-bottom: 40px;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section .section-title {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 3px solid #DC2718;
    padding-bottom: 15px;
    display: inline-block;
}

.policy-item {
    margin-bottom: 35px;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-item-title {
    font-family: 'Inter', sans-serif;
    color: #DC2718;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.policy-item-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #DC2718;
    margin-right: 12px;
    border-radius: 2px;
}

.policy-text {
    font-family: 'Inter', sans-serif;
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.policy-list {
    font-family: 'Inter', sans-serif;
    color: #7f8c8d;
    line-height: 1.7;
    margin-left: 20px;
}

.policy-list li {
    margin-bottom: 8px;
    position: relative;
}

.policy-list li::marker {
    color: #DC2718;
}

.contact-details {
    margin-top: 20px;
}

.contact-details .contact-item {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #7f8c8d;
}

.contact-details .contact-item i {
    color: #DC2718;
    width: 20px;
    text-align: center;
}

/* Donate Page Styles */
.donate-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
}

.donate-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.donate-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donate-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    z-index: -1;
}

.donate-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.donate-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.donate-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Why Donate Section */
.why-donate {
    padding: 100px 0;
    background: white;
}

.donation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.donation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.donation-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.donation-icon i {
    font-size: 1.8rem;
    color: white;
}

.donation-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.donation-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Smaller donation cards on tablets */
@media (max-width: 992px) {
    .donation-cards { gap: 24px; }
    .donation-card { padding: 28px 22px; }
    .donation-icon { width: 50px; height: 50px; }
    .donation-icon i { font-size: 1.4rem; }
    .donation-title { font-size: 1.25rem; margin-bottom: 14px; }
    .donation-description { font-size: 0.95rem; }
}

/* Smaller donation cards on phones */
@media (max-width: 768px) {
    .donation-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
    .donation-card { padding: 20px 16px; border-radius: 12px; }
    .donation-icon { width: 44px; height: 44px; margin-bottom: 16px; }
    .donation-icon i { font-size: 1.2rem; }
    .donation-title { font-size: 1.1rem; margin-bottom: 10px; }
    .donation-description { font-size: 0.95rem; line-height: 1.5; }
}

/* Payment Options Section */
.payment-options {
    padding: 100px 0;
    background: #f8f9fa;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.payment-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.payment-icon i {
    font-size: 1.8rem;
    color: white;
}

.payment-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Smaller payment cards on tablets */
@media (max-width: 992px) {
    .payment-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .payment-card { padding: 28px 22px; }
    .payment-icon { width: 50px; height: 50px; }
    .payment-icon i { font-size: 1.4rem; }
    .payment-title { font-size: 1.25rem; margin-bottom: 14px; }
    .payment-description { font-size: 0.95rem; }
}

/* Smaller payment cards on phones */
@media (max-width: 768px) {
    .payment-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
    .payment-card { padding: 20px 16px; border-radius: 12px; }
    .payment-icon { width: 44px; height: 44px; margin-bottom: 16px; }
    .payment-icon i { font-size: 1.2rem; }
    .payment-title { font-size: 1.1rem; margin-bottom: 10px; }
    .payment-description { font-size: 0.95rem; line-height: 1.5; }
}

/* Legal Compliance Section */
.legal-compliance {
    padding: 100px 0;
    background: white;
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.legal-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: #DC2718;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.legal-icon i {
    font-size: 1.8rem;
    color: white;
}

.legal-title {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Smaller legal cards on tablets */
@media (max-width: 992px) {
    .legal-cards { gap: 24px; }
    .legal-card { padding: 28px 22px; }
    .legal-icon { width: 50px; height: 50px; }
    .legal-icon i { font-size: 1.4rem; }
    .legal-title { font-size: 1.25rem; }
    .legal-description { font-size: 0.95rem; }
}

/* Smaller legal cards on phones */
@media (max-width: 768px) {
    .legal-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
    .legal-card { padding: 20px 16px; border-radius: 12px; }
    .legal-icon { width: 44px; height: 44px; margin-bottom: 16px; }
    .legal-icon i { font-size: 1.2rem; }
    .legal-title { font-size: 1.1rem; }
    .legal-description { font-size: 0.95rem; line-height: 1.5; }
}

/* Make Donation Section */
.make-donation {
    padding: 100px 0;
    background: #f8f9fa;
}

.donation-form-container {
    max-width: 600px;
    margin: 60px auto 0;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Donation Type Toggle */
.donation-type-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
}

.toggle-label {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #7f8c8d;
}

.toggle-label.active {
    background: #3498db;
    color: white;
}

.toggle-label input[type="radio"] {
    display: none;
}

.toggle-text {
    font-size: 1rem;
}

/* Amount Selection - 2x2 Grid */
.amount-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.amount-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amount-btn:hover {
    border-color: #3498db;
}

.amount-btn.active {
    border-color: #3498db;
    background: #3498db;
    color: white;
}

.amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.amount-btn.active .amount {
    color: white;
}

.amount-desc {
    display: block;
    font-size: 0.85rem;
    line-height: 1.3;
}

.amount-btn.active .amount-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Custom Amount Section */
.custom-amount-section {
    margin-bottom: 25px;
}

.custom-amount-label {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
    font-weight: 500;
}

.custom-amount-input {
    position: relative;
    display: flex;
    align-items: center;
}

.rupee-symbol {
    position: absolute;
    left: 15px;
    color: #DC2718;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.custom-amount-input .form-input {
    padding-left: 40px;
    width: 100%;
}

/* Form Fields Grid */
.form-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input, .form-textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

/* Stack form fields on phones */
@media (max-width: 768px) {
    .form-fields-grid { grid-template-columns: 1fr !important; gap: 14px; }
    .form-group, .form-group.full-width { grid-column: 1 / -1; }
    .form-input, .form-textarea { width: 100%; }
}

/* Newsletter Subscription */
.newsletter-subscription {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3498db;
    margin-top: 2px;
}

/* Donation Summary */
.donation-summary {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.summary-header i {
    color: #3498db;
    font-size: 1.1rem;
}

.summary-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.summary-label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
}

.summary-value {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Donate Submit Button */
.donate-submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.donate-submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.donate-submit-btn i {
    font-size: 1rem;
}

/* Security Notice */
.security-notice {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-item i {
    color: #27ae60;
    font-size: 1rem;
}

/* Gratitude Wall Section */
.gratitude-wall {
    padding: 100px 0;
    background: white;
}

.donors-section {
    margin-bottom: 60px;
}

.donors-title {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.institutional-donors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.individual-donors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.donor-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.institutional-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
}

.individual-card {
    flex-direction: row;
    padding: 20px 15px;
}

.donor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.donor-icon {
    width: 40px;
    height: 40px;
    background: #DC2718;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.institutional-card .donor-icon {
    margin: 0 auto 15px;
}

.donor-icon i {
    font-size: 1.2rem;
    color: white;
}

.donor-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.donor-name {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.individual-card .donor-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.donor-type {
    font-size: 0.85rem;
    color: #3498db;
    font-weight: 500;
}

/* Smaller donor cards on tablets */
@media (max-width: 992px) {
    .institutional-donors, .individual-donors { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 16px; 
        padding: 20px; 
    }
    .donor-card { padding: 16px; }
    .institutional-card { padding: 20px 16px; }
    .donor-icon { width: 36px; height: 36px; }
    .donor-icon i { font-size: 1rem; }
    .donor-name { font-size: 0.95rem; }
    .individual-card .donor-name { font-size: 0.9rem; }
    .donor-type { font-size: 0.8rem; }
}

/* Smaller donor cards on phones */
@media (max-width: 768px) {
    .institutional-donors, .individual-donors { 
        grid-template-columns: 1fr; 
        gap: 14px; 
        padding: 16px; 
    }
    .donor-card { padding: 16px; border-radius: 12px; }
    .institutional-card { padding: 18px 14px; }
    .institutional-card .donor-icon { margin-bottom: 12px; }
    .donor-icon { width: 32px; height: 32px; }
    .donor-icon i { font-size: 0.95rem; }
    .donor-name { font-size: 0.95rem; }
    .individual-card .donor-name { font-size: 0.9rem; }
    .donor-type { font-size: 0.8rem; }
}

/* Team and Testimonials smaller on phones */
@media (max-width: 768px) {
    /* Team carousel */
    .team-carousel { max-width: 100%; overflow: hidden; }
    .team-slider { margin: 0; padding: 0 8px; overflow: hidden; }
    .team-track { gap: 16px; padding-bottom: 8px; }
    .team-slide { width: 100%; grid-template-columns: 1fr; grid-template-rows: none; gap: 16px; }
    .team-card { padding: 18px 14px; border-radius: 12px; min-width: 0; }
    .team-icon { width: 44px; height: 44px; margin-bottom: 12px; }
    .team-icon i { font-size: 1.2rem; }
    .team-name { font-size: 1rem; margin-bottom: 6px; }
    .team-role { font-size: 0.85rem; }
    .team-btn { width: 40px; height: 40px; }
    .team-btn.prev-btn { left: 8px; }
    .team-btn.next-btn { right: 8px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 20px 16px; border-radius: 12px; }
    .testimonial-rating i { font-size: 1.1rem; }
    .testimonial-text { font-size: 1rem; line-height: 1.6; }
    .author-name { font-size: 1.05rem; }
    .author-title, .support-duration { font-size: 0.9rem; }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-container {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.team-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-subtitle {
    font-size: 1.1rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.team-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.team-slider {
    overflow: hidden;
    margin: 0 60px;
}

.team-track {
    display: flex;
    transition: transform 0.3s ease;
}

.team-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    flex-shrink: 0;
}

.team-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.team-btn:hover {
    border-color: #35BCFF;
    color: #35BCFF;
}

.team-btn.prev-btn {
    left: 0;
}

.team-btn.next-btn {
    right: 0;
}

.team-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    min-width: 200px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-icon {
    width: 50px;
    height: 50px;
    background: #DC2718;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-icon i {
    font-size: 1.5rem;
    color: white;
}

.team-name {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-role {
    font-size: 0.9rem;
    color: #DC2718;
    font-weight: 600;
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: #f39c12;
    font-size: 1.3rem;
    margin: 0 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    text-align: left;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.author-title {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 400;
}

.support-duration {
    font-size: 0.9rem;
    color: #DC2718;
    font-weight: 600;
    text-align: right;
}

/* Smaller testimonials on tablets */
@media (max-width: 992px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; max-width: 100%; }
    .testimonial-card { padding: 24px 20px; border-radius: 12px; }
    .testimonial-rating { margin-bottom: 16px; }
    .testimonial-rating i { font-size: 1.15rem; }
    .testimonial-text { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }
    .author-name { font-size: 1.1rem; }
    .author-title, .support-duration { font-size: 0.95rem; }
}

/* Join Community Section */
.join-community {
    padding: 100px 0;
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    text-align: center;
}

.community-content {
    max-width: 600px;
    margin: 0 auto;
}

.community-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.community-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.community-btn {
    display: inline-block;
    background: white;
    color: #2c3e50;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Clean burger menu styles for mobile */

/* Founder images and cards - clean styling */
.founder-img {
    width: 280px;
    height: 280px;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    object-fit: cover;
    object-position: center top;
}

.founder-card {
    padding: 10px;
    margin: 10px;
    overflow: hidden;
    border-radius: 15px;
}

.founder-name {
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 1.4rem;
}

.founder-position {
    margin-top: 0;
    margin-bottom: 2px;
}

.other-founders {
    gap: 30px;
}
