/* EcoVision Landing Page Styles */
/* Brand Colors: #94c224 (Green), #213460 (Blue) */

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

:root {
    --brand-green: #94c224;
    --brand-blue: #213460;
    --brand-blue-light: #2e4a7a;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin-top: 110px;
}
html {
  scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 78px;
    height: 78px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-blue);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-green);
}

.donate-btn-header {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    animation: pulse-glow 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

.donate-btn-header:hover {
    background: #7fa01d;
    transform: translateY(-2px);
}

/* Animations */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(148, 194, 36, 0.5); }
    50% { box-shadow: 0 0 20px rgba(148, 194, 36, 0.8); }
}

@keyframes flip-pages {
    0% { transform: rotateY(0deg) scale(1); }
    25% { transform: rotateY(-15deg) scale(1.05); }
    50% { transform: rotateY(0deg) scale(1.1); }
    75% { transform: rotateY(15deg) scale(1.05); }
    100% { transform: rotateY(0deg) scale(1); }
}

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: white;
    padding: 50px 0;
    
    overflow: hidden;
}

.intro-content {
    animation: fade-in-up 1s ease-out;
}

.intro-icon {
    margin-bottom: 2rem;
}

.report-book-icon {
    width: 300px;
    height: 300px;
    animation: flip-pages 3s infinite;
}

.intro-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 340px;
}

.text-green {
    color: var(--brand-green);
}

.intro-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.intro-title .text-green {
    display: block;
}

.intro-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #7fa01d;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Summary Section */
.summary-section {
    padding: 50px 0;
    background: white;
}

.summary-content {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(148, 194, 36, 0.1);
    color: var(--brand-green);
    border: 1px solid rgba(148, 194, 36, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: scale-in 0.6s ease-out;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(148, 194, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: var(--brand-green);
    border-radius: 50%;
}

.icon-gradient {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
    border-radius: 50%;
}

.value-icon i {
    font-size: 2rem;
    color: var(--brand-green);
}

.value-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.value-text {
    color: var(--text-light);
}

/* Numbers Section */
.numbers-section {
    /*background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));*/
    background: var(--brand-green);
    color: white;
    padding: 80px 0;
}

.numbers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-description-white {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.stat-item {
    text-align: center;
    animation: fade-in-up 0.8s ease-out;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    filter: brightness(0) invert(1);
    animation: bounce-slow 2s infinite;
}

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

.stat-label {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
    padding: 0px;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    
    color:#fff;
    padding: 30px 15px;
    background: url('img/header.jpg') no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;

}
.blog-header.green {
 
    background: var(--brand-green);


}
.blog-header .section-title {
    color: #f1f1f1;
    margin-bottom: 0px;
}


.blog-header p {
    
    color:var(--brand-green);
    margin-bottom: 0px;
}
.blog-grid {
    display: block;
    
}

.blog-card {
 
    transition: all 0.3s ease;
    animation: scale-in 0.6s ease-out;
    display: flex;
    align-items: center;
    border-bottom: 1px dotted #28a745;
    align-items: center;
    padding-bottom: 2.4rem !important;
    margin-bottom: 2.4rem !important;
}

.blog-card:hover {
    transform: translateY(-5px);
    /*box-shadow: var(--shadow-lg);*/
}





.blog-badge {
    display: inline-block;
    background: rgba(148, 194, 36, 0.1);
    color: var(--brand-green);
    border: 1px solid rgba(148, 194, 36, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-badge-blue {
    background: rgba(33, 52, 96, 0.1);
    color: var(--brand-blue);
    border-color: rgba(33, 52, 96, 0.2);
}

.blog-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--brand-blue);
    margin-bottom: 0.2rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 15px;

}

.blog-read-more {
    background: transparent;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more:hover {
    background: var(--brand-green);
    color: white;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Media Stats Row */
.media-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-stat-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--brand-green);
}

.media-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(148, 194, 36, 0.2);
}

.media-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.media-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Media Highlight Box */
.media-highlight-box {
    background: white;
    border-left: 4px solid var(--brand-green);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.media-highlight-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.media-outlets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.media-outlet-tag {
    display: inline-block;
    background: rgba(148, 194, 36, 0.1);
    color: var(--brand-green);
    border: 1px solid rgba(148, 194, 36, 0.3);
    padding: 0.5rem 0.7rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.media-outlet-tag:hover {
    background: var(--brand-green);
    color: white;
    transform: translateY(-2px);
}

/* Social Impact Box */
.social-impact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-impact-item {
    background: linear-gradient(135deg, var(--brand-green), #7fa01d);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(148, 194, 36, 0.3);
    transition: all 0.3s ease;
}

.social-impact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(148, 194, 36, 0.4);
}

.social-impact-item i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.social-impact-content {
    flex: 1;
}

.social-impact-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.social-impact-text {
    font-size: 0.95rem;
    opacity: 0.95;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.feature-dot {
    width: 24px;
    height: 24px;
    background: var(--brand-green);
    border-radius: 50%;
    position: relative;
}

.feature-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.about-visual {
    animation: scale-in 0.8s ease-out;
}

.about-card {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(148, 194, 36, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.about-card-bg {
    position: absolute;
    inset: 16px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
    border-radius: 15px;
    opacity: 0.8;
}

.about-card-content {
    position: absolute;
    inset: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    animation: bounce-slow 2s infinite;
}

.about-card-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.about-card-content p {
    opacity: 0.8;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--bg-light), white);
    padding: 80px 0;
}

.social-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-grid {
    text-align: center;
    margin-bottom: 3rem;
}

.social-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.social-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-post {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--brand-green);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
}

.social-post-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.twitter-icon {
    background: var(--brand-green);
}

.linkedin-icon {
    background: var(--brand-blue);
}

.social-post-content {
    flex: 1;
}

.social-post-text {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-post-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-self: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.youtube { background: #ff0000; }

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h4 {
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: var(--brand-green);
    width: 16px;
}

.donate-section {
    text-align: center;
}

.donate-card {
    
    background:var(--brand-green);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.donate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.donate-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-donate {
    background: white;
    color: var(--brand-blue);
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: var(--brand-blue);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

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

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

.footer-social-link:hover {
    background: var(--brand-green);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .media-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .media-stat-number {
        font-size: 2rem;
    }
    
    .social-impact-box {
        grid-template-columns: 1fr;
    }
    
    .media-outlets {
        gap: 0.5rem;
    }
    
    .media-outlet-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Fade in animation class */
.fade-in {
    animation: fade-in-up 1s ease-out;
}

/* Additional responsive breakpoints */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .intro-section {
        padding: 100px 0 60px;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.container-fluid {
    max-width: 100%;
}