
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: rgb(122, 65, 18);
    --primary-dark: rgb(236, 158, 94);
    --secondary: rgb(172, 85, 14);
    --accent: #f59e0b;
    --dark: #1f2937;
    --light: #f3f4f6;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(235, 126, 37);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgb(235, 126, 37);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1001;
}

.logo-image {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    /* color: var(--dark); */
    color:white;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px 0;
    z-index: 1002;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 3px 0;
    background-color: #ffffff;
    border-radius: 3px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo-image {
        height: 45px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.4s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        order: 2;
    }

    .nav-links.mobile-active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        color: var(--dark);
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-links a:hover {
        background: var(--light);
        color: var(--primary);
    }

    .nav-links .cta-button {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
    }
}


/* Hero Section */
.hero {
    background-image: url('assets/images/home/br-2.png');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
}


.hero::before {
    /* content: ''; */
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    /* background-size: 50px 50px; */
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 4rem 2rem; */
    padding: 5rem 2rem 4rem;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out;
}

.hero-text h1 span {
    color: var(--accent);
    display: block;
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    animation: slideInLeft 0.8s ease-out 0.6s backwards;
    min-height: auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Curved split hero styles */
.hero {
    position: relative;
    overflow: hidden;
    /* Full screen height */
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #02203f 0%, #075985 40%, #f97316 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem 2rem 1rem; /* reduced padding to fit content */
    /* keep this static so absolute .hero-visual anchors to .hero (viewport-wide) */
    min-height: auto;
}

.hero-text {
    /* occupy left 60% so image can take the right 40% */
    width: 60%;
    flex: none;
    padding: 3.5rem 3rem 3.5rem 3rem;
    color: white;
    background: transparent;
    box-shadow: 0 20px 40px rgba(2,6,23,0.08);
    z-index: 3;
    border-radius: 28px;
}

.hero-text h1 {
    color: #fff;
}

.hero-visual {
    /* anchor to .hero so it reaches the viewport right edge */
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    min-height: 500px;
    background-image: url('assets/images/home/br-2.png');
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Make sure content inside left column sits above the clip-path edge */

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 16px;
        opacity: 0.5;
    }
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-text {
        width: 55%;
    }
    
    .hero-visual {
        width: 45%;
        min-height: 450px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem 3rem;
        min-height: auto;
        margin-top: 1rem;
    }
    
    .hero-text {
        width: 100%;
        padding: 2rem;
        border-radius: 20px;
        order: 1;
    }
    
    .hero-visual {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
        min-height: 350px;
        border-radius: 20px;
        order: 2;
        margin-top: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        min-height: auto;
        order: 3;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 1.5rem 1rem 2rem;
        gap: 1rem;
        flex-direction: column;
    }
    
    .hero-text {
        padding: 1.5rem;
        order: 1;
    }
    
    .hero-visual {
        min-height: 280px;
        order: 2;
        width: 100%;
        margin-top: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
        order: 3;
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Responsive: stack on small screens and remove clip-path for clean edges */
@media (max-width: 900px) {
    .hero-content { flex-direction: column-reverse; padding: 2rem 1rem; }
    .hero-text { clip-path: none; border-radius: 16px; padding: 2rem; }
    .hero-visual { position: relative; width: 100%; min-height: 260px; height: 260px; clip-path: none; -webkit-clip-path: none; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-section {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    background: var(--light);
}

/* Global container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Image overlay fix */
.gallery-main {
    position: relative;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    z-index: 3;
}

.hero-card {
    /* background: white; */
    /* height: 30px;
    width: 30px; */
    border-radius: 20px;
    padding: 2.5rem;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
    position: relative;
    display: none;
}

.hero-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 0.5rem;
}

.feature-list li {
  width: 100px;
  height:100px;

  aspect-ratio: 1 / 1;  /* perfect square */
  background: #ffffff;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.feature-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Small image style */
.feature-thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 600px) {
    .feature-list li {
        flex: 0 0 100%;
    }
}


/* About Section with Images */
.about-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    color: white;
}

.overlay-stat h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.about-text-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Focus Areas Section */
/* .focus-areas {
    padding: 6rem 2rem;
    background: var(--light);
} */

/* Container and Section edit by*/ 
.focus-areas {
    padding: 6rem 2rem;
    background: var(--light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Card */
.focus-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Image */
.focus-icon {
    width: 100%;
    height: 260px;
}

.focus-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content */
.focus-content {
    padding: 2rem 1.8rem 2.5rem;
}

.focus-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(122, 65, 18); /* RED like reference */
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.focus-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }
}




/* Projects Section */
.projects-section {
    padding: 6rem 2rem;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}


.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.project-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.project-stats span {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

/* Impact Section */
.impact-section {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

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

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary); 
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #6b7280;
    font-size: 0.95rem;
}

.impact-visual {
    position: relative;
}

.impact-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.floating-1 {
    top: 10%;
    right: -5%;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-2 {
    bottom: 10%;
    left: -5%;
    animation: floatCard 3s ease-in-out infinite 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card h4 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.floating-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--light), white);
}

/* .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
} */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 2rem;
    margin-top: 3rem;
}


