/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ============================
   MANUFACTURING HERO SECTION
============================ */
.manufacturing-hero {
    width: 100%;
    height: 90vh;
    background: url('./Assets/Manufacturing/Hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.manu-hero-text-box {
    position: relative;
    background: rgba(187, 187, 187, 0.85);
    display: inline-block;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 700px;
}

.manu-hero-text-box h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0657A3;
    margin-bottom: 15px;
}

.manu-hero-text-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
}

/* ========= MOBILE HERO ========= */
@media (max-width: 600px) {

    .manufacturing-hero {
        height: auto;
        padding: 40px 20px;
        text-align: left;
    }

    .manu-hero-text-box {
        max-width: 100%;
        padding: 25px 20px;
        text-align: left;
    }

    .manu-hero-text-box h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .manu-hero-text-box p {
        font-size: 16px;
    }
}

/* ============================
   MANUFACTURING INNOVATION SECTION
============================ */
.manufacturing-innovation-section {
    padding: 60px 20px;
    background-color: #f4f7fb;
}

.manu-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.manu-content-left {
    flex: 1;
    min-width: 300px;
}

.manufacturing-innovation-section h2 {
    font-size: 2rem;
    color: #0657A3;
    margin-bottom: 20px;
}

.manufacturing-innovation-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.manu-benefits-list {
    list-style-type: disc;
    padding-left: 20px;
}

.manu-benefits-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Right Image */
.manu-image-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.manu-image-right img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .manu-container {
        flex-direction: column-reverse;
    }

    .manufacturing-innovation-section h2 {
        font-size: 2rem;
    }
}

/* ============================
   MANUFACTURING SOLUTIONS SECTION
============================ */
.manufacturing-solutions-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 50px;
    background: #E8F7FB;
}

/* Left */
.manu-left-side {
    width: 45%;
}

.manu-left-side h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.manu-left-side p {
    font-size: 18px;
    line-height: 26px;
    color: #333;
    margin-bottom: 40px;
}

/* Illustration */
.manu-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manu-bg-shape {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #d3f0ff;
    border-radius: 50% 40% 60% 50%;
    top: 20px;
    left: 0;
    right: 25;
    margin: auto;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.manu-illustration img {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}

/* Right Grid */
.manu-right-grid {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.manu-solution-box img {
    width: 45px;
    margin-bottom: 10px;
}

.manu-solution-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #003366;
}

.manu-solution-box p {
    color: #444;
    line-height: 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .manufacturing-solutions-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .manu-left-side,
    .manu-right-grid {
        width: 100%;
    }

    .manu-right-grid {
        grid-template-columns: 1fr;
    }

    .manu-bg-shape {
        width: 260px;
        height: 260px;
        top: 10px;
    }

    .manu-illustration {
        justify-content: flex-start;
    }

    .manu-illustration img {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .manu-bg-shape {
        width: 220px;
        height: 220px;
        top: 0;
    }

    .manu-illustration img {
        max-width: 240px;
    }
}

/* ============================
   MANUFACTURING MARKETING SECTION
============================ */
.manufacturing-marketing {
    padding: 60px 20px;
    background: #ffffff;
}

.manu-marketing-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.manu-marketing-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0657A3;
}

.manu-marketing-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.manu-marketing-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.manu-marketing-item {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #f9fbff;
}

.manu-marketing-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0657A3;
}

.manu-marketing-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
    .manu-marketing-container {
        text-align: left;
    }

    .manu-marketing-heading {
        font-size: 24px;
    }

    .manu-marketing-desc {
        font-size: 15px;
    }

    .manu-marketing-points {
        grid-template-columns: 1fr;
    }
}
