@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #09552F;
    --secondary-color: #F7941D;
    --accent-color: #E36520;
    --text-dark: #212529;
    --text-light: #6C757D;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #DEE2E6;
    --font-family-sans-serif: 'Poppins', sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

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

body {
    font-family: var(--font-family-sans-serif);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.5rem; }

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

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

.btn {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.header .container {
    padding: 0;
    max-width: 100%;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    height: 85px;
    padding: 0 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation Brand */
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Navigation Center - Links */
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links > li > a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

/* Dropdown icon */
.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Active link indicator */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links > li > a.active::after,
.nav-links > li > a:hover::after {
    width: 100%;
}

/* Dropdown Menu - Custom Design */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    box-shadow: 0 15px 50px rgba(9, 85, 47, 0.15),
                0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 0.5rem;
    z-index: 1000;
    border: 1px solid rgba(111, 207, 77, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    border-left: 1px solid rgba(111, 207, 77, 0.2);
    border-top: 1px solid rgba(111, 207, 77, 0.2);
    z-index: -1;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 16px 16px 0 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
    margin: 0.25rem 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(111, 207, 77, 0.12), rgba(111, 207, 77, 0.08));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.dropdown-menu a i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(111, 207, 77, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-menu a span {
    position: relative;
    z-index: 1;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-menu a:hover::before {
    width: 100%;
}

.dropdown-menu a:hover i {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(111, 207, 77, 0.3);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(9, 85, 47, 0.2);
}

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

.nav-btn:hover {
    box-shadow: 0 6px 20px rgba(9, 85, 47, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background: var(--secondary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
/* Hero Section - Redesigned for Image Visibility */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero:hover .hero-bg-image {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(9, 85, 47, 0.95) 0%,
        rgba(9, 85, 47, 0.88) 20%,
        rgba(9, 85, 47, 0.65) 40%,
        rgba(9, 85, 47, 0.35) 60%,
        rgba(9, 85, 47, 0.1) 80%,
        rgba(9, 85, 47, 0) 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    padding-right: 30rem;
}

.hero-content {
    max-width: 650px;
    margin: 0;
    text-align: left;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(111, 207, 77, 0.15);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(111, 207, 77, 0.4);
    margin-bottom: 2rem;
    color: #6FCF4D;
    font-size: 1.1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(111, 207, 77, 0.25);
    border-color: rgba(111, 207, 77, 0.6);
    transform: translateY(-2px);
}

.hero-badge i {
    color: #6FCF4D;
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #6FCF4D, transparent);
    margin-top: 1.5rem;
    border-radius: 3px;
    animation: expandWidth 1s ease-out 1s backwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 620px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #6FCF4D 0%, #5ab83d 100%);
    color: #09552F;
    box-shadow: 0 8px 25px rgba(111, 207, 77, 0.35);
}

.btn-hero-primary::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-hero-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(111, 207, 77, 0.45);
    color: #09552F;
}

.btn-hero-primary span,
.btn-hero-primary i {
    position: relative;
    z-index: 1;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 650px;
    margin: 0;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(111, 207, 77, 0.5);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6FCF4D, #5ab83d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(111, 207, 77, 0.3);
    transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(111, 207, 77, 0.5);
}

.stat-icon i {
    font-size: 1.4rem;
    color: #09552F;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section */
.features-section {
    padding: 0 0 60px;
    background: #ffffff;
    margin-top: -80px;
    position: relative;
    z-index: 100;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: #ffffff;
    padding: 35px 40px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.feature-box {
    text-align: center;
    padding: 15px 12px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #6FCF4D 0%, #09552F 100%);
}

.feature-icon i {
    font-size: 1.6rem;
    color: #ffffff;
}

.feature-box h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

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

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

/* Stats Section */
/* Stats Section - Climate Focus */
.stats-section {
    background: linear-gradient(135deg, #09552F 0%, #2E7D32 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.4;
}

.stats-section .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.stat-item {
    min-width: auto;
    padding: 2rem 1.5rem;
}

.stat-item.climate-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.stat-item.climate-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6FCF4D, #F7941D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(111, 207, 77, 0.3);
}

.stat-icon-circle i {
    font-size: 2rem;
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stat-item small {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Climate Clock Section */
.climate-clock-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.climate-clock-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(247, 148, 29, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(9, 85, 47, 0.1) 0%, transparent 50%);
}

.climate-clock-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.clock-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(247, 148, 29, 0.15);
    border: 1px solid rgba(247, 148, 29, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: #F7941D;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.clock-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.climate-clock-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.climate-clock-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.climate-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(247, 148, 29, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 148, 29, 0.5);
    transform: translateY(-5px);
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F7941D;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.countdown-separator {
    font-size: 3rem;
    color: rgba(247, 148, 29, 0.5);
    font-weight: 700;
    animation: blink 2s infinite;
}

.climate-action-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.climate-action-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-climate-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #F7941D, #E36520);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.3);
}

.btn-climate-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(247, 148, 29, 0.4);
    color: #ffffff;
}

.climate-source {
    text-align: center;
    margin-top: 2rem;
}

.climate-source small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.climate-source i {
    margin-right: 5px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes blink {
    0%, 49%, 100% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0.3;
    }
}

/* About Us Preview */
.about-us-preview {
    padding: 8rem 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-content p {
    margin: 1.5rem 0 2.5rem;
}

/* What We Do Section */
.what-we-do {
    padding: 8rem 0;
    background-color: var(--background-light);
}

/* Deep green background for the What We Do section header */
.what-we-do .section-header {
    background: linear-gradient(135deg, #0A4A2A 0%, #09552F 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    box-shadow: 0 12px 28px rgba(9, 85, 47, 0.25);
    color: #ffffff;
}

.what-we-do .section-header h2 { color: #ffffff; }
.what-we-do .section-header .section-tag { color: #CDEFD3; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card .icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(111, 207, 77, 0.15);
    border: 3px solid #6FCF4D;
}

.feature-card .icon i {
    font-size: 2.5rem;
    color: #09552F;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Featured Projects */
.featured-projects {
    padding: 8rem 0;
}

/* Deep green background for the Featured Projects section header */
.featured-projects .section-header {
    background: linear-gradient(135deg, #0A4A2A 0%, #09552F 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    box-shadow: 0 12px 28px rgba(9, 85, 47, 0.25);
    color: #ffffff;
}

.featured-projects .section-header h2 { color: #ffffff; }
.featured-projects .section-header .section-tag { color: #CDEFD3; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--primary-color), #004d28);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 1200px;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}