.manufacturing-hero {
    height: 100dvh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
}

/* Highlight */
.hero-text-highlight {
    color: #f4c430;
}

.hero-desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.plant-card-new {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

/* Image */
.plant-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Overlay */
.plant-card-new .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    z-index: 1;
}

/* Content */
.plant-card-new .content {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 25px;
    color: #fff;
}

/* Title */
.plant-card-new h3 {
    font-size: 26px;
    font-weight: 600;
}

/* Text */
.plant-card-new p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
    color: #fff;
}

/* Hover Effect */
.plant-card-new:hover img {
    transform: scale(1.1);
}

/* STATS */
.stats-section {
    background: #f8fafc;
    padding: 60px 0;
}

.stats-section h2 {
    font-size: 36px;
    font-weight: bold;
}

/* GALLERY */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* VIDEO */
.video-section iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

/* SWIPER */
.swiper {
    padding-bottom: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}