/* About Section Styles */
.about-section {
    padding: 100px 0 150px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

.about-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-view-more {
    display: inline-block;
    background-color: #0b1a1a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-more:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Image Column */
.about-img-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Bar */
.stats-bar {
    position: absolute;
    bottom: -60px;
    /* Overlap effect */
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background-color: #0b1a1a;
    /* Dark bg */
    border-radius: 12px;
    padding: 35px 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
    color: #fff;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-suffix {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* Decorative Lime Star */
.deco-star {
    position: absolute;
    color: var(--primary-color);
    font-size: 60px;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

.deco-star.left {
    bottom: -60px;
    left: 180px;
}

.deco-star.right {
    top: 50px;
    right: -20px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 33px 0;
    }

    .stats-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 90%;
        margin-top: 40px;
        flex-direction: column;
        gap: 30px;
    }

    .about-img-wrapper {
        margin-top: 50px;
    }
}