.homeHeroSection {
    padding-top: clamp(8rem, 13vw, 11rem);
}

.spanBgGreen {
    background: #144F23;
}

.spanBgGreen:hover {
    color: #22FF4E;
}

.spanBgGreenOne {
    padding-left: clamp(1rem, 15vw, 18%);
    padding-right: 1rem;
    border-radius: 0 50px 50px 0;
}

.spanBgGreenTwo {
    padding-right: clamp(1rem, 15vw, 18%);
    padding-left: 1rem;
    border-radius: 50px 0 0 50px;
}


.heroBr {
    display: none;
}

@media (max-width: 768px) {

    .homeHeroSectionHeader {
        text-align: center;
    }

    .homeHeroSectionHeader h2 {
        margin: 0;
        line-height: 1.2;
    }

    .h2WithSpan {
        display: inline-block;
        padding: 0.45rem 1.1rem;
        border-radius: 999px;
    }

    /* REMOVE desktop style paddings */
    .spanBgGreenOne,
    .spanBgGreenTwo {
        padding: 0.45rem 1.1rem;
        border-radius: 999px;
        color: #22FF4E;
    }

    /* alignment fix */
    .homeHeroSectionHeader h2.text-end {
        text-align: center !important;
        margin-top: 1rem;
    }

    /* force line break for mobile */
    .heroBr {
        display: block;
    }
}


.homeHeroSectionImgContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 4rem 2rem;
    overflow: hidden;
    margin-top: clamp(2.5rem, 8vw, 6rem);
}

.homeHeroSectionImgContainer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg,
            rgba(19, 65, 32, 0) 0%,
            #1B5B2D 50%,
            rgba(19, 65, 32, 0) 100%);

    z-index: 0;
}

.homeHeroSectionImgContainer img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.homeHeroSectionImgContainer>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.homeHeroSectionImgContainer span {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.homeHeroSectionImgContainer span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.homeHeroSectionImgContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 4rem 2rem;
    overflow: hidden;
}

.homeHeroSectionImgContainer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 55%;

}

.homeHeroSectionImgContainer>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
    text-align: center;

}

