/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #000000;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-light-gray: #f8f9fa;
    --text-gray: #4b5563;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
}

/* Headings Font - Chaparral Display with fallbacks */
h1, h2, h3, h4, h5, h6,
.section-title,
.banner-title,
.banner-subtitle,
.logo,
.teaching-content h3,
.teaching-content h4,
.philosophy-text h2,
.philosophy-point h4,
.legacy-item h3,
.trust-item h3,
.donation-type-card h3,
.story-content h3,
.info-header h3,
.info-details h4,
.contact-form-container h3,
.transparency-text h3,
.map-title {
    font-family: 'Chaparral Display', Georgia, serif;
}

/* Paragraphs use Lato (already set on body) */
p, span, a, li, label, input, select, textarea, button, small {
    font-family: 'Lato', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.02em;
    min-width: 0; /* allow truncation when space is tight */
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

.logo:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Desktop Navigation */
.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-desktop a:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.nav-desktop a:hover::after {
    width: 60%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.nav-mobile.active {
    display: block;
    max-height: 500px;
}

.nav-mobile ul {
    list-style: none;
    padding: 1rem 0;
}

.nav-mobile li {
    border-bottom: 1px solid var(--border-color);
}

.nav-mobile a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    padding: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-mobile a:hover {
    background: var(--bg-light-gray);
    padding-left: 1.5rem;
    color: var(--primary-color);
}

/* Banner Styles */
/* Banner Styles - Redesigned */
.banner {
    position: relative;
    min-height: 90vh;
    max-height: 80vh;
    padding: 2rem 0 0 0;
    /* background: #ffffff; */
    overflow: hidden;
}

/* Background Map Image */
.banner-bg-image {
    position: absolute;
    top: -35%;
    left: 0;
    width: 100%;
    height: 120vh;
    z-index: 0;
    opacity: 0.6;
}

.banner-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 290px);
    padding: 1rem 0;
}

/* Left Section - Text */
.banner-text-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.banner-header {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2c3e50;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.banner-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.banner-cta-text {
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin: 1rem 0 0 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.banner-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #f3f4f6;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    max-width: fit-content;
    margin-top: 1rem;
}

.banner-cta-button:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.banner-cta-button i {
    font-size: 0.875rem;
}

/* Right Section - Single Collage Image */
.banner-image-section {
    position: relative;
    height: calc(100vh - 290px);
    min-height: calc(100vh - 290px);
    max-height: calc(100vh - 290px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-collage-img {
    width: 500%;
    height: 100%;
    max-height: calc(100vh - 200px);
    object-fit: contain;
    object-position: 30% center;
    border-radius: 8px;
    transform: scale(1.2) translateX(-20%);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

/* Bottom Hands Image */
.banner-hands {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 3;
    overflow: visible;
}

.banner-hands img {
    width: 100%;
    height: 200%;
    object-fit: cover;
    object-position: center bottom;
}



.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Banner Decoration Waves */
.banner-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
    opacity: 0.8;
}

.wave2 {
    clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0% 100%);
    opacity: 0.6;
    animation: waveAnimation 3s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

/* Stagger animations */
.teaching-card.animate-on-scroll {
    animation: slideUp 0.6s ease forwards;
}

.legacy-item.animate-on-scroll {
    animation: fadeInScale 0.6s ease forwards;
}

.philosophy-content.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

.about-hero-content.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

.section-title.animate-on-scroll,
.section-subtitle.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

.philosophy-point {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.philosophy-point.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Active Navigation Link */
.nav-desktop a.active,
.nav-mobile a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-desktop a.active::after {
    width: 80% !important;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Card hover animations enhancement */
.legacy-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Image placeholder pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

.image-placeholder i {
    animation: pulse 3s ease-in-out infinite;
}

/* Smooth transitions for all interactive elements */
.teaching-card,
.legacy-item,
.image-placeholder,
.btn,
.philosophy-point {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background: #ffffff;
}

.content-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* About Section Styles */
.about-section {
    background: #ffffff;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* About Hero */
.about-hero {
    padding: 2rem 0;
    background: #f8f9fa ;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.about-hero-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    background-color: #000000 ;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    height: 100%;
}

/* Background video */
.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 1;
    opacity: 0;
}

/* Foreground video */
.video {
    position: relative;
    width: 100%;
    z-index: 2;
    height: 85%;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, #e5e7eb 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px dashed var(--border-color);
    transition: var(--transition);
}

.image-placeholder.large {
    aspect-ratio: 3/4;
    min-height: 400px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.image-placeholder span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.image-placeholder:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Teachings Section */
.teachings-section {
    padding: 5rem 0;
    background: #ffffff;
}

.teachings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.teaching-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
}

.teaching-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.teaching-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--bg-light-gray);
    max-height: 500px;
    min-height: 500px;
    object-fit: cover;
}

.teaching-image .image-placeholder {
    aspect-ratio: 16/9;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid var(--primary-color);
}

.teaching-image .image-placeholder i {
    font-size: 3rem;
}

.teaching-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
    min-height: 500px;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-color);
    display: block;
}

.teaching-card:hover .teaching-img {
    transform: scale(1.05);
}

.teaching-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.teaching-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5px 5px 0;
    margin-bottom: 0;
}

