﻿.aboutt-section {
    height: auto; /* allow content to determine height */
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}
.stat-box {
    background-color: #111;
    color: white;
    padding: 30px 20px;
    border-radius: 16px;
    width: 220px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    }

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #00ff00;
    animation: pulse 1.5s infinite ease-in-out;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #aaa;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}



@media (max-width: 992px) {
    .stat-box {
        width: 200px;
        padding: 25px 18px;
    }

    .stat-icon {
        font-size: 40px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .aboutt-section {
        padding-top: 60px;
    }

    .stat-box {
        width: 180px;
        padding: 20px 16px;
    }

    .stat-icon {
        font-size: 36px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .aboutt-section {
        padding-top: 140px; /* more space on small screens */
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }

    .stat-icon {
        font-size: 32px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 13px;
    }
}