.bannerBox {
    height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bannerBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.bannerEffect {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(5, 82, 67, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.title-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15%;
}

.campaign-title {
    color: #1f1f1f;
    font-weight: 800;
    font-size: 35px;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 30px 0;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.editorial-container {
    width: 100%;
    margin: 0 auto 80px auto;
    color: #444;
    font-size: 17px;
    line-height: 2.2;
    text-align: justify;
    padding: 0 15px;
    box-sizing: border-box;
}

.editorial-container p {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    font-weight: 700;
    color: #0b7c66;
    margin-bottom: 30px;
}

.stat-card {
    background: #f8f9fa;
    border-right: 4px solid #0b7c66;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 30px;
    color: #0b7c66;
    background: rgba(11, 124, 102, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.stat-card div {
    display: flex;
    flex-direction: column;
}

.stat-card span {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

.stat-card strong {
    font-size: 16px;
    color: #222;
}

.editorial-img-full,
.editorial-img-grid {
    margin: 50px 0;
}

.editorial-img-full a,
.editorial-img-grid a {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.editorial-img-full a {
    height: 450px;
}

.editorial-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.editorial-img-grid {
    display: flex;
    gap: 30px;
    height: 350px;
}

.editorial-img-grid a {
    flex: 1;
}

.editorial-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.editorial-img-full a:hover img,
.editorial-img-grid a:hover img {
    transform: scale(1.05);
}

.video-feature-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.video-Box {
    max-width: 700px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background-color: #000;
}

.video-Box video {
    width: 100%;
    max-height: 600px;
    min-height: 250px;
    display: block;
    border-radius: 16px;
    outline: none;
    object-fit: cover;
}

.video1-box{
    width: max-content;
    display: block;
    border-radius: 16px;
    outline: none;
    object-fit: cover;
}

.video1-box video {
    width: 100%;
    max-width: 300px;
    display: block;
    border-radius: 16px;
    outline: none;
    object-fit: cover;
}

.video-quote-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
}

.video-quote-card .quote-icon {
    font-size: 40px;
    color: #0b7c66;
    margin-bottom: 15px;
    opacity: 0.8;
}

.video-quote-card p {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    line-height: 1.8;
    margin-bottom: 15px;
}

.video-quote-card span {
    font-size: 14px;
    color: #0b7c66;
    font-weight: 600;
}

.last-p p {
    text-align: justify;
}

@media (min-width:998px) {
    .last-p {
        width: 60%;
    }

    .item a {
        width: 100%;
    }
}

@media (max-width: 992px) {

    .img-top {
        max-height: 200px;
    }

    .item a {
        width: 100%;
    }

    .last-p {
        padding: 0 10px;
    }

    .bannerBox {
        height: 450px;
        border-radius: 0 0 35px 35px;
    }

    .campaign-title {
        font-size: 28px;
    }

    .editorial-img-full a {
        height: 350px;
    }

    .editorial-img-grid {
        height: 280px;
        gap: 15px;
    }

    .video-feature-row {
        gap: 20px;
    }

    .video-Box {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .bannerBox {
        height: 300px;
        border-radius: 0 0 20px 20px;
    }

    .campaign-title {
        font-size: 22px;
        line-height: 1.5;
    }

    .editorial-container {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 40px;
    }

    .lead-text {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .stats-row {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }

    .stat-card {
        padding: 15px;
    }

    .editorial-img-full {
        margin: 30px 0;
    }

    .editorial-img-full a {
        height: 220px;
    }

    .editorial-img-grid {
        flex-direction: column;
        height: auto;
        gap: 15px;
        margin: 30px 0;
    }

    .editorial-img-grid a {
        height: 220px;
    }

    .video-feature-row {
        flex-direction: column;
        padding: 15px;
        margin: 30px 0;
    }

    .video-Box {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .video-quote-card {
        text-align: center;
        padding: 15px 5px 5px 5px;
    }

    .video-quote-card p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .bannerBox {
        height: 200px;
    }

    .gallery-item {
        height: 180px;
    }
}

@media (min-width:1200px) and (max-width:1600px) {
    .bannerBox {
        height: 370px;
        border-radius: 0 0 40px 40px;

    }

    .bannerBox img {}
}

@media (min-width:1600px) {

    .custom-c {
        max-width: 1300px !important;
    }
}