/* 3D Circular Forest Cards */
.forest-overview-section {
    background: linear-gradient(165deg, rgba(27, 94, 32, 0.95) 0%, rgba(51, 105, 30, 0.9) 100%);
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 5px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    padding: 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
    margin: 0 12px 50px 12px;
}

/* 3D depth background pattern */
.forest-overview-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%233e6e4c' fill-opacity='0.08' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    transform: translateZ(-10px);
}

.forest-section-title {
    color: #e3ffe0;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 8px rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    transform: translateZ(5px);
}

.forest-section-title::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%234caf50' d='M12,2L4.5,20.29L5.21,21L12,18L18.79,21L19.5,20.29L12,2Z'%3E%3C/path%3E%3C/svg%3E");
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

/* 3D circular metric cards */
.circular-metric-card {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    background: radial-gradient(circle at 30% 30%, rgba(38, 87, 45, 0.9), rgba(51, 78, 41, 0.9));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3),
                0 8px 12px rgba(0, 0, 0, 0.2),
                inset 0 2px 2px rgba(255, 255, 255, 0.2),
                inset 0 -2px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(10deg);
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin: 0 auto 15px auto;
}

.circular-metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='%238bc34a' fill-opacity='0.08' d='M30 20h-5v5h5v-5zm0 10h-5v5h5v-5zm0 10h-5v5h5v-5zm10-20h-5v5h5v-5zm0 10h-5v5h5v-5zm0 10h-5v5h5v-5zm10-20h-5v5h5v-5zm0 10h-5v5h5v-5zm0 10h-5v5h5v-5z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    transform: translateZ(-5px);
}

.circular-metric-card:hover {
    transform: translateY(-8px) translateZ(10px) rotateX(0deg);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3), 
                0 12px 16px rgba(0, 0, 0, 0.2),
                inset 0 2px 3px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.4);
}

/* 3D circular icon container */
.circular-icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 25% 25%, rgba(27, 94, 32, 0.8), rgba(27, 94, 32, 0.3));
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 2px rgba(255, 255, 255, 0.3),
                inset 0 -1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 195, 74, 0.2);
    transform-style: preserve-3d;
    transform: translateZ(10px);
    margin-bottom: 10px;
    z-index: 1;
}

.circular-metric-card:hover .circular-icon-container {
    transform: translateZ(20px) scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25),
                inset 0 1px 3px rgba(255, 255, 255, 0.4),
                inset 0 -1px 3px rgba(0, 0, 0, 0.4);
}

.circular-metric-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
    transform-style: preserve-3d;
    transform: translateZ(5px);
}

/* 3D Value and label display */
.circular-metric-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(76, 175, 80, 0.3);
    transform: translateZ(15px);
    line-height: 1;
}

.circular-metric-label {
    color: #e8f5e9;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transform: translateZ(8px);
    line-height: 1;
}

/* 3D ring effects on hover */
.circular-metric-card::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateZ(-2px);
}

.circular-metric-card:hover::after {
    opacity: 1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translateZ(-2px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateZ(-2px) scale(1.08);
        opacity: 0.1;
    }
    100% {
        transform: translateZ(-2px) scale(1);
        opacity: 0.3;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .circular-metric-card {
        width: 120px;
        height: 120px;
    }
    
    .circular-metric-value {
        font-size: 1.4rem;
    }
    
    .circular-metric-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .forest-overview-section {
        padding: 20px;
    }
    
    .forest-section-title {
        font-size: 1.5rem;
    }
    
    .circular-metric-card {
        width: 110px;
        height: 110px;
        margin-bottom: 15px;
    }
    
    .circular-icon-container {
        width: 35px;
        height: 35px;
    }
    
    .circular-metric-icon {
        width: 24px;
        height: 24px;
    }
    
    .circular-metric-value {
        font-size: 1.3rem;
        margin: 5px 0 2px;
    }
    
    .circular-metric-label {
        font-size: 0.65rem;
    }
}