.homeHeroSectionImgContainer>div:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.homeHeroSectionImgContainer img {
    max-width: clamp(440px, 55vw, 720px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.homeHeroSectionImgContainer span {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(6px);
    cursor: pointer;
    box-shadow:
        0 0 0 1px rgba(34, 255, 78, 0.45),
        0 4px 14px rgba(3, 39, 11, 0.35);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.homeHeroSectionImgContainer span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 35%;
    height: 2px;
    background: #22FF4E;
    transform: translateX(-50%);
    border-radius: 2px;

    transition: width 0.3s ease;
}

.homeHeroSectionImgContainer span:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 0 0 2px rgba(34, 255, 78, 0.85),
        0 12px 30px rgba(3, 39, 11, 0.55);
}

.homeHeroSectionImgContainer span:hover::after {
    width: 65%;
}

@media (max-width: 768px) {

    .homeHeroSectionImgContainer {
        flex-direction: column;
        padding: 2rem 1.25rem 3rem;
        gap: 1.75rem;
    }

    /* IMAGE COMES FIRST */
    .homeHeroSectionImgContainer>div:nth-child(2) {
        order: -1;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .homeHeroSectionImgContainer>div:nth-child(1) {
        order: 1;
        text-align: center;
    }

    .homeHeroSectionImgContainer>div {
        align-items: center;
    }

    .homeHeroSectionImgContainer::before {
        height: 100%;
    }
}


/* @keyframes floatLR {
    0% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(-6px);
    }
}

@keyframes floatRL {
    0% {
        transform: translateX(6px);
    }

    50% {
        transform: translateX(-6px);
    }

    100% {
        transform: translateX(6px);
    }
} */

.homeHeroSectionImgContainer span {
    animation: floatLR 6s ease-in-out infinite;
}

/* alternate direction */
.homeHeroSectionImgContainer span:nth-child(even) {
    animation-name: floatRL;
    animation-duration: 7s;
}

.homeHeroSectionImgContainer span:hover {
    animation-play-state: paused;
}


.imgHomeHero {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.35s ease;
}

/* Scale container and image together */
.imgHomeHero img {
    display: block;
    max-width: 100%;
    height: auto;
    filter: saturate(1.4);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.imgHomeHero img {
    display: block;
    max-width: 100%;
    height: auto;
    animation: zoomInOut 6s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.whatsappAndEmailFloatingContainer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
    margin-top: clamp(2rem, 3vw, 4rem);
}

.sideItem {
    display: flex;
    align-items: center;
}

.sideItem>span {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sideItem>span>img {
    z-index: 3;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.sideItem span span {
    display: flex;
    align-items: center;
    padding: 0.35rem 1.25rem 0.35rem 3.2rem;
    margin-left: -34px;
    border-radius: 999px;
    font-size: 15px !important;
    font-weight: 600;
    white-space: nowrap;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.quoteBtnBg {
    background: #ffffff;
    color: #000;
    padding: 0.4rem 1.25rem 0.4rem 3.4rem;
    margin-left: -38px;
    border-radius: 999px;
    position: relative;
    z-index: -1;
}

.inquiryBtnBg {
    background: #36BC49;
    color: #fff;
    padding: 0.4rem 1.25rem 0.4rem 3.4rem;
    margin-left: -50px;
    border-radius: 999px;
    position: relative;
    z-index: -1;
}

.quoteBtnBg,
.inquiryBtnBg {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: softFloat 2.8s ease-in-out infinite;
}

.sideItem img {
    animation: iconPulse 2.8s ease-in-out infinite;
}

@keyframes softFloat {
    0% {
        transform: translateX(0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: translateX(6px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }

    100% {
        transform: translateX(0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.16);
    }

    100% {
        transform: scale(1);
    }
}


.sideItem>span:hover span {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.centerGradient {
    flex: 1;
    text-align: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 1.5rem);

    background: linear-gradient(90deg,
            rgba(25, 80, 38, 0) 0%,
            #195026 50%,
            rgba(25, 80, 38, 0) 100%);

    border-left: 3px solid #22FF4E;
    border-right: 3px solid #22FF4E;
    max-width: 50%;

}

.centerGradient2 {
    flex: 1;
    text-align: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 1.5rem);

    background: linear-gradient(90deg,
            #0c4419 0%,
            #123619 50%,
            #0c4419 100%);

    border-left: 3px solid #22FF4E;
    border-right: 3px solid #22FF4E;
    max-width: 50%;

}

.centerGradient p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
}

.whatsappAndEmailFloatingContainer {
    margin-bottom: clamp(2rem, 5vw, 5rem)
}

.headerFirstDiv {
    padding: 2.4rem;
}

.btnLight {
    transition:
        background-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease;
}

.btnLight:hover {
    color: #ffffff !important;
    background-color: #144F23;
    box-shadow: 0 6px 18px rgba(20, 79, 35, 0.35);
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .whatsappAndEmailFloatingContainer {
        flex-direction: column;
        gap: 1rem;
    }

    .centerGradient {
        order: -1;
        width: 100%;
    }

    .centerGradient {
        max-width: 80%;
    }

    .centerGradient2 {
        max-width: 70%;
    }
}

.ourPackagingProductsSectionContainer {
    background-image: url("/static/img/adPageImg/adPageBg1.png");
    background-position: center;
    background-size: cover;
    height: 120vh;
}

@media(max-width:316px) {
    .ourPackagingProductsSectionContainer {
        background-image: url("/static/img/adPageImg/adPageBg1.png");
        background-position: center;
        background-size: cover;
        height: 140vh;
    }

}

.ourPackagingProductsSectionContainer1 {
    background-image: url("/static/img/adPageImg/adPageBg3.png");
    background-position: center;
    background-size: cover;
    height: 130vh;
}

@media(max-width:316px) {
    .ourPackagingProductsSectionContainer1 {
        background-image: url("/static/img/adPageImg/adPageBg3.png");
        background-position: center;
        background-size: cover;
        height: 140vh;
    }

}

.ourPackagingProductsSectionContainer2 {
    background-image: url("/static/img/adPageImg/adPageBg2.png");
    background-position: center;
    background-size: cover;
    height: 130vh;
}

@media(max-width:316px) {
    .ourPackagingProductsSectionContainer2 {
        background-image: url("/static/img/adPageImg/adPageBg2.png");
        background-position: center;
        background-size: cover;
        height: 140vh;
    }

}

.rightWhiteBg {
    background: white;
    padding: 20px 30px;
    border-radius: 50px 0 0 50px;
}

@media (max-width: 768px) {

    .ourPackagingProductsSectionContainerHeader {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 1.25rem;
    }

    .headerFirstDiv {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .headerFirstDiv h3 {
        line-height: 1.25;
    }

    .headerFirstDiv .btnLight {
        margin-top: 1rem !important;
    }

    .rightWhiteBg {
        padding: 0.5rem 1rem;
        border-radius: 0px;
        background: #fff;
        margin-bottom: 15px;
    }
}

.showcaseStrip {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: clamp(12rem, 20vw, 16rem);
    margin-top: clamp(3rem, 8vw, 6rem);
    cursor: pointer;
}

.stripItem {
    position: relative;
    flex: 1;
    height: 100%;
    transition:
        flex 0.45s cubic-bezier(.4, 0, .2, 1),
        filter 0.35s ease;
}

.stripItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center bottom;
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

.stripItem.dim {
    filter: brightness(0.45) saturate(0.6);
}

.stripItem.active {
    flex: 1.7;
    filter: brightness(1) saturate(1.5);
    z-index: 2;
    height: clamp(15rem, 26vw, 20rem);
}

.stripItem.active img {
    transform: scale(clamp(1.03, 1.05, 1.07));
}

.stripItem:hover {
    flex: 1.7;
    filter: brightness(1) saturate(1.5);
    z-index: 2;
    height: clamp(15rem, 26vw, 20rem);
}

.stripItem:hover img {
    transform: scale(clamp(1.03, 1.05, 1.07));
}

.stripItem.dim::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 113, 62, 0.06);
    pointer-events: none;
}

.stripTitle {
    position: absolute;
    top: -6.2rem;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stripItem.active .stripTitle {
    opacity: 1;
    transform: translateX(-50%) translateY(30px);
}


.stripItem:hover .stripTitle {
    opacity: 1;
    transform: translateX(-50%) translateY(30px);
}

.showcaseStrip {
    padding-top: 2.5rem;
}

.desktopOnly {
    display: flex;
}

.mobileOnly {
    display: none;
}

@media (max-width: 768px) {
    .desktopOnly {
        display: none;
    }

    .mobileOnly {
        display: block;
    }
}

.showcaseSwiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    align-items: flex-end;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    filter: brightness(0.45) saturate(0.7);
    transition: filter 0.35s ease;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center bottom;
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

.swiper-slide-active {
    filter: brightness(1) saturate(1);
    z-index: 2;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

.slideTitle {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 6px 16px;
    font-size: 12px !important;
    font-weight: 600;
    color: #fff;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-align: center !important;
}

@media(max-width:768px) {
    .slideTitle {
        background-color: #195026;
    }
}

/* SHOW TEXT */
.swiper-slide-active .slideTitle,
.swiper-slide:hover .slideTitle {
    opacity: 1;
}

.verticalImageContainer {
    padding-top: clamp(1rem, 6vw, 3rem);
}

.showcaseSwiper,
.showcaseSwiper2,
.showcaseSwiper3,
.showcaseSwiper4 {
    padding-bottom: 1.2rem;
    /* space for buttons */
}

/* Bottom nav wrapper */
.swiperNavBottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Button style */
.swiperBtn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #144F23;
    /* green */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.swiperBtn i {
    font-size: 1.4rem !important;
}

/* Hover (optional) */
.swiperBtn {
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

/* press moment */
.swiperBtn:active {
    transform: scale(0.94);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) inset;
}

/* focused / clicked state */
.swiperBtn:focus,
.swiperBtn:target {
    background: #22FF4E;
    color: #144F23;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(34, 255, 78, 0.45);
}

.whyChooseIDoPrintsSectionContainerHeaderTop {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 60px;
    overflow: hidden;
    justify-content: center;
}

.whyChooseIDoPrintsSectionContainerHeaderTop>div:first-child {
    background: transparent;
}

.whyChooseIDoPrintsSectionContainerHeaderTop>div:nth-child(2) {
    position: relative;
    background: #000;
    border-radius: 50px 0px 0px 50px;
}

.whyChooseIDoPrintsSectionContainerHeaderTop>div:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    background: #000;

}

.whyChooseIDoPrintsSectionContainerHeaderTop h2 {
    margin: 0;
    padding: 3px 20px;
}

.darkBg {
    background: #144F23;
    color: #fff;
    border-radius: 50px;
}


.whyChooseIDoPrintsSectionContainerBody {
    display: flex;
    align-items: center;
}

/* left image */
.whyChooseIDoPrintsSectionContainerBody>div:first-child,
.whyChooseIDoPrintsSectionContainerBody>div:last-child {
    flex: 0 0 25%;
}

/* center content */
.whyChooseIDoPrintsSectionContainerBody>div:nth-child(2) {
    flex: 0 0 50%;
}

.whyChooseIDoPrintsSectionContainerBody {
    background-color: #0c4419;
    align-items: end;
}

.whyChooseIDoPrintsSectionContainerBody ol {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;

    /* center the list block */
    margin: 0 auto;

    /* text alignment */
    align-items: flex-start;
    text-align: left;
}

.whyChooseIDoPrintsSectionContainerBody ol {
    width: fit-content;
}


@media (max-width: 992px) {
    .whyChooseIDoPrintsSectionContainerBody {
        align-items: center;
    }

    .whyChooseIDoPrintsSectionContainerBody>div:first-child,
    .whyChooseIDoPrintsSectionContainerBody>div:last-child {
        flex: 0 0 20%;
    }

    .whyChooseIDoPrintsSectionContainerBody>div:nth-child(2) {
        flex: 0 0 60%;
    }
}


@media (max-width: 768px) {
    .whyChooseIDoPrintsSectionContainerBody {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .whyChooseIDoPrintsSectionContainerBody>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* images spacing */
    .whyChooseIDoPrintsSectionContainerBody img {
        max-width: 80%;
        margin: 0 auto;
    }

    /* list stays left aligned but centered */
    .whyChooseIDoPrintsSectionContainerBody ol {
        margin: 1rem auto;
        align-items: flex-start;
        text-align: left;
    }

    .whyChooseIDoPrintsSectionContainerBody div {
        margin-bottom: 20px;
        margin-top: 20px;
    }
}




.whyChooseIDoPrintsSectionContainerBody img {
    transition: transform 0.4s ease;
}

.whyChooseIDoPrintsSectionContainerBody img:hover {
    transform: scale(1.05);
}

.whyChooseIDoPrintsSectionContainerBody ol li {
    transition: transform 0.25s ease, color 0.25s ease;
    cursor: default;
}

.whyChooseIDoPrintsSectionContainerBody ol li:hover {
    transform: translateX(6px);
    color: #c8ffda;
    /* soft highlight */
}

.whyChooseIDoPrintsSectionContainerBody:hover {
    box-shadow:
        0 0 0 1px rgba(20, 79, 35, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.35);
}

.whoWeWorkWithSectionContainer {
    background-image: url("/static/img/adPageImg/adPageBg4.png");
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.flextSwiper {
    padding-top: clamp(1.5rem, 6vw, 4.25rem);

}

.whoWeWorkWithSectionContainerHeader {
    width: 50%;
    padding-top: clamp(3rem, 6vw, 6.25rem);
    border-radius: 0 50px 50px 0;
}

.whoWeWorkWithSectionContainerHeader h3 {
    background-color: white;
    border-radius: 0 50px 50px 0;
    padding: 1rem;
    padding-left: clamp(1rem, 4vw, 3.25rem);

}

.whoWeWorkWithSectionContainerHeader2 h6 {
    padding-left: clamp(1rem, 4vw, 3.25rem);
}

@media (max-width: 768px) {
    .whoWeWorkWithSectionContainerHeader {
        width: 100%;
    }
}

.flextSwiper {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
}

.flextSwiper .textDiv {
    flex: 0 0 30%;
    padding: 20px;
}

.flextSwiper .swiperWrapperDiv {
    flex: 0 0 70%;
}

.flextSwiper ol {
    margin: 0;
}

.flextSwiper ol li {
    margin-bottom: 12px;
}


@media (max-width: 768px) {
    .flextSwiper {
        flex-direction: column;
    }

    .flextSwiper .textDiv,
    .flextSwiper .swiperWrapperDiv {
        flex: 0 0 100%;
        width: 100%;
    }
}

.textDiv {
    background: linear-gradient(to right,
            #06290D 0%,
            rgba(6, 41, 13, 0) 100%);
}

.ourPackagingProductsSection {
    margin-top: clamp(3rem, 8vw, 6.25rem);
    margin-bottom: clamp(3rem, 8vw, 6.25rem);
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .contactItem span {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 768px) {
    .contactItem {
        padding: 6px 10px;
    }

    .contactItem i {
        font-size: 1rem !important;
    }

    .contactItem span {
        font-size: 1rem !important;
    }

    .contactInfo {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .contactInfo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .contactItem {
        width: 100%;
    }
}


input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    color: #B94A48;
    background-color: #f2dede00 !important;
    border: 1px solid #EED3D7;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
    color: #468847;
    background-color: #dff0d800 !important;
    border: 1px solid #D6E9C6;
}