:root {
    --navy-blue: #0F2B5B;
    --white: #FFFFFF;
    --orange: #F47A20;
    --light-bg: #f4f7f6;
    --dark-text: #333333;
    --gray-text: #666666;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--dark-text);
}

/* Updated Button Styles */
.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--orange);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--orange);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    display: inline-block;
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-blue);
}

/* 1. Hero Section */
.hero-new {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 43, 91, 0.7); /* Navy Blue with opacity */
    z-index: -1;
}
.hero-content-new {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}
.hero-content-new h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-content-new p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* 2. Quick Impact */
.quick-impact {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 2;
    margin-top: -50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.impact-item h3 {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 10px;
    font-weight: 800;
}
.impact-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. About Us */
.about-section-new {
    padding: 100px 0;
    background-color: var(--white);
}
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.about-container h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 30px;
}
.about-container p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* 4. Focus Areas */
.focus-areas {
    padding: 100px 0;
    background-color: var(--light-bg);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--orange);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.focus-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.focus-card:hover {
    transform: translateY(-10px);
}
.focus-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
}
.focus-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
}

/* 5. Featured Projects */
.featured-projects {
    padding: 100px 0;
    background-color: var(--white);
}
.projects-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.project-card-new {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.project-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.project-info {
    padding: 25px;
}
.project-info h3 {
    color: var(--navy-blue);
    margin-bottom: 10px;
}
.project-meta {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 15px;
}
.project-meta span {
    color: var(--orange);
    font-weight: 600;
}

/* 6. Our Impact Map */
.impact-map {
    padding: 100px 0;
    background-color: var(--navy-blue);
    color: var(--white);
    text-align: center;
}
.impact-map .section-header h2 {
    color: var(--white);
}
.map-container {
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255,255,255,0.3);
}

/* 7. Success Stories */
.success-stories {
    padding: 100px 0;
    background-color: var(--light-bg);
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.story-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}
.story-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(244, 122, 32, 0.2);
    font-family: serif;
}
.story-text {
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h4 {
    color: var(--navy-blue);
    margin: 0;
}

/* 8. Gallery Preview */
.gallery-preview {
    padding: 100px 0;
    background-color: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* 9 & 10. Partners & Recognition */
.partners-recognition {
    padding: 80px 0;
    background-color: var(--light-bg);
}
.logos-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.logo-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    min-width: 150px;
}
.logo-item img {
    max-height: 80px;
    max-width: 120px;
}
.logo-item h4 {
    margin: 10px 0 0;
    color: var(--navy-blue);
    font-size: 0.9rem;
}

/* 12. Donate Section */
.donate-section-new {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-blue), #1a428a);
    color: var(--white);
}
.donate-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.donate-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}
.donate-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.payment-methods {
    background: var(--white);
    color: var(--dark-text);
    padding: 40px;
    border-radius: 10px;
}
.qr-code {
    text-align: center;
    margin-bottom: 30px;
}
.qr-code img {
    width: 200px;
    height: 200px;
    border: 2px solid var(--orange);
    padding: 10px;
    border-radius: 10px;
}
.bank-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.bank-details span {
    font-weight: 600;
    color: var(--navy-blue);
}

/* 13. Contact Section */
.contact-section-new {
    padding: 100px 0;
    background-color: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(244, 122, 32, 0.1);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.contact-item h4 {
    color: var(--navy-blue);
    margin-bottom: 5px;
}
.map-embed {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

/* Footer Adjustments */
.footer-new {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 5px solid var(--orange);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--orange);
}
.footer-bottom-new {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .impact-grid, .focus-grid, .projects-grid-new, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .donate-container, .contact-grid, .story-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hero-content-new h1 { font-size: 2.5rem; }
    .hero-content-new p { font-size: 1.2rem; }
    .impact-grid, .focus-grid, .projects-grid-new, .gallery-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .quick-impact { margin-top: 0; border-radius: 0; }
}
