/* Engineering Solutions Banner Section */
.engineering-solutions-banner {
    background-color: #1a1a1a;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    margin-bottom: -1px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;

    position: relative;
    z-index: 2;
    gap: 120px;
}

/* Left Content */
.banner-content {
    flex: 1;
    max-width: 650px;
    margin-left: 50px;
}

.banner-title {
    font-size: 40px;
    font-weight: 700 !important;
    color: #ffffff;
    margin-bottom: 16px !important;
    line-height: 1.3;
}

.banner-description {
    font-size: 13px;
    color: #b8b8b8;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Right Content */
.banner-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.contact-btn {
    background: #ff5773;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.contact-btn:hover {
    transform: translateY(-1px);
    background: #ff4560;
    box-shadow: 0 2px 8px rgba(255, 69, 96, 0.25);
}

/* Background Illustration */
.banner-illustration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 230px;
    background-image: url('img/bg-2.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;

    pointer-events: none;
    z-index: 1;
}



/* Responsive Design */
@media (min-width: 1440px) and (max-width: 1920px) {
    .banner-content {
        margin-left: 0;
    }

    .client-card img {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) {
    .banner-container {
        padding: 0 40px;
    }

    .banner-illustration {
        width: 350px;
    }
}

@media (max-width: 992px) {
    .engineering-solutions-banner {
        padding: 30px 0;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-right {
        flex-direction: column;
        gap: 20px;
    }

    .banner-illustration {
        width: 100%;
        height: 200px;
        top: auto;
        bottom: 0;
        transform: none;
        opacity: 0.08;
    }
}

@media (max-width: 768px) {
    .engineering-solutions-banner {
        padding: 20px 0;
    }

    .banner-container {
        padding: 0 30px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-description {
        font-size: 0.95rem;
    }

    .contact-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.75rem;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}