/* 
* Naagar Foundation - Custom Stylesheet
* Developed by Prakrut Systems Pvt Ltd
* Version: 1.0.3 - Professional modern hero section with enhanced readability
*/

/* General Styles */
:root {
    --primary-color: #2E8B57;
    --secondary-color: #3CB371;
    --light-green: #F0FFF0;
    --dark-green: #006400;
    --hero-gradient: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

/* Activities Section Image Consistency */
.tab-pane .img-fluid {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .tab-pane .img-fluid {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .tab-pane .img-fluid {
        height: 250px;
    }
}

/* Advanced Team Grid */
.advanced-team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
    border: 1px solid rgba(46, 139, 87, 0.1);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
    border-color: rgba(46, 139, 87, 0.3);
}

.member-photo-container {
    position: relative;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 95px !important;
    height: 95px !important;
}

.advanced-team-grid .member-photo {
    width: 95px !important;
    height: 95px !important;
    border-radius: 50% !important;
    object-fit: cover;
    object-position: center;
    border: 2px solid #2E8B57;
    box-shadow: 0 3px 8px rgba(46, 139, 87, 0.3);
    max-width: 95px !important;
    max-height: 95px !important;
}

.advanced-team-grid .placeholder-photo {
    width: 95px !important;
    height: 95px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    color: #999;
    font-size: 28px;
    max-width: 95px !important;
    max-height: 95px !important;
}

.leader-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.role-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.role-badge.operations {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.role-badge.medical {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.leader-badge i,
.role-badge i {
    color: #fff;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E8B57;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 0.5rem;
}

.member-description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
    line-height: 1.5;
}

.team-member-card:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(46, 139, 87, 0.4);
}

.team-member-card:hover .leader-badge,
.team-member-card:hover .role-badge {
    transform: scale(1.1);
}

/* Force image size to span from 1st to 4th row height */
.advanced-team-grid .team-member-card .member-photo-container .member-photo,
.advanced-team-grid .team-member-card .member-photo-container .placeholder-photo {
    width: 95px !important;
    height: 95px !important;
    min-width: 95px !important;
    min-height: 95px !important;
    max-width: 95px !important;
    max-height: 95px !important;
    border-radius: 50% !important;
}

@media (max-width: 768px) {
    .team-member-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .member-photo-container {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 12px !important;
        height: 12px !important;
    }
    
    .advanced-team-grid .team-member-card .member-photo-container .member-photo,
    .advanced-team-grid .team-member-card .member-photo-container .placeholder-photo {
        width: 95px !important;
        height: 95px !important;
        min-width: 95px !important;
        min-height: 95px !important;
        max-width: 95px !important;
        max-height: 95px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }
    
    .leader-badge,
    .role-badge {
        width: 6px;
        height: 6px;
        top: 0px;
        right: 0px;
    }
    
    .leader-badge i,
    .role-badge i {
        font-size: 3px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.95rem;
    }
    
    .member-description {
        font-size: 0.85rem;
    }
}

body {
    font-family: 'Poppins', sans-serif !important;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    transition: all 0.3s ease;
}

/* Floating Trees Background Animation */
.floating-trees {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.tree {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.tree-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tree-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.tree-3 {
    top: 40%;
    left: 20%;
    animation-delay: 2s;
}

.tree-4 {
    top: 80%;
    left: 60%;
    animation-delay: 3s;
}

.tree-5 {
    top: 10%;
    left: 70%;
    animation-delay: 4s;
}

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

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518481612222-68bbe828ecd1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.4;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519904981063-b0cf448d479e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.2;
    z-index: -1;
    mix-blend-mode: multiply;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 139, 87, 0.75);
    z-index: 1;
}

/* Rain Effect */
.hero-background .rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    animation: rain 0.5s linear infinite;
    z-index: 0;
}

