* {
    margin: 0;
    padding: 0;
}

/* Industries Modern */
        .industries-section-modern {
            padding: 50px 0 0 0;
            position: relative;
            background-image: url(../../assets/image/Industries-background1.png);
            background-size: cover;
            background-position: center;
        }

        .relative-container {
            position: relative;
        }

        .industries-network {
            position: relative;
            padding: 0pc 0 15pc;
        }

        .industries-network-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px 30px;
            position: relative;
            z-index: 2;
        }

        .industry-card-modern {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            height: 200px;
            box-shadow: var(--shadow-md);
            border: 5px solid rgb(255, 255, 255);
            background-color: #04122d;
        }

        .industry-card-modern:nth-child(1) {
            background-image: url(../../assets/image/Industries-1.png);
        }

        .industry-card-modern:nth-child(2) {
            background-image: url(../../assets/image/Industries-2.png);
        }

        .industry-card-modern:nth-child(3) {
            background-image: url(../../assets/image/Industries-3.png);
        }

        .industry-card-modern:nth-child(4) {
            background-image: url(../../assets/image/Industries-4.png);
        }

        .industry-card-modern:nth-child(5) {
            background-image: url(../../assets/image/Industries-5.png);
        }

        .industry-card-modern:nth-child(6) {
            background-image: url(../../assets/image/Industries-6.png);
        }

        .industry-card-modern:nth-child(7) {
            background-image: url(../../assets/image/Industries-7.png);
        }

        .industry-card-modern:nth-child(8) {
            background-image: url(../../assets/image/Industries-8.png);
        }

        .industry-card-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        /* Industries Responsive */
        @media (max-width: 1200px) {
            .industries-network-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .industries-network-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .industries-network-grid {
                grid-template-columns: 1fr;
            }
            
            .industry-card-modern {
                height: 180px;
            }
        }

/* CTA Banner Section */
.elearning-cta-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.cta-banner {
    background-color: #11203d; /* Dark navy */
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Add the subtle dot pattern on the left using a pseudo-element */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 50%;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0;
    opacity: 0.08;
    pointer-events: none;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 5.5rem;
    color: rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
}

.cta-text h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.cta-text .highlight-gold {
    color: var(--color-gold-light);
}

.cta-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.cta-middle {
    flex: 1;
    max-width: 350px;
    position: relative;
    z-index: 1;
}

.cta-middle p {
    color: #d1d9e6;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
    min-width: 200px;
}

.btn-cta-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.btn-cta-primary {
    background-color: var(--color-gold-light);
    color: #ffffff;
    border: 1px solid var(--color-gold-light);
}

.btn-cta-primary:hover {
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    transform: translateY(-2px);
    color: var(--color-white);
}

@media (max-width: 991px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .cta-left {
        flex-direction: column;
        gap: 15px;
    }
    .cta-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .cta-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
    .cta-middle {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .cta-right {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Plastic Products Manufacturing Hero Section
   ========================================================================== */
.ppm-hero {
    position: relative;
    display: flex;
    min-height: 85vh;
    background: url('../../assets/image/plastic-products-manufacturing.png') no-repeat center right/cover;
    overflow: hidden;
}

/* The actual dark blue background */
.ppm-hero-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 15% 100px 18%;
}

.ppm-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-white {
    color: var(--color-white, #ffffff);
}

.text-gold {
    color: var(--color-gold, #C89A2E);
}

.ppm-hero-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.ppm-divider-line {
    height: 2px;
    background-color: var(--color-gold, #C89A2E);
    width: 40px;
}

.ppm-divider-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold, #C89A2E);
    transform: rotate(45deg);
}

.ppm-hero-desc {
    color: #e2e8f0;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.ppm-hero-buttons {
    display: flex;
    gap: 15px;
}

.ppm-hero-buttons .btn-primary {
    background-color: var(--color-gold, #C89A2E);
    color: var(--color-white, #ffffff);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-gold, #C89A2E);
}

.ppm-hero-buttons .btn-primary:hover {
    background-color: var(--color-gold-light, #D9B45A);
    border-color: var(--color-gold-light, #D9B45A);
    transform: translateY(-2px);
}

.ppm-hero-buttons .btn-outline {
    background-color: transparent;
    color: var(--color-white, #ffffff);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold, #C89A2E);
}

.ppm-hero-buttons .btn-outline:hover {
    background-color: rgba(200, 154, 46, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   Manufacturing Capabilities & Products Sections
   ========================================================================== */
.ppm-cap-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.ppm-cap-item {
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid #E8ECF2;
}

.ppm-cap-item:last-child {
    border-right: none;
}

.ppm-cap-icon {
    font-size: 2.5rem;
    color: var(--color-primary, #172B58);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ppm-cap-item:hover .ppm-cap-icon {
    transform: translateY(-5px);
}

.ppm-cap-item h4 {
    color: var(--color-primary, #172B58);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ppm-cap-item p {
    color: var(--color-text-light, #3b4558);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.ppm-products-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ppm-products-left {
    flex: 1;
}

.ppm-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ppm-products-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--color-text-dark, #1C2334);
    font-size: 1.05rem;
}

.ppm-products-list li i {
    color: var(--color-gold, #C89A2E);
    font-size: 1.1rem;
}

.ppm-products-right {
    flex: 1.2;
}

.ppm-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ppm-product-card {
    transition: transform 0.3s ease;
}
.ppm-product-card:hover {
    transform: translateY(-5px);
}

.ppm-products .btn-primary:hover {
    background-color: var(--color-gold-light, #D9B45A) !important;
}

.ppm-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border: 1px solid #E8ECF2;
    background-color: #f8f9fc;
    display: block;
}

/* Responsive */

@media (max-width: 1440px) {

    .ppm-hero-title {
        font-size: 3.5rem;
    }
    .ppm-hero-left{
    padding: 60px 8% 50px 5%;
    }
}
@media (max-width: 1200px) {
    .ppm-hero-title {
        font-size: 3.5rem;
    }
    .ppm-hero-left-wrapper {
        width: 70%;
    }
    .ppm-cap-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .ppm-cap-item:nth-child(3n) {
        border-right: none;
    }
    .ppm-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ppm-hero {
        background-position: center;
    }
    .ppm-hero-left{
    padding: 60px 8% 50px 5%;
    }
}

@media (max-width: 991px) {
    .ppm-hero {
        min-height: auto;
        background-position: left;
    }
    .ppm-hero-left-wrapper {
        position: relative;
        width: 100%;
        clip-path: none;
        background-color: transparent;
    }
    .ppm-hero-left {
        position: relative;
        width: 100%;
        clip-path: none;
        padding: 120px 5% 80px;
        align-items: center;
        text-align: center;
    }
    .ppm-hero-divider {
        justify-content: center;
    }
    .ppm-products-flex {
        flex-direction: column;
    }
    .ppm-products-left {
        text-align: center;
    }
    .ppm-products-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ppm-cap-header h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .ppm-hero-title {
        font-size: 3rem;
    }
    .ppm-hero-left {
        padding: 120px 15px 60px;
    }
    .ppm-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .ppm-hero-buttons .btn-primary, .ppm-hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .ppm-cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ppm-cap-item:nth-child(2n) {
        border-right: none;
    }
    .ppm-cap-item:nth-child(3n) {
        border-right: 1px solid #E8ECF2;
    }
}

@media (max-width: 576px) {
    .ppm-hero-title {
        font-size: 2.5rem;
    }
    .ppm-cap-grid {
        grid-template-columns: 1fr;
    }
    .ppm-cap-item {
        border-right: none !important;
    }
    .ppm-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}