.teaching-content h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0 5px 10px;
}

.teaching-content p {
    color: var(--text-gray);
    line-height: 1.7;
    flex-grow: 1;
    text-align: center;
    padding:0.2rem 1.5rem 1.5rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
    background: var(--bg-light-gray);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.philosophy-image {
    display: flex;
    justify-content: center;
}

.philosophy-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.philosophy-point i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.philosophy-point h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.philosophy-point p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Book Section */
.book-section {
    padding: 5rem 0;
    background: var(--bg-light-gray);
}

.book-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.book {
    width: 100%;
    max-width: 900px;
    height: 600px;
    position: relative;
    perspective: 2500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Book Spread Container */
.book-spread {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-page {
    position: absolute;
    width: 50%;
    height: 100%;
    background: #fff9e6;
    border: 1px solid #d4af37;
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(139, 69, 19, 0.2);
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 1s ease;
    backface-visibility: hidden;
}

/* Left pages (odd) */
.book-page:nth-child(odd) {
    left: 0;
    transform-origin: right center;
    border-right: 3px solid #654321;
    z-index: 1;
}

/* Right pages (even) */
.book-page:nth-child(even) {
    right: 0;
    transform-origin: left center;
    border-left: 3px solid #654321;
    z-index: 1;
}

/* Right page flipping animation */
.book-page:nth-child(even).flipping {
    transform-origin: left center;
}

/* Active spread - pages are visible */
.book-page:nth-child(odd).active {
    transform: rotateY(0deg);
    z-index: 10;
}

.book-page:nth-child(even).active {
    transform: rotateY(0deg);
    z-index: 10;
}

/* Flipped pages - already turned */
.book-page:nth-child(odd).flipped {
    transform: rotateY(-180deg);
    z-index: 5;
}

.book-page:nth-child(even).flipped {
    transform: rotateY(180deg);
    z-index: 5;
}

/* Pages after current spread - hidden behind active pages */
.book-page:nth-child(odd):not(.active):not(.flipped) {
    transform: rotateY(0deg);
    z-index: 0;
    pointer-events: none;
}

.book-page:nth-child(even):not(.active):not(.flipped) {
    transform: rotateY(0deg);
    z-index: 0;
    pointer-events: none;
}

/* Currently flipping page - higher z-index for animation */
.book-page.flipping {
    z-index: 15;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 1s ease;
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.5),
        inset -5px 0 10px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(139, 69, 19, 0.2);
}

/* Add depth during flip animation */
.book-page:nth-child(odd).flipping {
    box-shadow: 
        10px 0 50px rgba(0, 0, 0, 0.5),
        inset 5px 0 10px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(139, 69, 19, 0.2);
}

.page-content {
    width: 100%;
    height: 100%;
    padding: 3rem 2.5rem;
    overflow-y: auto;
    background: #fff9e6;
    color: var(--text-dark);
    position: relative;
    transform-style: preserve-3d;
}

/* Back of flipped page */
.book-page.flipped .page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5e6d3;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.page-content::-webkit-scrollbar {
    width: 6px;
}

.page-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.page-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.page-number {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
}

.page-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.page-content h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.page-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.page-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Cover Pages */
.cover-page {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
}

.cover-content {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.cover-design {
    width: 100%;
    padding: 2rem;
}

.cover-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.cover-design h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cover-design h2 {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.cover-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-style: italic;
}

.cover-decoration {
    width: 80px;
    height: 2px;
    background: #d4af37;
    margin: 2rem auto;
}

.back-cover .cover-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.cover-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cover-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cover-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

/* Page Elements */
.page-image {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-img {
    width: 100%;
    height: auto;
    display: block;
}

.page-quote {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    position: relative;
}

.page-quote i:first-child {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.page-quote i:last-child {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.page-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    padding: 0 2rem;
}

.page-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.page-highlight i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.page-highlight p {
    margin: 0;
    color: var(--text-dark);
}

.page-list {
    margin: 1.5rem 0;
}

.list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.list-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.list-item p {
    margin: 0;
}

.page-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-box i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-box h5 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    font-weight: 700;
}

.stat-box p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Book Navigation */
.book-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.book-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Lato', sans-serif;
}

.book-btn:hover:not(:disabled) {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.book-btn:disabled {
    background: var(--border-color);
    color: var(--text-gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.page-indicator {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 80px;
    text-align: center;
}

.page-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Legacy Section */
.legacy-section {
    padding: 5rem 0;
    background: #ffffff;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.legacy-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light-gray);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.legacy-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.legacy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.legacy-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legacy-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Donate Section Styles */
.donate-section {
    background: #ffffff;
}

/* Donate Hero */
.donate-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.donate-hero-content {
    text-align: center;
}

.donate-hero .section-title {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.donate-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--bg-light-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid transparent;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.8rem;
}

.trust-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Donation Options */
.donation-options-section {
    padding: 5rem 0;
    background: #ffffff;
}

.donation-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.donation-type-card {
    background: var(--bg-light-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.donation-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.donation-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.donation-type-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.donation-type-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Quick Amount Buttons */
.quick-amounts,
.monthly-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.custom-amount {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.custom-amount:focus {
    outline: none;
    border-color: var(--primary-color);
}

.monthly-benefit {
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.monthly-benefit i {
    margin-right: 0.5rem;
}

/* Cause Buttons */
.cause-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cause-btn {
    padding: 1rem;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.cause-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cause-btn:hover,
.cause-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.cause-btn.active i,
.cause-btn:hover i {
    color: var(--text-light);
}

/* Donation Form Section */
.donation-form-section {
    padding: 5rem 0;
    background: var(--bg-light-gray);
}

.donation-form-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.form-left h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.donation-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label span {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group small {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-donate {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-donate i {
    margin-right: 0.5rem;
}

/* Donation Summary */
.donation-summary {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.donation-summary h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.summary-amount,
.total-amount {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.payment-methods h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: var(--text-gray);
}

.impact-preview {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.impact-preview h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.impact-items p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.impact-items i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

/* Impact Stories */
.impact-stories-section {
    padding: 5rem 0;
    background: #ffffff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--bg-light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image .image-placeholder {
    height: 100%;
    border-radius: 0;
    border: none;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.story-stats span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-stats i {
    font-size: 1rem;
}

/* Transparency Section */
.transparency-section {
    padding: 5rem 0;
    background: var(--bg-light-gray);
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.transparency-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    position: relative;
}

.chart-bar {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 600;
    transition: width 1s ease;
    width: 0;
    min-width: fit-content;
    white-space: nowrap;
}

.chart-label {
    display: block;
}

.transparency-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.transparency-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.transparency-text li {
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.7;
}

.transparency-text li i {
    color: var(--primary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* Services Section Styles */
.services-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.services-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background: var(--bg-light-gray);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.service-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.service-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* New Services Showcase Design */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    min-height: 380px;
}

.service-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-showcase-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-showcase-card.reverse .service-image-section {
    order: 2;
}

.service-showcase-card.reverse .service-details-section {
    order: 1;
}

.service-image-section {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.service-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    min-height: 380px;
}

.service-showcase-card:hover .service-showcase-image {
    transform: scale(1.15);
}

.service-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: var(--transition);
    z-index: 1;
}

.service-showcase-card:hover .service-overlay-gradient {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-number {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    z-index: 2;
    line-height: 1;
}

.service-details-section {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

.service-icon-large {
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.service-showcase-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.service-details-section h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(234 234 234), rgb(255 255 255 / 72%));
    padding: 3px 15px;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-impact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.impact-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.impact-text {
    font-size: 0.9rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-light-gray);
    border-radius: 20px;
    margin: 5rem 0;
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.how-it-works .section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

/* Horizontal Timeline Connector Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
}

/* Arrow connectors between steps */
.timeline-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -40px;
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    z-index: 2;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 26px;
    right: -40px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    z-index: 2;
}

.timeline-step:last-child::after,
.timeline-step:last-child::before {
    display: none;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    gap: 1.5rem;
    z-index: 3;
}

.step-visual {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    z-index: 3;
}

.step-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: var(--transition);
}

.timeline-step:hover .step-image {
    transform: scale(1.1);
}

.timeline-step:hover .step-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.step-number-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 5;
    border: 5px solid #ffffff;
}

.step-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 4;
    transition: var(--transition);
}

.timeline-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: var(--text-light);
}

.step-content-wrapper {
    position: relative;
    padding: 0;
    width: 100%;
}

.step-content {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
    text-align: center;
    max-width: 100%;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    justify-content: center;
}

.step-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Volunteer CTA Section */
.volunteer-cta {
    background: linear-gradient(135deg, rgb(0 0 0 / 85%), rgb(0 0 0 / 72%)), url(img/Giving-heart.jpg) center / cover no-repeat;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-light);
    margin-top: 4rem;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.volunteer-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.volunteer-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    border-color: #ffffff;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light-gray);
}

.testimonials-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-card {
    display: none;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.testimonial-content {
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-dots .dot:hover {
    border-color: var(--primary-color);
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.testimonial-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #ffffff;
}

.gallery-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light-gray);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Lato', sans-serif;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.gallery-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-content i {
    font-size: 2rem;
    color: var(--text-light);
    opacity: 0.8;
}

.gallery-item.hidden {
    display: none;
}

/* Contact Section Styles */
.contact-section {
    background: #ffffff;
}

.contact-section .section-title {
    color:#FFF;
}

.contact-section .section-subtitle {
    color:#d9d7d7;
}

.contact-hero {
    padding: 4rem 0 2rem;
    background: #626262;
    text-align: center;
}

/* Contact Content */
.contact-content {
    padding: 3rem 0 5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Info */
.contact-info {
    background: var(--bg-light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    height: fit-content;
}

.info-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.info-header p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-details p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.info-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-details a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Social Media */
.social-media {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.social-media h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.volunteer-image-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.volunteer-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.volunteer-image-card:hover img {
    transform: scale(1.06);
}

/* Volunteer gallery (uses same left column box as contact-info) */
.volunteer-gallery {
    display: grid;
    gap: 1rem;
}

.contact-form-container h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form label span {
    color: #ef4444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.contact-form .form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-gray);
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-submit i {
    margin-right: 0.5rem;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, #e5e7eb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.map-placeholder small {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-logo i {
    font-size: 2rem;
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.footer-heading {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links li a i {
    color: #ffffff;
    font-size: 0.9rem;
    width: 18px;
}

.footer-links li a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact li span {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-certification {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-certification p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer-certification i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-desktop {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .logo span {
        max-width: 240px;
    }

    /* Banner Responsive */
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding-bottom: 6rem;
    }

    .banner-text-section {
        max-width: 100%;
        text-align: center;
    }

    .banner-header {
        font-size: 0.75rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-cta-text {
        font-size: 2.5rem;
    }

    .banner-image-section {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .banner-collage-img {
        width: 100%;
        max-height: calc(100vh - 180px);
        height: auto;
        transform: scale(1);
        object-position: center center;
    }

    .banner-hands {
        height: 180px;
    }

    .banner {
        max-height: 100vh;
        padding: 2rem 0 0 0;
        min-height: 100vh;
    }

    .banner-content-wrapper {
        grid-template-columns: 1fr;
        min-height: calc(100vh - 180px);
        padding: 1rem 0;
        gap: 2rem;
    }

    .banner-text-section {
        order: 1;
    }

    .banner-image-section {
        order: 2;
    }

    .banner-bg-image {
        height: 100%;
    }

    /* About Section Responsive */
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-text h2 {
        text-align: center;
    }

    .video {
        height: 100%; 
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .teachings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-image {
        order: -1;
    }

    .philosophy-image .image-placeholder.large {
        min-height: 300px;
    }

    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-hero,
    .teachings-section,
    .philosophy-section,
    .legacy-section,
    .book-section,
    .services-section {
        padding: 3rem 0;
    }

    /* Services Section Tablet */
    .service-showcase-card {
        grid-template-columns: 1fr !important;
        min-height: auto;
    }

    .service-showcase-card.reverse {
        grid-template-columns: 1fr !important;
    }

    .service-image-section {
        min-height: 280px;
    }

    .service-showcase-image {
        min-height: 280px;
    }

    .service-number {
        font-size: 4rem;
    }

    /* How It Works Tablet - Vertical Timeline */
    .process-timeline {
        flex-direction: column;
        align-items: center;
        padding: 3rem 1rem;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 600px;
        margin-bottom: 3rem;
        padding: 0;
    }

    .timeline-step::after,
    .timeline-step::before {
        display: none;
    }

    .step-number-badge {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 1rem;
        position: relative;
    }

    .step-visual {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    /* Book Section Responsive */
    .book {
        height: 500px;
        max-width: 100%;
    }

    .book-page {
        width: 100%;
        height: 100%;
    }

    .book-page:nth-child(odd),
    .book-page:nth-child(even) {
        left: 0;
        right: auto;
        transform-origin: left center;
    }

    .book-page.flipped:nth-child(even) {
        transform: rotateY(-180deg);
    }

    .page-content {
        padding: 2rem 1.5rem;
    }

    .page-stats {
        grid-template-columns: 1fr;
    }

    .cover-cta {
        flex-direction: column;
    }

    .cover-cta .btn {
        width: 100%;
        max-width: 250px;
    }

    /* Donate Section Responsive */
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .donation-types-grid {
        grid-template-columns: 1fr;
    }

    .donation-form-wrapper {
        grid-template-columns: 1fr;
    }

    .donation-summary {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    .transparency-content {
        grid-template-columns: 1fr;
    }

    .donate-hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Contact Section Tablet */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .volunteer-image-card img {
        height: 220px;
    }

    .info-items {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Reduce side padding on mobile */
    .container {
        padding: 0 12px;
    }

    /* Banner Mobile */
    .banner-cta-text {
        font-size: 2rem;
    }

    .banner-header {
        font-size: 0.7rem;
    }

    .banner-description {
        font-size: 0.95rem;
    }

    .banner-image-section {
        height: auto;
        min-height: auto;
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
    }

    .banner-collage-img {
        display: none;
    }

    .banner-hands {
        height: 150px;
    }

    .banner-content-wrapper {
        grid-template-columns: 1fr;
        min-height: calc(100vh - 150px);
        padding: 1rem 0;
        gap: 2rem;
    }

    .banner-text-section {
        order: 1;
    }

    .banner-image-section {
        order: 2;
        display: none;
    }

    .banner {
        max-height: 100vh;
        padding: 2rem 0 0 0;
        min-height: 100vh;
    }

    .banner-bg-image {
        height: 100vh;
    }

    .banner-bg-image img {
        height: 100vh;
    }

    .chat-icon {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1.25rem;
    }

    .banner-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }

    .logo span {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .section-title {
        font-size: 1.75rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .teaching-content h3 {
        font-size: 1.3rem;
    }

    .philosophy-text h2 {
        font-size: 1.75rem;
    }

    .legacy-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .legacy-item h3 {
        font-size: 1.1rem;
    }

    /* Book Section Mobile */
    .book {
        height: 400px;
    }

    .page-content {
        padding: 1.5rem 1rem;
    }

    .page-content h3 {
        font-size: 1.5rem;
    }

    .cover-design h1 {
        font-size: 2.5rem;
    }

    .cover-design h2 {
        font-size: 1.4rem;
    }

    .book-navigation {
        gap: 1rem;
    }

    .book-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .book-btn span {
        display: none;
    }

    /* Services Section Mobile */
    .services-showcase {
        gap: 2rem;
    }

    .service-showcase-card {
        grid-template-columns: 1fr !important;
        min-height: auto;
        border-radius: 16px;
    }

    .service-image-section {
        min-height: 230px;
    }

    .service-showcase-image {
        min-height: 230px;
    }

    .service-number {
        font-size: 3rem;
        top: 20px;
        left: 20px;
    }

    .service-details-section {
        padding: 2rem 1.5rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .service-details-section h3 {
        font-size: 1.6rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .impact-badge {
        padding: 1.2rem 1.5rem;
    }

    .impact-number {
        font-size: 2rem;
    }

    /* How It Works Mobile - Vertical Timeline */
    .process-timeline {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2.5rem;
        padding: 0;
    }

    .timeline-step::after,
    .timeline-step::before {
        display: none;
    }

    .step-visual {
        width: 100%;
        height: 250px;
    }

    .step-number-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        margin-bottom: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }

    .step-content {
        padding: 2rem 1.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .volunteer-cta {
        padding: 3rem 1.5rem;
    }

    .volunteer-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Donate Section Mobile */
    .impact-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .donation-form {
        padding: 1.5rem;
    }

    .chart-bar {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Contact Section Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-certification {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.banner1-section{
    position:relative;
    /* color:#111; */
    --bg-url: url('img/newban.png');
    background-image: var(--bg-url);
    background-size: cover;
    background-position:  center center;
    background-repeat: no-repeat;
    /* padding:48px 20px; */
    padding : 140px 0;
    /* height: 100vh; */
    overflow: hidden;
}




.banner1-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner1-content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* flex: 1; */
    max-width: 50%;
}

.banner1-content h2{
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.banner1-lead{
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.banner1-content p{
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.banner1-contact-row{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.banner1-bg-overlay{
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}

.banner1-call-btn, .banner1-learn-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition: all 0.3s ease;
}

.banner1-call-btn{
    background:#111;
    color:#fff;
    min-width:170px;
    text-align:center;
}

.banner1-call-btn:hover{
    background:#333;
    transform: translateY(-2px);
}

.banner1-call-btn .banner1-phone{display:block;font-weight:700;font-size:14px}

.banner1-learn-btn{
    background:transparent;
    color:#111;
    border:2px solid rgba(0,0,0,0.08);
}

.banner1-learn-btn:hover{
    background:rgba(0,0,0,0.05);
    border-color:rgba(0,0,0,0.15);
}

.banner1-image{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    /* flex: 1; */
    width: 1200px;
    height: auto;
    max-width: 50%;
}

.banner1-image img{
    width:100%;
    /* max-width:750px; */
    height:100%;
    border-radius:12px;
    /* box-shadow:0 8px 30px rgba(0,0,0,0.12); */
    display:block;
}

@media (max-width:980px){
    .banner1-container{
        gap: 2rem;
    }
    
    .banner1-content h2{
        font-size: 2rem;
    }
}

@media (max-width:768px){
    .banner1-container{
        flex-direction: column;
        gap: 2rem;
    }
    
    .banner1-content{
        max-width: 100%;
        order: 2;
    }
    
    .banner1-image{
        max-width: 100%;
        order: 1;
        margin-bottom: 1rem;
    }
    
    .banner1-section{
        padding: 28px 14px;
        height: auto;
    }
    
    .banner1-section::before{
        height: 150px;
    }
    
    .banner1-bg-overlay{
        background:linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.85));
    }
    
    .banner1-content h2{
        font-size: 1.75rem;
    }
    
    .banner1-image img{
        width: 100%;
        height: auto;
    }
}

@media (prefers-reduced-motion:reduce){
    *{transition:none!important}
}

/* ========================================
   Hero Banner Section
   ======================================== */

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
   
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/newban.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 8;
    z-index: 0;
}

.hero-banner-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

/* Left Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2c3e50;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.hero-cta-text {
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin: 1rem 0 0 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #f3f4f6;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    max-width: fit-content;
    margin-top: 1rem;
}

.hero-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn i {
    font-size: 0.875rem;
}

/* Right Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.hero-img {
    width: 120%;
    max-width: 1200px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
    transition: transform 0.3s ease;
    transform: scale(1.2) translateX(-25%);
}



/* Bottom Hands Image */
.hero-hands {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    overflow: hidden;
}

.hero-hands img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Responsive Styles */
@media (max-width: 1024px) {



    .hero-banner-wrapper {
        gap: 3rem;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-cta-text {
        font-size: 2.5rem;
    }
    
    .hero-img {
        width: 130%;
        max-width: 700px;
        transform: scale(1.1) translateX(-28%);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
    }
  
    .hero-banner-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0 250px 0;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .hero-image {
      visibility: hidden;
      display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-text {
        font-size: 2rem;
    }
    
    .hero-img {
        width: 100%;
        max-width: 100%;
        transform: scale(1);
        object-fit: contain;
    }
    
    .hero-hands {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-banner-wrapper {
        padding: 2rem 0 200px 0;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-text {
        font-size: 1.75rem;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-img {
        width: 100%;
        max-width: 100%;
        transform: none;
    }
    
    .hero-hands {
        height: 150px;
    }
}

/* ========================================
   International Activities Page Styles
   ======================================== */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('img/Usa\ Charity\ img/10.jpg') center/cover no-repeat;
    padding: 120px 0 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    height: 60vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page-specific hero image: International Activities */
.page-hero.page-hero-international {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                url('img/ia1.jpeg') center/cover no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Introduction Section */
.international-intro {
    padding: 80px 0;
    background: #ffffff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* International Programs Section */
.international-programs {
    padding: 80px 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.program-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-highlights {
    list-style: none;
    padding: 0;
}

.program-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.program-highlights i {
    color: #000000;
    font-size: 0.9rem;
}

/* Countries Section */
.countries-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-region {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.country-region h3 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
}

.country-region ul {
    list-style: none;
    padding: 0;
}

.country-region li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.country-region li:last-child {
    border-bottom: none;
}

/* Country Focus Sections (India & USA) */
.country-focus {
    padding: 100px 0;
    background: #ffffff;
}

.india-section {
    background: #ffffff;
}

.usa-section {
    background: #ffffff;
}

.country-focus-header {
    text-align: center;
    margin-bottom: 4rem;
}

.country-flag {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.country-flag i {
    font-size: 3rem;
    color: white;
}

.country-description {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.country-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.country-activities {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.activity-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.activity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 2.5rem;
    color: white;
}

.activity-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.activity-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.activity-details {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.activity-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: #eeeeee;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.activity-details i {
    color: #000000;
    font-size: 1rem;
}

/* Services Gallery Section */
.services-gallery {
    margin-top: 4rem;
}

.services-gallery h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(51, 51, 51, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: white;
}

.service-info {
    padding: 1.5rem;
    text-align: center;
}

.service-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Impact Statistics Section */
.impact-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.impact-stats .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: white;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-item i {
    font-size: 1.5rem;
    color: #000000;
}

.partner-item span {
    color: #555;
    font-weight: 500;
}

/* Get Involved CTA Section */
.get-involved-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(51, 51, 51, 0.95) 100%),
                url('img/world.png') center/cover;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #000000;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
}

/* Active Navigation Link */
.nav-desktop a.active,
.nav-mobile a.active {
    color: #000000;
    font-weight: 600;
}

/* Responsive Styles for International Activities Page */
@media (max-width: 768px) {
    .page-hero {
        height: 70vh;
        min-height: 500px;
        padding: 100px 0 60px 0;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .countries-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-list {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Country Focus Sections - Tablet */
    .country-focus {
        padding: 60px 0;
    }

    .activity-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .activity-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .activity-icon i {
        font-size: 2rem;
    }

    .activity-content {
        text-align: center;
    }

    .activity-details {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-image {
        height: 250px;
    }

    .service-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px 0;
        height: 60vh;
        min-height: 400px;
    }

    .page-title {
        font-size: 2rem;
    }

    .international-intro,
    .international-programs,
    .countries-section,
    .impact-stats,
    .partners-section,
    .country-focus {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Country Focus Sections - Mobile */
    .country-flag {
        width: 80px;
        height: 80px;
    }

    .country-flag i {
        font-size: 2.5rem;
    }

    .country-focus-header {
        margin-bottom: 3rem;
    }

    .country-description {
        margin-bottom: 3rem;
    }

    .country-description p {
        font-size: 1rem;
    }

    .country-activities {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .activity-item {
        padding: 1.5rem;
    }

    .activity-icon {
        width: 70px;
        height: 70px;
    }

    .activity-icon i {
        font-size: 1.75rem;
    }

    .activity-content h3 {
        font-size: 1.25rem;
    }

    .activity-content p {
        font-size: 0.95rem;
    }

    .activity-details li {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
    }

    .country-locations {
        padding: 2rem 1.5rem;
    }

    .country-locations h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .services-gallery h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-image {
        height: 220px;
    }

    .service-info {
        padding: 1.25rem;
    }

    .service-info h4 {
        font-size: 1rem;
    }

    .service-info p {
        font-size: 0.9rem;
    }
}