@keyframes rain {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.content-wrapper {
    padding: 2rem 0;
}

/* Achievement Badge */
.achievement-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .tagline {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight {
    color: #90EE90;
    font-weight: 600;
}

/* Impact Highlights */
.impact-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-title {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.highlight-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.visual-container {
    position: relative;
    padding: 2rem;
}

.main-image {
    position: relative;
    z-index: 1;
}

.plantation-main {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease-out 0.5s both;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    top: -20px;
    right: -30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:nth-child(2) {
    animation-delay: 1s;
}

.stat-card:nth-child(3) {
    animation-delay: 2s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number .unit {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 2px;
}

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

/* Animated Elements */
.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: leafFloat 4s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1.5s;
}

.leaf-3 {
    top: 40%;
    left: 70%;
    animation-delay: 3s;
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.scroll-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .tagline {
        font-size: 1.5rem;
    }
    
    .impact-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-title .tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .content-wrapper {
        text-align: center;
    }
    
    .floating-stats {
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 300px;
    }
}

/* Original Styles Continue */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1501854140801-50d01698950b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* CSS Loaded Indicator - For debugging */
body::after {
    content: "";
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 10px;
    height: 10px;
    background-color: #2E8B57;
    border-radius: 50%;
    z-index: 9999;
    /* Remove this indicator in production */
}

/* Tree Animation */
.tree-animation {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Animated Trees for Background */
.animated-tree {
    position: absolute;
    bottom: 0;
    animation: grow 5s infinite alternate;
    z-index: -1;
    opacity: 0.1;
}

@keyframes grow {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.1) translateY(-10px);
    }
}

/* Enhanced Tree Container */
.animated-trees-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Navigation */
.navbar-light .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
}

.navbar-light .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover:before,
.navbar-light .navbar-nav .nav-link.active:before {
    width: calc(100% - 2rem);
}

.navbar-light .navbar-toggler {
    border-color: rgba(255,255,255,0.5) !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Footer */
footer a.hover-white:hover {
    color: #fff !important;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

/* Plantation Gallery */
.plantation-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .plantation-img {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}

.btn-success {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-success:hover {
    background-color: var(--dark-green) !important;
    border-color: var(--dark-green) !important;
}

.btn-outline-success {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-success:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

/* Tree Counter */
.counter-box {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-box .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    animation: countUp 2s ease-out;
}

.counter-box h4 {
    margin-top: 1rem;
    color: #333;
    font-weight: 600;
}

/* Counter Animation */
@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-count {
    display: inline-block;
    animation: countUp 2s ease-out;
}

.donation-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea,
.donation-form input,
.donation-form select {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .navbar-light .navbar-nav .nav-link:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .counter-box {
        margin-bottom: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
}

/* Team Member Styling */
.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Tree Growing Animation */
.tree-grow {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.tree-grow.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tree grow animation trigger */
.tree-grow {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.tree-grow.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Effects */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 139, 87, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
}

/* Path fixing for assets */
.path-fixed img[src^="assets/"] {
    /* This ensures relative paths work correctly */
}

.page-transition {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition.loaded {
    opacity: 1;
}

/* Achievement Section Styles */
.achievements-section {
    overflow: hidden;
}

.achievement-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.achievement-card {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 2;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.15);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 15px 0 0 15px;
}

.year-circle {
    min-width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
    position: relative;
    z-index: 3;
}

.year-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.achievement-content {
    flex: 1;
}

.achievement-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.achievement-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Impact Stats */
.impact-stat {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.impact-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* Decorative Elements */
.decoration-leaf-1,
.decoration-leaf-2,
.decoration-leaf-3 {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232E8B57" opacity="0.1"><path d="M17,8C8,10,5.9,16.17,3.82,21.34L5.71,22l1-2.3A12.08,12.08,0,0,0,17,8Z"/><path d="M7,4.76C12.25,3,16.2,5.72,19.5,8.52L21,7.5,19.75,5.71A12.09,12.09,0,0,0,7,4.76Z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: 0.15;
}

.decoration-leaf-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    right: -50px;
    transform: rotate(45deg);
}

.decoration-leaf-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: -30px;
    transform: rotate(120deg);
}

.decoration-leaf-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 10%;
    transform: rotate(-30deg);
}

/* Counter Animation */
.stat-number {
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .timeline-line {
        left: 40px;
    }
    
    .achievement-card {
        margin-left: 60px;
    }
    
    .col-lg-6.mb-4:empty {
        display: none;
    }
}

@media (max-width: 767px) {
    .year-circle {
        min-width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .achievement-title {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Founder Silhouette Styles */
.founder-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.founder-silhouette {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.founder-silhouette::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff" opacity="0.1"><path d="M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Z"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.founder-icon {
    font-size: 3rem;
    color: white;
}

.founder-silhouette::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 60px 60px;
}

/* Founder Info Styles in Hero Section */
.founder-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.founder-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.founder-name {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Animation Improvements */
@keyframes floatStats {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
        opacity: 1; 
    }
}

/* Animal Welfare Page Styles (DISABLED) */
.animal-hero-section {
    min-height: 70vh;
    background: url('https://images.unsplash.com/photo-1469122312224-c5846569feb1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
}

.animal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.9) 0%, rgba(25, 80, 50, 0.85) 100%);
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.animal-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.animal-hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.animal-silhouettes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,186.7C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Animal Tabs */
.animal-tabs {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.animal-nav {
    background: #f8f9fa;
    padding: 1rem;
}

.animal-nav .nav-link {
    color: #495057;
    font-weight: 500;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.animal-nav .nav-link:hover {
    background: rgba(46, 139, 87, 0.1);
}

.animal-nav .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.animal-tab-content {
    padding: 2rem;
}

.animal-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.animal-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.animal-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.animal-feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.animal-feature-list li:last-child {
    border-bottom: none;
}

/* Cow School Section */
.cow-school-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cow-school-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-badge {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cow-school-stats {
    margin-top: 2rem;
}

.stat-box {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-box h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.stat-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* AI Wildlife Section */
.ai-wildlife-section {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%23f8f9fa"/></svg>');
}

.ai-tech-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-tech-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ai-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.15);
}

.ai-tech-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.ai-tech-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.ai-workflow {
    margin-top: 2rem;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    margin-bottom: 0.3rem;
}

.step-content p {
    margin-bottom: 0;
    color: #666;
}

/* Impact Section */
.impact-section {
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23ffffff" stroke-width="2" stroke-opacity="0.1" fill="none"/></svg>') repeat;
    opacity: 0.1;
}

.impact-counter {
    position: relative;
    z-index: 1;
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Donation Section */
.donation-options {
    margin-top: 2rem;
}

.donation-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.15);
}

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

.donation-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.donation-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.15);
}

/* Volunteer CTA */
.volunteer-cta {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.volunteer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .animal-hero-section {
        min-height: 60vh;
    }
    
    .animal-nav .nav-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .animal-tab-content {
        padding: 1.5rem;
    }
    
    .ai-tech-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .animal-hero-section {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .animal-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .animal-hero-title {
        font-size: 2.5rem;
    }
    
    .animal-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .animal-nav .nav-item {
        flex: 0 0 auto;
        width: auto;
    }
    
    .animal-nav .nav-link {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .counter-value {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    .volunteer-cta {
        padding: 2rem;
    }
}

/* Fix home page Naagar Foundation color to white */
.hero-title .text-success {
    color: white !important;
}

/* Plantation Page Styles */
.plantation-hero-section {
    min-height: 70vh;
    background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
}

.plantation-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.9) 0%, rgba(25, 80, 50, 0.85) 100%);
    z-index: 0;
}

.plantation-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.plantation-hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.plantation-silhouettes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,186.7C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
}

/* Process Timeline */
.process-timeline {
    margin-top: 3rem;
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.15);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

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

/* Plantation Tabs */
.plantation-tabs {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.plantation-nav {
    background: #f8f9fa;
    padding: 1rem;
}

.plantation-nav .nav-link {
    color: #495057;
    font-weight: 500;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.plantation-nav .nav-link:hover {
    background: rgba(46, 139, 87, 0.1);
}

.plantation-nav .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.plantation-tab-content {
    padding: 2rem;
}

.plantation-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plantation-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.plantation-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.plantation-feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.plantation-feature-list li:last-child {
    border-bottom: none;
}

/* Mini Stats */
.mini-stat-box {
    background: rgba(46, 139, 87, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.mini-stat-box h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.mini-stat-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Memorial Options */
.memorial-options {
    margin-top: 2rem;
}

.memorial-card {
    display: flex;
    align-items: center;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.memorial-card:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateX(5px);
}

.memorial-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.memorial-content {
    flex: 1;
}

.memorial-content h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.memorial-content p {
    margin-bottom: 0;
    color: #666;
}

/* Street Benefits */
.benefit-card {
    display: flex;
    align-items: center;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(46, 139, 87, 0.1);
}

.benefit-card i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.benefit-card span {
    font-weight: 500;
    color: #333;
}

/* Irrigation Systems */
.irrigation-systems {
    margin-top: 2rem;
}

.system-card {
    display: flex;
    align-items: flex-start;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.system-card:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateY(-2px);
}

.system-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.system-content {
    flex: 1;
}

.system-content h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.system-content p {
    margin-bottom: 0;
    color: #666;
}

/* Goals Section */
.goals-section {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff"/><circle cx="50" cy="50" r="30" stroke="%23f8f9fa" stroke-width="2" fill="none"/></svg>');
}

.growth-timeline {
    margin-top: 2rem;
}

.growth-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.growth-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: var(--primary-color);
    opacity: 0.3;
}

.growth-year {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.growth-content {
    flex: 1;
}

.growth-content h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.growth-content p {
    margin-bottom: 0;
    color: #666;
}

/* Goals Visual */
.goals-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.goal-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.3);
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.goal-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

/* Plantation Impact Section */
.plantation-impact-section {
    position: relative;
    overflow: hidden;
}

.plantation-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 Q70,50 80,80 Q50,90 20,80 Q30,50 20,20 Z" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.1" fill="none"/></svg>') repeat;
    opacity: 0.1;
}

.plantation-counter {
    position: relative;
    z-index: 1;
}

.plantation-counter .counter-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plantation-counter .counter-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Plantation CTA */
.plantation-cta {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.plantation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .plantation-hero-section {
        min-height: 60vh;
    }
    
    .plantation-nav .nav-link {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .plantation-tab-content {
        padding: 1.5rem;
    }
    
    .goals-visual {
        margin-top: 2rem;
    }
    
    .goal-circle {
        width: 150px;
        height: 150px;
    }
    
    .goal-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .plantation-hero-section {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .plantation-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .plantation-hero-title {
        font-size: 2.5rem;
    }
    
    .plantation-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .plantation-nav .nav-item {
        flex: 0 0 auto;
        width: auto;
    }
    
    .plantation-nav .nav-link {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .plantation-counter .counter-value {
        font-size: 2.5rem;
    }
    
    .plantation-counter .counter-label {
        font-size: 0.9rem;
    }
    
    .plantation-cta {
        padding: 2rem;
    }
    
    .goal-features {
        grid-template-columns: 1fr;
    }
}

/* Advanced Floating Elements Background */
.advanced-floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: advancedFloat 20s infinite linear;
    filter: blur(1px);
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 25s; }
.element-2 { top: 20%; right: 15%; animation-delay: -3s; animation-duration: 30s; }
.element-3 { top: 40%; left: 5%; animation-delay: -8s; animation-duration: 22s; }
.element-4 { top: 60%; right: 20%; animation-delay: -12s; animation-duration: 28s; }
.element-5 { top: 80%; left: 25%; animation-delay: -16s; animation-duration: 26s; }
.element-6 { top: 70%; right: 10%; animation-delay: -20s; animation-duration: 24s; }
.element-7 { top: 30%; left: 70%; animation-delay: -5s; animation-duration: 32s; }
.element-8 { top: 90%; right: 30%; animation-delay: -10s; animation-duration: 20s; }

@keyframes advancedFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Revolutionary Hero Section */
.revolutionary-hero-section {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(46, 125, 50, 0.8) 25%, rgba(56, 142, 60, 0.75) 50%, rgba(76, 175, 80, 0.7) 75%, rgba(102, 187, 106, 0.65) 100%),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.revolutionary-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(27, 94, 32, 0.05) 0%, rgba(102, 187, 106, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Advanced Mind-Blowing Background */
.hero-advanced-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 195, 74, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(156, 204, 101, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(174, 213, 129, 0.45) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(192, 222, 156, 0.35) 0%, transparent 35%);
    animation: meshFloat 20s ease-in-out infinite alternate;
}

.hero-geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    animation: geometricShift 25s linear infinite;
}

.hero-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="particles" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(139,195,74,0.15)" opacity="0.8"><animate attributeName="opacity" values="0.1;0.8;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="180" cy="40" r="1.5" fill="rgba(156,204,101,0.25)" opacity="0.6"><animate attributeName="opacity" values="0.2;0.9;0.2" dur="6s" repeatCount="indefinite"/></circle><circle cx="100" cy="80" r="1" fill="rgba(174,213,129,0.2)" opacity="0.7"><animate attributeName="opacity" values="0.1;0.7;0.1" dur="5s" repeatCount="indefinite"/></circle><circle cx="60" cy="140" r="2.5" fill="rgba(192,222,156,0.12)" opacity="0.5"><animate attributeName="opacity" values="0.05;0.5;0.05" dur="7s" repeatCount="indefinite"/></circle><circle cx="150" cy="160" r="1.8" fill="rgba(220,237,200,0.15)" opacity="0.6"><animate attributeName="opacity" values="0.1;0.6;0.1" dur="3s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100%" height="100%" fill="url(%23particles)"/></svg>');
    animation: particleFloat 30s linear infinite;
}

.hero-wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C150,100 350,0 600,60 C850,120 1050,20 1200,60 L1200,120 L0,120 Z" fill="rgba(139,195,74,0.15)"><animate attributeName="d" values="M0,60 C150,100 350,0 600,60 C850,120 1050,20 1200,60 L1200,120 L0,120 Z;M0,80 C150,40 350,100 600,80 C850,60 1050,120 1200,80 L1200,120 L0,120 Z;M0,60 C150,100 350,0 600,60 C850,120 1050,20 1200,60 L1200,120 L0,120 Z" dur="10s" repeatCount="indefinite"/></path><path d="M0,80 C200,120 400,40 600,80 C800,120 1000,40 1200,80 L1200,120 L0,120 Z" fill="rgba(156,204,101,0.12)" opacity="0.7"><animate attributeName="d" values="M0,80 C200,120 400,40 600,80 C800,120 1000,40 1200,80 L1200,120 L0,120 Z;M0,100 C200,60 400,120 600,100 C800,80 1000,120 1200,100 L1200,120 L0,120 Z;M0,80 C200,120 400,40 600,80 C800,120 1000,40 1200,80 L1200,120 L0,120 Z" dur="8s" repeatCount="indefinite"/></path></svg>');
    background-size: 1200px 120px;
    animation: waveMove 15s ease-in-out infinite;
}

@keyframes meshFloat {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: scale(1.05) rotate(-1deg); opacity: 0.9; }
}

@keyframes geometricShift {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(1deg); }
    50% { transform: translate(-5px, 15px) rotate(-0.5deg); }
    75% { transform: translate(15px, 5px) rotate(0.8deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-50px) translateX(-30px); }
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-100px); }
}

/* Environmental Info Floating Cards */
.environmental-info-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.env-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 2px solid rgba(139, 195, 74, 0.3);
    box-shadow: 0 20px 50px rgba(27, 94, 32, 0.15);
    animation: envCardFloat 10s ease-in-out infinite;
    max-width: 320px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.env-card.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.env-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.env-card.card-3 {
    bottom: 30%;
    right: 15%;
    animation-delay: 4s;
}

.env-card.card-4 {
    bottom: 10%;
    right: 8%;
    animation-delay: 6s;
}

@keyframes envCardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.95; }
    50% { transform: translateY(-15px) rotate(0.5deg); opacity: 1; }
}