.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
}
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 per row */
    }
}




/* Donation Section */
.donation-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.donation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.donation-image {
    height: 250px;
    overflow: hidden;
}

.donation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.donation-content {
    padding: 2rem;
}

.donation-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.donation-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.donation-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6b7280;
}

.btn-donate {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
/* Future Story Tag */
.future-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    border-radius: 20px;
}

/* Remove image spacing since no images */
.donation-card .donation-content {
    padding: 2.5rem;
}

/* Optional: subtle left accent for story feel */
.donation-card {
    border-left: 4px solid rgba(37, 99, 235, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-about p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-contact ul li {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* OUR WORK Section Mobile Margins */
    .projects-section {
        padding: 3rem 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* OUR VISION Section Mobile Margins */
    .donation-section {
        padding: 3rem 1.5rem;
    }

    .donation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* About Section Mobile Margins */
    .about-section {
        padding: 3rem 1.5rem;
    }

    /* Focus Areas Section Mobile Margins */
    .focus-areas {
        padding: 3rem 1.5rem;
    }

    .focus-grid {
        gap: 1.5rem;
    }

    /* Impact Section Mobile Margins */
    .impact-section {
        padding: 3rem 1.5rem;
    }

    .impact-grid {
        gap: 2rem;
    }

    /* Services Section Mobile Margins */
    .services-section {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    /* CTA Section Mobile Margins */
    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer Mobile Margins */
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
    }

    /* Tighter margins for very small screens */
    .projects-section,
    .donation-section {
        padding: 2rem 1rem;
    }

    .project-content,
    .donation-content {
        padding: 1.5rem;
    }

    .projects-grid,
    .donation-grid {
        gap: 1rem;
    }

    /* Additional sections for very small screens */
    .about-section,
    .focus-areas,
    .impact-section,
    .services-section,
    .cta-section {
        padding: 2rem 1rem;
    }

    .focus-grid,
    .services-grid {
        gap: 1rem;
    }

    .focus-card,
    .service-card {
        padding: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }
}

/* <!-- Modal Styles > */

    .wrapper-modal-header .modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.wrapper-modal-header .modal.show {
  display: flex;
}

.wrapper-modal-header .modal-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 420px;
  border-radius: 15px;
  position: relative;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.wrapper-modal-header .close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
}

.donate-form input,
.donate-form select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}


.social-links a {
  font-size: 1.3rem;
  background-color: white;
  color: #555;
  margin-right: 14px;
  transition: all 0.3s ease;

}

.social-links a:hover {
  color: rgb(235, 126, 37); /* Bootstrap primary */
  transform: translateY(-3px);
}
.contact-section {
  padding: 6rem 2rem;
  background: #f9fafb;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper iframe {
  border-radius: 12px;
}
