/* ========================================
   ATCSOL - Company Overview Stylesheet
   ======================================== */

.company-section {
    background: #f6f4f4;
    padding: 0;
    margin-top: 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.company-image {
    position: relative;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: kenburns 20s ease-out infinite alternate;
}

.company-content {
    background: #000000;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.company-content h2 {
    font-family: "After", serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.company-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #8b94ff;
    margin-bottom: 18px;
    line-height: 1.5;
}

.company-description {
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #4950bc;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-number i {
    font-size: 48px;
}

.stat-label {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.stat-description {
    font-family: "Gotham", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .company-image {
        min-height: 300px;
        order: 1;
    }

    .company-content {
        padding: 50px 30px;
        order: 2;
    }

    .company-content h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .company-subtitle {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .company-description {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 44px;
    }

    .stat-number i {
        font-size: 40px;
    }

    .stat-label {
        font-size: 20px;
    }

    .stat-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .company-image {
        min-height: 250px;
    }

    .company-content {
        padding: 40px 20px;
    }

    .company-content h2 {
        font-size: 23px;
    }

    .company-subtitle {
        font-size: 16px;
    }

    .company-description {
        font-size: 14px;
    }

    .stat-number {
        font-size: 38px;
    }

    .stat-number i {
        font-size: 36px;
    }
}
