﻿.company-section {
    padding: 80px 5%;
    background: #f8f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    gap: 40px;
}

/* Left Content */
.company-content {
    flex: 1;
    min-width: 320px;
}

    .company-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #1a3c6e;
        animation: fadeInLeft 1s ease-in-out;
    }

    .company-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #444;
    }

    .company-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .company-content ul li {
            font-size: 1rem;
            margin-bottom: 12px;
            color: #222;
            position: relative;
            padding-left: 28px;
        }

            .company-content ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                color: #28a745;
                font-weight: bold;
            }

/* Right Side Image */
.company-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

    .company-image img {
        width: 100%;
        height: auto;
        max-width: 700px; /* HD effect */
        border-radius: 20px;
        box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
        animation: zoomIn 1.3s ease-in-out;
        object-fit: cover;
    }

/* Animations */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .company-container {
        flex-direction: column;
        text-align: center;
    }

    .company-content {
        order: 2;
    }

    .company-image {
        order: 1;
    }

        .company-image img {
            max-width: 90%;
            height: auto;
        }
}