.env-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(139, 195, 74, 0.5);
    box-shadow: 0 30px 70px rgba(27, 94, 32, 0.25);
    animation-play-state: paused;
}

.env-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8bc34a, #9ccc65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.env-card:hover .env-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(139, 195, 74, 0.6);
}

.env-content {
    display: flex;
    flex-direction: column;
    color: white;
}

.env-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.env-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Plantation Process Highlights */
.plantation-highlights {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.highlight-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-row:last-child {
    margin-bottom: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(129, 199, 132, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.highlight-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.3;
}

.z-index-3 {
    z-index: 3;
}

/* Hero Content Advanced */
.hero-content-advanced {
    color: white;
    padding: 2rem 0;
}

.achievement-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.achievement-badge-advanced {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: badgeFloat 6s ease-in-out infinite;
}

.achievement-badge-advanced:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.achievement-badge-advanced:nth-child(1) { animation-delay: 0s; }
.achievement-badge-advanced:nth-child(2) { animation-delay: 2s; }
.achievement-badge-advanced:nth-child(3) { animation-delay: 4s; }

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

.hero-title-revolutionary {
    margin-bottom: 2rem;
}

.foundation-name {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #e8f5e8, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    line-height: 1.1;
}

.tagline-revolutionary {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-style: italic;
    letter-spacing: 1px;
}

@keyframes titleShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Founder Info Advanced */
.founder-info-advanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.founder-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.founder-details {
    display: flex;
    flex-direction: column;
}

.founder-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.founder-name-advanced {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.hero-description-advanced {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-text {
    color: #e8f5e8;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(232, 245, 232, 0.5);
}

/* Impact Metrics Grid */
.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    font-size: 2.5rem;
    color: #e8f5e8;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(232, 245, 232, 0.5);
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    display: block;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Hero Actions Advanced */
.hero-actions-advanced {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-revolutionary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.btn-revolutionary.primary {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.4);
}

.btn-revolutionary.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.btn-revolutionary.accent {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.4);
}

.btn-revolutionary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-revolutionary.primary:hover {
    background: linear-gradient(135deg, #388e3c, #4caf50);
}

.btn-revolutionary.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-revolutionary.accent:hover {
    background: linear-gradient(135deg, #f57c00, #ff9800);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-revolutionary:hover .btn-glow {
    left: 100%;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Hero Visual Advanced */
.hero-visual-advanced {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.main-visual-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 80px rgba(27, 94, 32, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.visual-badge {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.visual-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 2s infinite;
}

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

.visual-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.visual-main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

.main-visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 100px rgba(27, 94, 32, 0.4);
    border-color: rgba(139, 195, 74, 0.4);
}

.main-visual-card:hover .visual-main-image {
    transform: scale(1.03);
}

.image-overlay-stats {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    color: white;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    display: block;
    color: #4caf50;
}

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

.visual-progress-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    color: white;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-value {
    font-weight: 700;
    color: #e8f5e8;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Floating Stats Advanced */
.floating-stats-advanced {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatStats 6s ease-in-out infinite;
}

.floating-stat:nth-child(1) {
    top: -10%;
    left: -20%;
    animation-delay: 0s;
}

.floating-stat:nth-child(2) {
    bottom: 10%;
    right: -25%;
    animation-delay: 2s;
}

.floating-stat:nth-child(3) {
    top: 50%;
    left: -30%;
    animation-delay: 4s;
}

@keyframes floatStats {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.floating-stat-content {
    display: flex;
    flex-direction: column;
}

.floating-stat-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #2d5a3d;
}

.floating-stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Advanced Scroll Indicator */
.scroll-indicator-advanced {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    z-index: 10;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

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

.scroll-text-advanced {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 1px;
}

.scroll-arrow-bounce {
    animation: bounce 2s infinite;
}

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

/* Mission Interactive Section */
.mission-interactive-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-badge-advanced {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    margin-bottom: 1rem;
}

.mission-pillars {
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #66bb6a, #81c784);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(76, 175, 80, 0.2);
}

.pillar-icon-container {
    position: relative;
    margin-bottom: 2rem;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.pillar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-glow {
    opacity: 1;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.pillar-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pillar-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 20px;
}

.pillar-stat {
    text-align: center;
}

.pillar-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #4caf50;
}

.pillar-stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4caf50;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 2px solid #4caf50;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pillar-action-btn:hover {
    background: #4caf50;
    color: white;
    transform: translateX(5px);
}

/* Impact Dashboard Section */
.impact-dashboard-section {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 25%, #4caf50 50%, #66bb6a 75%, #81c784 100%);
    position: relative;
    overflow: hidden;
}

.impact-dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23ffffff" stroke-width="2" stroke-opacity="0.1" fill="none"/></svg>');
    opacity: 0.1;
}

.impact-dashboard {
    position: relative;
    z-index: 2;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.dashboard-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.dashboard-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.dashboard-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
}

.dashboard-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dashboard-card:hover .dashboard-glow {
    opacity: 1;
}

/* Future Vision Section */
.future-vision-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.vision-content {
    padding: 2rem 0;
}

.vision-milestones {
    margin-top: 3rem;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.milestone-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 60px rgba(76, 175, 80, 0.2);
}

.milestone-year {
    font-size: 2rem;
    font-weight: 900;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    min-width: 100px;
    text-align: center;
}

.milestone-content h5 {
    color: #2d5a3d;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.milestone-content p {
    color: #666;
    margin: 0;
}

/* Vision Visual */
.vision-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
}

.vision-circle {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-center {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.4);
    z-index: 3;
    position: relative;
}

.vision-number {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Hide any unwanted text in future vision section */
.future-vision-section .display-1,
.future-vision-section h1:not(.display-4),
.future-vision-section > .container > .row > .col-lg-6:first-child > .vision-content > h1 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
}

/* Hide any large text that might be appearing before the h2 */
.future-vision-section .vision-content > *:not(.section-badge-advanced):not(.display-4):not(h2):not(p):not(.vision-milestones) {
    display: none !important;
}

/* Target the exact position where unwanted text appears */
.future-vision-section .vision-content::before,
.future-vision-section .vision-content > h1:first-of-type,
.future-vision-section .section-badge-advanced + h1,
.future-vision-section .section-badge-advanced + *:not(h2) {
    display: none !important;
    visibility: hidden !important;
    font-size: 0 !important;
    content: none !important;
}

/* Ensure vision number is properly displayed */
.vision-center .vision-number {
    display: block !important;
    font-size: 3rem !important;
    color: white !important;
}

.vision-label {
    font-size: 1rem;
    opacity: 0.9;
    text-align: center;
}

/* Force remove any unwanted large text in future vision section */
.future-vision-section .col-lg-6:first-child {
    overflow: hidden;
}

.future-vision-section .col-lg-6:first-child > * {
    position: relative;
}

/* Specifically target and hide anything that looks like large display text */
.future-vision-section h1:not(.display-4),
.future-vision-section .display-1,
.future-vision-section [class*="display-"]:not(.display-4) {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    font-size: 0 !important;
    line-height: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Advanced Coming Soon Popup Styles */
.coming-soon-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coming-soon-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.popup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.popup-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.coming-soon-popup.show .popup-content {
    transform: scale(1) translateY(0);
}

/* Animated Background Elements */
.popup-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-particles-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    animation: floatParticles 8s ease-in-out infinite;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShapes 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4caf50, #2196f3);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff9800, #e91e63);
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #9c27b0, #3f51b5);
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #00bcd4, #4caf50);
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
    background: #ff5722;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

/* Main Content */
.popup-main-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

/* Icon */
.popup-icon {
    margin-bottom: 1.5rem;
}

.icon-container {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #4caf50, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-container i {
    font-size: 2.5rem;
    color: white;
    animation: iconRotate 3s linear infinite;
}

.icon-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

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

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Title */
.popup-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.title-line-1 {
    display: block;
    color: #2e7d32;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-line-2 {
    display: block;
    background: linear-gradient(45deg, #4caf50, #2196f3, #ff9800);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease-in-out infinite, slideInRight 0.8s ease-out 0.4s both;
}

@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 gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtitle */
.popup-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.highlight-text {
    background: linear-gradient(45deg, #ff9800, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Description */
.popup-description {
    font-size: 1rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Features */
.popup-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.feature-item {
    background: rgba(76, 175, 80, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.feature-item i {
    color: #4caf50;
}

/* Actions */
.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.btn-notify-me {
    position: relative;
    background: linear-gradient(45deg, #4caf50, #2e7d32);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-notify-me:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.btn-notify-me .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-notify-me:hover .btn-glow {
    left: 100%;
}

.btn-contact {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border: 2px solid #4caf50;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-contact:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* Progress */
.popup-progress {
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #2196f3);
    border-radius: 4px;
    animation: progressAnimation 2s ease-out 1.6s both;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 75%; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .popup-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .popup-title {
        font-size: 2.5rem;
    }
    
    .popup-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .popup-actions {
        gap: 0.8rem;
    }
}

.vision-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vision-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: ringRotate 10s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(76, 175, 80, 0.3);
    animation-duration: 15s;
}

.ring-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-color: rgba(102, 187, 106, 0.2);
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: rgba(129, 199, 132, 0.1);
    animation-duration: 25s;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vision-features {
    position: absolute;
    width: 100%;
    height: 100%;
}

.vision-feature {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d5a3d;
    animation: featureFloat 6s ease-in-out infinite;
}

.vision-feature:nth-child(1) {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.vision-feature:nth-child(2) {
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.vision-feature:nth-child(3) {
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.vision-feature:nth-child(4) {
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 4.5s;
}

@keyframes featureFloat {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-15px) translateX(-50%); }
}

.vision-feature:nth-child(2),
.vision-feature:nth-child(4) {
    animation-name: featureFloatSide;
}

@keyframes featureFloatSide {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-15px); }
}

.vision-feature i {
    font-size: 1.5rem;
    color: #4caf50;
}

/* Revolutionary CTA Section */
.revolutionary-cta-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d8f5f 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    border-radius: 30px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

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

.btn-revolutionary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-revolutionary-cta.primary {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.4);
}

.btn-revolutionary-cta.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
}

.btn-revolutionary-cta:hover {
    transform: translateX(10px);
}

.btn-revolutionary-cta.primary:hover {
    background: linear-gradient(135deg, #388e3c, #4caf50);
    box-shadow: 0 20px 70px rgba(76, 175, 80, 0.5);
}

.btn-revolutionary-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 70px rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-revolutionary-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .foundation-name {
        font-size: 2.5rem;
    }
    
    .tagline-revolutionary {
        font-size: 1.2rem;
    }
    
    .hero-actions-advanced {
        flex-direction: column;
    }
    
    .btn-revolutionary {
        justify-content: center;
    }
    
    .achievement-badges-container {
        justify-content: center;
    }
    
    .impact-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-stats-advanced {
        display: none;
    }
    
    .environmental-info-cards {
        display: none;
    }
    
    .plantation-highlights {
        padding: 1.5rem;
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .vision-circle {
        width: 250px;
        height: 250px;
    }
    
    .vision-center {
        width: 150px;
        height: 150px;
    }
    
    .vision-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        margin-top: 2rem;
    }
    
    .milestone-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .env-card {
        max-width: 240px;
        padding: 1.2rem;
    }
    
    .env-title {
        font-size: 0.9rem;
    }
    
    .env-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .environmental-info-cards .env-card {
        position: relative;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .env-card.card-1,
    .env-card.card-2,
    .env-card.card-3,
    .env-card.card-4 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

/* New Statistics Grid Styles */
.impact-stats-grid {
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 195, 74, 0.4);
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-suffix {
    font-size: 1.5rem;
    color: #a5d6a7;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Secondary Stats */
.secondary-stats {
    margin-bottom: 2rem;
}

.secondary-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.secondary-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 195, 74, 0.3);
    transform: translateY(-2px);
}

.secondary-stat i {
    font-size: 1.2rem;
    color: #81c784;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-right: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Bottom Curve */
.hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
}

.hero-bottom-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Enhanced Floating Stats for Image */
.hero-visual .floating-stats .stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.2);
    animation: floatStats 6s ease-in-out infinite;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.hero-visual .floating-stats .stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.25);
    border-color: rgba(76, 175, 80, 0.4);
}

.hero-visual .floating-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 0.3rem;
    text-shadow: none;
}

.hero-visual .floating-stats .stat-label {
    font-size: 0.8rem;
    color: #4caf50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Visual Container */
.hero-visual .visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-visual .main-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 10px 40px rgba(46, 125, 50, 0.3),
        inset 0 0 0 3px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(1px);
}

.hero-visual .plantation-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.hero-visual .main-image:hover .plantation-main {
    transform: scale(1.05);
}

/* Founder Information Styles */
.founder-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.founder-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.founder-name {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Animation Improvements */
@keyframes floatStats {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
        opacity: 1; 
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .stat-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .secondary-stat {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-bottom-curve {
        height: 80px;
    }
    
    /* Mobile adjustments for floating stats */
    .hero-visual .floating-stats .stat-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0.5rem;
        display: inline-block;
        animation-delay: 0s !important;
    }
    
    .hero-visual .floating-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-visual .visual-container {
        max-width: 100%;
    }
    
    .hero-visual .plantation-main {
        height: 300px;
    }
    
    .founder-info {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .founder-label {
        font-size: 0.8rem;
    }
    
    .founder-name {
        font-size: 1rem;
    }
    
    /* Mobile adjustments for forest sections */
    .impact-dashboard-section-forest,
    .revolutionary-cta-section-forest {
        padding: 6rem 0;
        min-height: auto;
    }
    
    .impact-dashboard-section-forest .dashboard-card {
        min-height: auto;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .revolutionary-cta-section-forest .cta-container {
        padding: 2rem;
        min-height: auto;
        display: block;
    }
    
    .section-top-curve,
    .section-bottom-curve {
        height: 80px;
    }
}

/* Forest Background Sections */
.impact-dashboard-section-forest {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(46, 125, 50, 0.85) 25%, rgba(56, 142, 60, 0.8) 50%, rgba(76, 175, 80, 0.75) 75%, rgba(102, 187, 106, 0.7) 100%),
        url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080&q=80') center/cover;
    overflow: hidden;
    padding: 8rem 0;
    min-height: 600px;
}

.impact-dashboard-section-forest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.revolutionary-cta-section-forest {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(46, 125, 50, 0.85) 25%, rgba(56, 142, 60, 0.8) 50%, rgba(76, 175, 80, 0.75) 75%, rgba(102, 187, 106, 0.7) 100%),
        url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080&q=80') center/cover;
    overflow: hidden;
    padding: 8rem 0;
    min-height: 500px;
}

.revolutionary-cta-section-forest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(139, 195, 74, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Section Curves */
.section-top-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    transform: rotate(180deg);
}

.section-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
}

.section-top-curve svg,
.section-bottom-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Enhanced Content Z-index */
.impact-dashboard-section-forest .container,
.revolutionary-cta-section-forest .container {
    position: relative;
    z-index: 3;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.impact-dashboard-section-forest .text-center,
.revolutionary-cta-section-forest .text-center {
    margin-bottom: 4rem;
}

.impact-dashboard-section-forest h2,
.revolutionary-cta-section-forest h2 {
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Dashboard Cards Enhancement for Forest Background */
.impact-dashboard-section-forest .dashboard-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(46, 125, 50, 0.2);
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 220px;
}

.impact-dashboard-section-forest .dashboard-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
}

/* CTA Enhancement for Forest Background */
.revolutionary-cta-section-forest .cta-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 4rem;
    margin: 2rem 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(46, 125, 50, 0.2);
    min-height: 250px;
    display: flex;
    align-items: center;
}

.revolutionary-cta-section-forest .cta-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.revolutionary-cta-section-forest .cta-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
/* Animated Background */
.about-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.leaf-1 { left: 10%; top: 20%; animation-delay: 0s; }
.leaf-2 { left: 80%; top: 10%; animation-delay: 2s; }
.leaf-3 { left: 60%; top: 70%; animation-delay: 4s; }
.leaf-4 { left: 20%; top: 80%; animation-delay: 1s; }
.leaf-5 { left: 90%; top: 60%; animation-delay: 3s; }
.leaf-6 { left: 40%; top: 30%; animation-delay: 5s; }

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

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(102, 187, 106, 0.05) 0%, transparent 50%);
    animation: particleMove 12s ease-in-out infinite;
}

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

/* Hero Section */
.about-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #66bb6a 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(27, 94, 32, 0.8), rgba(102, 187, 106, 0.6));
}

.geometric-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(45deg, #81c784, #c8e6c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(27, 94, 32, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-card {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: -10%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: -30%;
    animation-delay: 2s;
}

.card-3 {
    bottom: -10%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-card i {
    font-size: 1.5rem;
    color: #2e7d32;
}

.floating-card span {
    font-weight: 600;
    color: #1b5e20;
    font-size: 0.9rem;
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    border-radius: 25px;
    margin-bottom: 1rem;
}

.section-badge span {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.team-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.team-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8f5e8;
}

.card-back {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.member-image {
    padding: 2rem 2rem 1rem;
}

.image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e8f5e8;
    transition: transform 0.3s ease;
}

.founder-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #e8f5e8;
}

.founder-avatar i {
    font-size: 3rem;
    color: white;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-icon i {
    font-size: 2rem;
    color: white;
}

.member-info {
    padding: 0 2rem 2rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.member-position {
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.member-badge span {
    color: #1b5e20;
    font-size: 0.8rem;
    font-weight: 600;
}

.member-details h4 {
    color: #81c784;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.member-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.achievement-item i {
    color: #81c784;
    font-size: 1.1rem;
}

.achievement-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Work Locations Section */
.work-locations-section {
    position: relative;
    background: #f8f9fa;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 195, 74, 0.03) 0%, transparent 50%);
    animation: mapBgMove 15s ease-in-out infinite;
}

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

.interactive-map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f5e8;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h3 {
    color: #1b5e20;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: #666;
    font-size: 0.9rem;
}

.map-visual {
    position: relative;
}

.map-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-marker {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-marker:hover {
    transform: scale(1.2);
}

.pune-marker { top: 60%; left: 45%; }
.mumbai-marker { top: 45%; left: 25%; }
.nashik-marker { top: 30%; left: 35%; }
.nagpur-marker { top: 40%; right: 20%; }
.aurangabad-marker { top: 50%; left: 50%; }

.marker-dot {
    width: 16px;
    height: 16px;
    background: #2e7d32;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.4);
    position: relative;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border: 2px solid #2e7d32;
    border-radius: 50%;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.marker-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e7d32;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marker-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #2e7d32;
}

.location-marker:hover .marker-label {
    opacity: 1;
}

.location-details {
    height: fit-content;
}

.location-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f5e8;
    margin-bottom: 2rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: none;
}

.location-card.active {
    opacity: 1;
    display: block;
    transform: translateY(0);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f5e8;
}

.card-header h4 {
    color: #1b5e20;
    font-weight: 700;
    margin: 0;
}

.card-header i {
    color: #2e7d32;
    margin-right: 0.5rem;
}

.location-badge {
    padding: 4px 12px;
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    border-radius: 15px;
    color: #1b5e20;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.work-types h5 {
    color: #1b5e20;
    font-weight: 700;
    margin-bottom: 1rem;
}

.work-type-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.work-type-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.work-type-item i {
    color: #2e7d32;
    font-size: 1.1rem;
    width: 20px;
}

.work-type-item span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Work Types Overview */
.work-types-overview {
    margin-top: 4rem;
}

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

.work-type-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.work-type-card:hover::before {
    transform: scaleX(1);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.work-type-card:hover .card-icon {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    transform: scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: #2e7d32;
    transition: color 0.3s ease;
}

.work-type-card:hover .card-icon i {
    color: white;
}

.work-type-card h4 {
    color: #1b5e20;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.work-type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border-radius: 25px;
    display: inline-block;
}

.card-stats span {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

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

.impact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(46, 125, 50, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.impact-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

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

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(10deg);
}

.impact-icon i {
    font-size: 2rem;
    color: white;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 0.5rem;
    counter-reset: num var(--num);
}

.impact-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.impact-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f5e8;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e8f5e8;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    color: #1b5e20;
    font-weight: 700;
    margin: 0;
    font-size: 1.8rem;
}

.card-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mission-points, .vision-goals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.point-item:hover {
    background: #e8f5e8;
    transform: translateX(10px);
}

.point-item i {
    color: #2e7d32;
    font-size: 1.2rem;
}

.point-item span {
    color: #333;
    font-weight: 600;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.goal-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

.goal-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 0.5rem;
}

.goal-label {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .work-types-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        display: none;
    }
    
    .location-marker {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Gallery Page Styles */
/* Gallery Grid */
.gallery-grid {
    position: relative;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: white;
    height: 300px;
}

.gallery-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding: 2rem;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.overlay-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

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

/* Gallery Modal Enhancements */
.gallery-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-modal-content img {
    max-height: 80vh;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-radius: 0 0 15px 15px;
}

/* Gallery Category Animations */
.gallery-card[data-category="pune"] {
    animation-delay: 0.1s;
}

.gallery-card[data-category="mumbai"] {
    animation-delay: 0.2s;
}

.gallery-card[data-category="nashik"] {
    animation-delay: 0.3s;
}

.gallery-card[data-category="rural"] {
    animation-delay: 0.4s;
}

/* Staggered Animation for Gallery Cards */
.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation-delay: 0.5s; }
.gallery-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Hover Effects */
.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.gallery-card:hover::before {
    transform: translateX(100%);
}

/* Location Badge Styles */
.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(46, 125, 50, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .location-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Tab Content Animations */
.tab-pane {
    animation: fadeInUp 0.5s ease-out;
}

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

/* Gallery Statistics Counter Animation */
.plantation-counter .counter-value {
    position: relative;
    overflow: hidden;
}

.plantation-counter .counter-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: shimmerCounter 2s ease-in-out;
}

@keyframes shimmerCounter {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Gallery Grid Masonry Effect */
.gallery-grid .row {
    display: flex;
    flex-wrap: wrap;
}

.gallery-grid .col-lg-4:nth-child(3n+1) .gallery-card {
    height: 320px;
}

.gallery-grid .col-lg-4:nth-child(3n+2) .gallery-card {
    height: 280px;
}

.gallery-grid .col-lg-4:nth-child(3n+3) .gallery-card {
    height: 300px;
}

/* Floating Animation for Gallery Cards */
@keyframes galleryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.gallery-card {
    animation: galleryFloat 6s ease-in-out infinite;
}

.gallery-card:nth-child(2n) {
    animation-delay: 3s;
}

/* Enhanced Process Cards for Gallery */
.process-card {
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 125, 50, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover::after {
    opacity: 1;
}

/* Gallery Navigation Enhancement */
.plantation-nav .nav-link {
    position: relative;
    overflow: hidden;
}

.plantation-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    transition: width 0.3s ease;
}

.plantation-nav .nav-link:hover::before,
.plantation-nav .nav-link.active::before {
    width: 100%;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .gallery-card {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .gallery-grid .col-lg-4:nth-child(3n+1) .gallery-card,
    .gallery-grid .col-lg-4:nth-child(3n+2) .gallery-card,
    .gallery-grid .col-lg-4:nth-child(3n+3) .gallery-card {
        height: 250px;
    }
    
    .overlay-content {
        padding: 1rem;
    }
    
    .overlay-content h5 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
    
    .gallery-modal-content img {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        height: 200px;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content h5 {
        font-size: 1rem;
    }
    
    .modal-info {
        padding: 1rem;
    }
}

/* Loading Animation for Images */
.gallery-image {
    position: relative;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}

.gallery-image img {
    position: relative;
    z-index: 2;
}

.gallery-image img.loaded + ::before {
    display: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Advanced Hover Effects */
.gallery-card {
    perspective: 1000px;
}

.gallery-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
}

/* Particle Effect Background */
.gallery-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(46, 125, 50, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 195, 74, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(102, 187, 106, 0.03) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Enhanced Mobile Responsive Styles - Comprehensive Fix */

/* Base Mobile Styles - Apply to all sections */
@media (max-width: 576px) {
    /* Global mobile fixes */
    body {
        overflow-x: hidden;
    }
    
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero sections mobile optimization */
    .plantation-hero-section,
    .about-hero-section,
    .modern-hero,
    .revolutionary-hero-section {
        min-height: 70vh !important;
        padding: 2rem 0 !important;
    }
    
    .plantation-hero-overlay,
    .hero-overlay,
    .gradient-overlay {
        padding: 1rem 0 !important;
    }
    
    /* Hero content mobile spacing */
    .hero-content,
    .hero-content-advanced {
        padding: 1rem 0 !important;
        text-align: center !important;
    }
    
    /* Hero titles mobile optimization */
    .plantation-hero-title,
    .hero-title,
    .hero-title-revolutionary,
    .foundation-name {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .tagline-revolutionary,
    .hero-title .tagline {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Hero descriptions mobile */
    .hero-description,
    .hero-description-advanced {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* Badges mobile */
    .plantation-badge,
    .hero-badge,
    .achievement-badge,
    .section-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Stats grids mobile */
    .hero-stats-grid,
    .impact-metrics-grid,
    .impact-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin: 1rem 0 !important;
    }
    
    .stat-item,
    .metric-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .stat-number,
    .metric-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label,
    .metric-label {
        font-size: 0.8rem !important;
    }
    
    /* Buttons mobile */
    .hero-buttons,
    .hero-actions-advanced,
    .cta-actions {
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-top: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-revolutionary,
    .btn-revolutionary-cta {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* Enhanced tablet styles */
@media (max-width: 768px) {
    /* Navigation mobile fixes */
    .navbar-nav {
        text-align: center !important;
        padding: 1rem 0 !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem !important;
        font-size: 1rem !important;
    }
    
    .navbar-collapse {
        margin-top: 1rem !important;
    }
    
    /* Process cards mobile */
    .process-timeline {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .process-card {
        margin-bottom: 1.5rem !important;
        padding: 1.5rem !important;
    }
    
    .process-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    .process-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    /* Tabs mobile */
    .plantation-nav,
    .animal-nav {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .plantation-nav .nav-link,
    .animal-nav .nav-link {
        width: 100% !important;
        text-align: center !important;
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Tab content mobile */
    .plantation-tab-content,
    .animal-tab-content {
        padding: 1.5rem 1rem !important;
    }
    
    /* Image containers mobile */
    .plantation-image-container,
    .animal-image-container {
        margin-bottom: 1.5rem !important;
    }
    
    /* Feature lists mobile */
    .plantation-feature-list,
    .animal-feature-list {
        padding-left: 0 !important;
    }
    
    .plantation-feature-list li,
    .animal-feature-list li {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    /* Goals section mobile */
    .goals-visual {
        margin-top: 2rem !important;
    }
    
    .goal-circle {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto !important;
    }
    
    .goal-number {
        font-size: 2rem !important;
    }
    
    .goal-label {
        font-size: 0.8rem !important;
    }
    
    .goal-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    /* Impact section mobile */
    .plantation-impact-section,
    .impact-section {
        padding: 3rem 0 !important;
    }
    
    .plantation-counter,
    .impact-counter {
        margin-bottom: 1.5rem !important;
    }
    
    .plantation-counter .counter-value,
    .counter-value {
        font-size: 2rem !important;
    }
    
    .plantation-counter .counter-label,
    .counter-label {
        font-size: 0.9rem !important;
    }
    
    /* CTA section mobile */
    .plantation-cta,
    .revolutionary-cta-section {
        padding: 2rem 0 !important;
    }
    
    .cta-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cta-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Team section mobile fixes */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .team-card {
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .member-name {
        font-size: 1.1rem !important;
    }
    
    .member-position {
        font-size: 0.9rem !important;
    }
}

/* Work locations mobile */
@media (max-width: 768px) {
    .interactive-map-container {
        padding: 1rem !important;
    }
    
    .map-visual {
        height: 300px !important;
    }
    
    .location-marker {
        width: 15px !important;
        height: 15px !important;
    }
    
    .marker-label {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .location-details {
        margin-top: 1.5rem !important;
    }
    
    .location-card {
        margin-bottom: 1rem !important;
        padding: 1rem !important;
    }
}

/* Work types grid mobile */
@media (max-width: 768px) {
    .work-types-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .work-type-card {
        padding: 1.5rem !important;
    }
    
    .card-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .work-type-card h4 {
        font-size: 1.1rem !important;
    }
    
    .work-type-card p {
        font-size: 0.9rem !important;
    }
}

/* Impact grid mobile */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .impact-card {
        padding: 1.5rem 1rem !important;
    }
    
    .impact-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .impact-number {
        font-size: 1.5rem !important;
    }
    
    .impact-label {
        font-size: 0.8rem !important;
    }
}

/* Mission vision mobile */
@media (max-width: 768px) {
    .mission-card,
    .vision-card {
        margin-bottom: 2rem !important;
        padding: 1.5rem !important;
    }
    
    .card-header h3 {
        font-size: 1.3rem !important;
    }
    
    .card-content p {
        font-size: 0.9rem !important;
    }
    
    .mission-points,
    .vision-goals {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .point-item,
    .goal-item {
        padding: 0.8rem !important;
    }
}

/* Gallery mobile fixes */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .gallery-card {
        height: 250px !important;
        margin-bottom: 1rem !important;
    }
    
    .overlay-content h5 {
        font-size: 1rem !important;
    }
    
    .overlay-content p {
        font-size: 0.8rem !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .plantation-hero-title,
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
    }
    
    .impact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        font-size: 0.85rem !important;
        padding: 0.7rem 1.2rem !important;
    }
    
    .process-card {
        padding: 1rem !important;
    }
    
    .goal-circle {
        width: 150px !important;
        height: 150px !important;
    }
    
    .goal-number {
        font-size: 1.5rem !important;
    }
}

/* Landscape mobile orientation */
@media (max-width: 896px) and (orientation: landscape) {
    .plantation-hero-section,
    .about-hero-section,
    .modern-hero {
        min-height: 90vh !important;
    }
    
    .hero-content {
        padding: 1rem 0 !important;
    }
    
    .plantation-hero-title,
    .hero-title {
        font-size: 2rem !important;
    }
}

/* Fix for floating elements on mobile */
@media (max-width: 768px) {
    .floating-stats-advanced,
    .environmental-info-cards,
    .floating-elements,
    .animated-particles {
        display: none !important;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .floating-cards {
        display: none !important;
    }
}

/* Ensure proper spacing for all sections */
@media (max-width: 768px) {
    section {
        padding: 2rem 0 !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
}

/* Volunteer Registration Form Styles */
.volunteer-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.volunteer-form-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.volunteer-form-popup .popup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.volunteer-form-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 10001;
}

.volunteer-form-popup.show .volunteer-form-content {
    transform: scale(1) translateY(0);
}

.volunteer-form-popup .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #666;
}

.volunteer-form-popup .popup-close:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.foundation-logo .logo-placeholder {
    transition: transform 0.3s ease;
}

.foundation-logo .logo-placeholder:hover {
    transform: scale(1.1);
}

.foundation-details {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.foundation-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.volunteer-form-content .form-label {
    color: #2E8B57;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.volunteer-form-content .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    pointer-events: all;
    cursor: text;
    background: white;
    position: relative;
    z-index: 1;
}

.volunteer-form-content .form-control:focus {
    border-color: #2E8B57;
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
    outline: none;
}

.volunteer-form-content .form-check-input {
    margin-right: 8px;
    margin-top: 0.25rem;
    pointer-events: all;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.volunteer-form-content .form-check-input:checked {
    background-color: #2E8B57;
    border-color: #2E8B57;
}

.volunteer-form-content .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
    border-color: #2E8B57;
}

.volunteer-form-content .form-check-label {
    color: #495057;
    cursor: pointer;
    font-weight: 500;
    pointer-events: all;
    user-select: none;
    position: relative;
    z-index: 1;
}

.volunteer-form-content .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.volunteer-form-content .was-validated .form-control:invalid {
    border-color: #dc3545;
}

.volunteer-form-content .was-validated .form-control:valid {
    border-color: #28a745;
}

.volunteer-form-content .was-validated .form-check-input:invalid ~ .form-check-label {
    color: #dc3545;
}

.volunteer-form-content .was-validated .form-check-input:valid ~ .form-check-label {
    color: #28a745;
}

.payment-details {
    background: #f8f9fa !important;
    border: 1px solid #28a745;
    border-radius: 10px;
    position: relative;
}

.payment-details::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.1;
}

.payment-details h6 {
    color: #28a745;
    font-weight: 700;
}

.payment-details p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.volunteer-form-content .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.volunteer-form-content .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.volunteer-form-content .btn-success:disabled {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    opacity: 0.8;
    transform: none;
}

.form-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.form-footer p {
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .volunteer-form-popup .popup-container {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .volunteer-form-content {
        padding: 20px;
        border-radius: 15px;
        max-height: 95vh;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.25rem;
    }
    
    .foundation-logo .logo-placeholder {
        width: 60px !important;
        height: 60px !important;
    }
    
    .foundation-logo .logo-placeholder i {
        font-size: 1.5rem !important;
    }
    
    .volunteer-form-content .form-check {
        margin-bottom: 0.5rem;
    }
    
    .volunteer-form-content .btn-success {
        font-size: 14px;
        padding: 12px 30px;
    }
    
    .foundation-details .row {
        text-align: center;
    }
    
    .foundation-details .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .payment-details .col-md-6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .volunteer-form-content {
        padding: 15px;
        margin: 5px;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .volunteer-form-content .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .volunteer-form-content .form-label {
        font-size: 14px;
    }
    
    .volunteer-form-content .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .volunteer-form-content .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
}

/* Fix form element interactions */
.volunteer-form-content label {
    pointer-events: all;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.volunteer-form-content .btn {
    pointer-events: all;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.volunteer-form-content textarea {
    pointer-events: all;
    cursor: text;
    resize: vertical;
    position: relative;
    z-index: 1;
}

.volunteer-form-content .form-check {
    pointer-events: all;
    position: relative;
    z-index: 1;
}

/* Ensure background elements don't interfere */
.volunteer-form-popup .popup-bg-animation {
    pointer-events: none;
    z-index: -1;
}

/* Animation for floating particles in popup */
.volunteer-form-popup .floating-particles-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

/* Join Us Community Form Styles */
.join-us-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.join-us-form-popup.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.join-us-form-popup .popup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    pointer-events: all;
}

.join-us-form-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 10001;
}

.join-us-form-popup.show .join-us-form-content {
    transform: scale(1) translateY(0);
}

.join-us-form-popup .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    color: #666;
    pointer-events: all;
}

.join-us-form-popup .popup-close:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

.join-us-form-content .popup-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.join-us-form-content .popup-title {
    color: #2E8B57;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.join-us-form-content .popup-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.join-us-form-content .foundation-details {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
    border-left: 5px solid #28a745;
    font-size: 14px;
}

.join-us-form-content .foundation-details p {
    margin-bottom: 0.5rem;
    color: #495057;
}

.join-us-form-content .foundation-details strong {
    color: #2E8B57;
}

/* Join Us Form Elements */
.join-us-form-content .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    pointer-events: all;
    cursor: text;
    background: white;
    position: relative;
    z-index: 1;
}

.join-us-form-content .form-control:focus {
    border-color: #2E8B57;
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
    outline: none;
    background: white;
}

.join-us-form-content .form-control:hover {
    border-color: #2E8B57;
}

.join-us-form-content .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.join-us-form-content .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.join-us-form-content .form-check {
    padding-left: 1.5em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.join-us-form-content .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.125em;
    margin-left: -1.5em;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 2;
}

.join-us-form-content .form-check-input:checked {
    background-color: #2E8B57;
    border-color: #2E8B57;
}

.join-us-form-content .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
    border-color: #2E8B57;
}

.join-us-form-content .form-check-input:hover {
    border-color: #2E8B57;
}

.join-us-form-content .form-check-label {
    padding-left: 0.5em;
    cursor: pointer;
    user-select: none;
    pointer-events: all;
    position: relative;
    z-index: 1;
    color: #495057;
    font-weight: 500;
}

.join-us-form-content .form-check-label:hover {
    color: #2E8B57;
}

.join-us-form-content label {
    pointer-events: all;
    cursor: pointer;
    position: relative;
    z-index: 1;
    color: #2E8B57;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.join-us-form-content label:hover {
    color: #236c47;
}

.join-us-form-content textarea {
    pointer-events: all;
    cursor: text;
    resize: vertical;
    position: relative;
    z-index: 1;
}

.join-us-form-content .btn {
    pointer-events: all;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.join-us-form-content .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 1;
    padding: 12px 30px;
}

.join-us-form-content .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.join-us-form-content .btn-success:active {
    transform: translateY(0);
}

.join-us-form-content .contact-info {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #d4edda;
}

.join-us-form-content .contact-info p {
    margin-bottom: 0.25rem;
    color: #495057;
    font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .join-us-form-content {
        padding: 20px;
        margin: 10px;
        max-height: 95vh;
    }
    
    .join-us-form-content .popup-title {
        font-size: 1.5rem;
    }
    
    .join-us-form-content .popup-subtitle {
        font-size: 1rem;
    }
    
    .join-us-form-content .popup-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .join-us-form-content .form-control,
    .join-us-form-content .form-check-input,
    .join-us-form-content .btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .join-us-form-content .form-check {
        padding: 8px 0;
    }
    
    .join-us-form-content .form-check-input {
        width: 1.5em;
        height: 1.5em;
    }
    
    .join-us-form-content .form-check-label {
        padding-left: 0.75em;
        font-size: 16px;
        line-height: 1.5;
    }
}

.volunteer-form-popup .floating-particles-popup::before,
.volunteer-form-popup .floating-particles-popup::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(46, 139, 87, 0.3);
    border-radius: 50%;
    animation: floatParticles 8s infinite ease-in-out;
}

.volunteer-form-popup .floating-particles-popup::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.volunteer-form-popup .floating-particles-popup::after {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}

/* Smooth scrollbar for form content */
.volunteer-form-content::-webkit-scrollbar {
    width: 6px;
}

.volunteer-form-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.volunteer-form-content::-webkit-scrollbar-thumb {
    background: #2E8B57;
    border-radius: 10px;
}

.volunteer-form-content::-webkit-scrollbar-thumb:hover {
    background: #236c47;
}

/* Enhanced validation styles for volunteer form */
.volunteer-form-content .was-validated .form-check-input:invalid ~ .form-check-label,
.volunteer-form-content .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.volunteer-form-content .was-validated .form-check-input:valid ~ .form-check-label,
.volunteer-form-content .form-check-input.is-valid ~ .form-check-label {
    color: #28a745;
}

.volunteer-form-content .invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.volunteer-form-content .was-validated .invalid-feedback,
.volunteer-form-content .invalid-feedback[style*="block"] {
    display: block !important;
}

.volunteer-form-content .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.volunteer-form-content .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.volunteer-form-content .form-check-input.is-invalid {
    border-color: #dc3545;
}

.volunteer-form-content .form-check-input.is-valid {
    border-color: #28a745;
}

/* Loading spinner for submit button */
.volunteer-form-content .btn-success .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Better mobile input handling */
.volunteer-form-content input[type="tel"] {
    font-family: monospace;
    letter-spacing: 1px;
}

/* Improved radio button and checkbox styling */
.volunteer-form-content .form-check {
    padding-left: 1.5em;
    margin-bottom: 0.5rem;
}

.volunteer-form-content .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.125em;
    margin-left: -1.5em;
}

.volunteer-form-content .form-check-label {
    padding-left: 0.5em;
    cursor: pointer;
    user-select: none;
}

/* Enhanced focus states */
.volunteer-form-content .form-control:focus,
.volunteer-form-content .form-check-input:focus {
    outline: none;
    border-color: #2E8B57;
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

/* Smooth transitions for dynamic fields */
.volunteer-form-content input[style*="display: none"],
.volunteer-form-content input[style*="display: block"] {
    transition: all 0.3s ease;
}

/* Partners Section Styles */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(46, 139, 87, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(60, 179, 113, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s linear infinite;
    z-index: 0;
}

@keyframes backgroundFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -30px) rotate(360deg); }
}

.partners-section .container {
    position: relative;
    z-index: 1;
}

.partner-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(46, 139, 87, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.05), transparent);
    transition: left 0.5s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 139, 87, 0.15);
    border-color: rgba(46, 139, 87, 0.3);
}

.partner-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
    filter: grayscale(20%) brightness(1.1);
    padding: 20px;
}

.partner-card:hover .partner-image {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.2);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.9), rgba(60, 179, 113, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-info {
    transform: translateY(0);
}

.partner-info h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partner-info p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Partner section title and description enhancement */
.partners-section .section-badge-advanced {
    display: inline-block;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.partners-section .section-badge-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.partners-section .section-badge-advanced:hover::before {
    left: 100%;
}

/* Responsive design for partner section */
@media (max-width: 991px) {
    .partner-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .partner-image-container {
        height: 180px;
    }
    
    .partner-info h5 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partner-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .partner-image-container {
        height: 160px;
        margin-bottom: 1rem;
    }
    
    .partner-info h5 {
        font-size: 1.1rem;
    }
    
    .partner-info p {
        font-size: 0.9rem;
    }
    
    .partners-section .display-5 {
        font-size: 2rem;
    }
    
    .partners-section .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .partner-card {
        padding: 1rem;
    }
    
    .partner-image-container {
        height: 140px;
    }
    
    .partners-section .display-5 {
        font-size: 1.8rem;
    }
}

/* Animation for partner cards on scroll */
.partner-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Enhanced button styling for partner section */
.partners-section .btn-success {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.partners-section .btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.partners-section .btn-success:hover::before {
    left: 100%;
}

.partners-section .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.4);
    background: linear-gradient(135deg, #3CB371, #2E8B57);
}

/* Mobile App Coming Soon Section */
.mobile-app-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.03) 0%, transparent 70%);
    animation: appBgFloat 25s linear infinite;
    z-index: 0;
}

@keyframes appBgFloat {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.mobile-app-section .container {
    position: relative;
    z-index: 1;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.app-badge .badge-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    animation: phoneWiggle 1.5s ease-in-out infinite;
}

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

@keyframes phoneWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.app-features {
    margin: 2rem 0;
}

.app-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #2E8B57;
}

.app-features .feature-item:hover {
    background: rgba(46, 139, 87, 0.1);
    transform: translateX(10px);
}

.app-features .feature-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.app-features .feature-item span {
    font-weight: 500;
    color: #333;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-store-btn img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-store-btn:hover img {
    transform: scale(1.05);
}

.app-notify {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Phone Mockup Styles */
.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 
        0 0 0 3px #333,
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #444;
    border-radius: 3px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #444;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    margin-bottom: 1rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.app-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.app-title h5 {
    margin: 0;
    font-size: 1rem;
    color: #2E8B57;
    font-weight: 600;
}

.impact-card {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.impact-card h6 {
    margin: 0 0 0.8rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.impact-stats {
    display: flex;
    gap: 1rem;
}

.impact-stats .stat {
    text-align: center;
    flex: 1;
}

.impact-stats .number {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
}

.impact-stats .label {
    font-size: 0.7rem;
    opacity: 0.8;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-btn {
    border: none;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-btn.primary {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
}

.app-btn.secondary {
    background: rgba(46, 139, 87, 0.1);
    color: #2E8B57;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.2; }
}

/* Floating Features */
.floating-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-feature {
    position: absolute;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    border: 1px solid rgba(46, 139, 87, 0.1);
    animation: featureFloat 4s ease-in-out infinite;
}

.floating-feature i {
    color: #2E8B57;
    font-size: 1rem;
}

.feature-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.feature-2 {
    top: 45%;
    left: -15%;
    animation-delay: 1s;
}

.feature-3 {
    bottom: 25%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes featureFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* App Notification Popup */
.app-notify-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.app-notify-popup.show {
    opacity: 1;
    visibility: visible;
}

.app-notify-popup .popup-container {
    max-width: 500px;
    width: 90%;
    margin: 2rem;
}

.app-notify-popup .popup-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.app-notify-popup.show .popup-content {
    transform: scale(1);
}

.app-notify-popup .popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-notify-popup .popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.app-notify-popup .popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.app-notify-popup h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-weight: 600;
}

.app-notify-popup p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notify-form .form-group {
    margin-bottom: 1rem;
}

.notify-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.notify-form .form-control:focus {
    border-color: #2E8B57;
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.popup-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.popup-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design for Mobile App Section */
@media (max-width: 991px) {
    .mobile-app-section {
        padding: 3rem 0;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .floating-feature {
        font-size: 0.7rem;
        padding: 0.6rem 0.8rem;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
    
    .app-features .feature-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 767px) {
    .mobile-app-section {
        text-align: center;
        padding: 2.5rem 0;
    }
    
    .mobile-app-section .row {
        flex-direction: column-reverse;
    }
    
    .mobile-app-section .col-lg-6:first-child {
        margin-top: 2rem;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
        padding: 12px;
        margin: 0 auto;
    }
    
    .floating-features {
        display: none;
    }
    
    .app-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .app-features {
        margin: 1.5rem 0;
    }
    
    .app-features .feature-item {
        justify-content: flex-start;
        text-align: left;
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        border-left: 3px solid #2E8B57;
    }
    
    .app-features .feature-item i {
        margin-right: 0.8rem;
        font-size: 1.1rem;
    }
    
    .app-store-buttons {
        justify-content: center;
        gap: 0.8rem;
        margin: 1.5rem 0;
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-btn {
        width: 200px;
        text-align: center;
    }
    
    .app-store-btn img {
        height: 45px;
        width: auto;
    }
    
    .app-notify {
        margin-top: 1.5rem;
        padding: 1.2rem;
        text-align: center;
    }
    
    .app-notify p {
        margin-bottom: 1rem;
    }
    
    .mobile-app-section .display-5 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .mobile-app-section .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .app-notify-popup .popup-content {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .app-notify-popup .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .mobile-app-section {
        padding: 2rem 0;
    }
    
    .phone-frame {
        width: 160px;
        height: 320px;
        padding: 8px;
    }
    
    .app-preview {
        padding: 0.6rem;
    }
    
    .app-header {
        margin-bottom: 0.8rem;
    }
    
    .status-bar {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .app-title h5 {
        font-size: 0.8rem;
    }
    
    .app-icon {
        width: 20px;
        height: 20px;
    }
    
    .impact-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .impact-card h6 {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .impact-stats {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .impact-stats .stat {
        text-align: center;
    }
    
    .impact-stats .number {
        font-size: 1rem;
    }
    
    .impact-stats .label {
        font-size: 0.6rem;
    }
    
    .action-buttons {
        gap: 0.6rem;
    }
    
    .app-btn {
        padding: 0.6rem;
        font-size: 0.75rem;
    }
    
    .mobile-app-section .display-5 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .mobile-app-section .lead {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .app-features .feature-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .app-features .feature-item i {
        margin-right: 0.6rem;
        font-size: 1rem;
    }
    
    .app-store-buttons {
        gap: 0.6rem;
        margin: 1.2rem 0;
    }
    
    .app-store-btn {
        width: 180px;
    }
    
    .app-store-btn img {
        height: 40px;
    }
    
    .app-notify {
        padding: 1rem;
        margin-top: 1.2rem;
    }
    
    .app-notify p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .app-notify .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .app-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .app-badge .badge-icon {
        font-size: 1rem;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 480px) {
    .mobile-app-section {
        padding: 1.5rem 0;
    }
    
    .mobile-app-section .container {
        padding: 0 0.5rem;
    }
    
    .phone-frame {
        width: 140px;
        height: 280px;
        padding: 6px;
    }
    
    .app-content {
        padding: 0 0.5rem;
    }
    
    .mobile-app-section .display-5 {
        font-size: 1.6rem;
    }
    
    .app-features .feature-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .app-store-btn {
        width: 160px;
    }
    
    .app-store-btn img {
        height: 35px;
    }
}

/* Landscape Mobile Fix */
@media (max-width: 896px) and (orientation: landscape) and (max-height: 500px) {
    .mobile-app-section {
        padding: 1.5rem 0;
    }
    
    .mobile-app-section .row {
        flex-direction: row;
        align-items: center;
    }
    
    .mobile-app-section .col-lg-6:first-child {
        margin-top: 0;
    }
    
    .phone-frame {
        width: 140px;
        height: 280px;
    }
    
    .app-features {
        margin: 1rem 0;
    }
    
    .app-features .feature-item {
        margin-bottom: 0.5rem;
        padding: 0.5rem;
    }
    
    .mobile-app-section .display-5 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .mobile-app-section .lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}