/* Plant Page Banner */
.plant-banner {
    background-image:
        linear-gradient(135deg, rgba(7,23,73,0.45), rgba(2,6,20,0.65)),
        url('../assets/images/banners/pvc-extrusion-banner.jpg'); /* new banner */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;

	position: relative;
    overflow: hidden;
 /*   animation: bannerZoom 6s ease-in-out forwards; */
}

/* Parallax Effect */
.plant-banner {
    background-attachment: fixed;
}

/* Smooth zoom animation */
@keyframes bannerZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.plant-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.plant-banner p {
    font-size: 18px;
    color: #ddd;
}


/* Plant Grid */
.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Plant Card */
.plant-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Plant Image */
.plant-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #222;
}

/* Icons */
.plant-icon {
    font-size: 42px;
    margin-bottom: 10px;
    color: #00aaff;
}

/* Process Flow */
.process-section {
    margin-top: 50px;
    text-align: center;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.process-step {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    transition: transform 0.35s ease;
}

.process-step:hover {
    transform: translateY(-6px);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 10px;
    color: #00aaff;
}

/* Certifications */
.cert-section {
    margin-top: 50px;
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cert-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    width: 240px;
    transition: transform 0.35s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
}

.cert-icon {
    font-size: 36px;
    margin-bottom: 10px;
    color: #00aaff;
}

.plant-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 15px;
}

/* Plant Overview Infographic */
.plant-overview {
    text-align: center;
    margin: 40px auto;
    padding: 10px 15px;
}

.plant-overview h2 {
    color: #fff;
    margin-bottom: 25px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.overview-icon {
    font-size: 42px;
    color: #00aaff;
    margin-bottom: 10px;
}

.overview-card h3 {
    color: #fff;
    margin-bottom: 8px;
}

.overview-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
}

/* Light Sweep Overlay */
.plant-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: lightSweep 6s ease-in-out infinite;
}

@keyframes lightSweep {
    0% { left: -150%; }
    60% { left: 150%; }
    100% { left: 150%; }
}

/* Breadcrumb Bar */
.breadcrumb-bar {
    background: #0a0f1f;
    padding: 12px 20px;
    font-size: 14px;
    color: #bbb;
}

.breadcrumb-bar a {
    color: #00aaff;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb-bar a.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-bar span {
    color: #666;
}

.plant-banner {
    background-image: url('../assets/images/banners/pvc-extrusion-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    border-bottom: 4px solid #003366;
}

.plant-banner {
    background-image: url('../assets/images/banners/pvc-extrusion-banner.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
