@font-face {
    font-family: "YaroBg";
    src: url("/static/vendor/googleFonts/YaroOp.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Airbnb";
    src: url("/static/vendor/googleFonts/AirbnbCereal_W_Bk.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AirbnbLight";
    src: url("/static/vendor/googleFonts/AirbnbCereal_W_Lt.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}


/* Apply custom font */
.yaroBg {
    font-family: "YaroBg";
}

.airbnbLight {
    font-family: "AirbnbLight";
}

body {
    font-family: "Airbnb";
    color: white;
    scroll-behavior: smooth;
    /* padding-bottom: 150px; */
    overflow-x: hidden !important;
    text-transform: capitalize;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to right, #03270A, #1D3A28);
    z-index: -1;
    will-change: transform;
}

/***************************************Navbar style start****************************************/

#preloader {
    position: fixed;
    inset: 0;
    background: #03270A; /* theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* FIX: flex column to center logo + ring */
.preloaderInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    transform: scale(1);
    transition: transform .6s ease;
}

.preloaderLogo {
    margin-bottom: 16px;
}

/* Ring Loader */
.loaderRing {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(34, 255, 78, 0.2);
    border-top-color: #22FF4E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* EXIT animation */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide .preloaderInner {
    transform: scale(0.92);
}



.appHeader {
    transition: transform 0.5s ease, box-shadow 0.35s ease;

}

.appHeader.hideHeader {
    transform: translateY(-100%);
    /* optional: add slight shadow when hidden for depth */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

header {
    z-index: 200;
    font-family: "AirbnbLight";
}

nav {
    /* position: fixed; */
    /* width: 100%; */
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: linear-gradient(to right, #03270A, #1D3A28);

}


.myNav .d-flex {
    align-items: center !important;
}

@media(max-width:1000px) {
    .mainNavLogo {
        width: 80px;
    }
}

/* default = mobile */
.myNavLinkUl {
    display: none;
}

/* desktop only */
@media (min-width: 1001px) {
    .myNavLinkUl {
        display: flex;
    }
}


nav ul {
    list-style: none;
    /* display: flex; */
    gap: clamp(24px, 4vw, 68px);
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px !important;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 300;
}


nav ul li a {
    position: relative;
}

nav ul li a::before,
nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: #b3adad;
    transition: width 0.35s ease;
}

/* Left line */
nav ul li a::before {
    right: 50%;
    margin-right: 10px;
}

nav ul li a::after {
    left: 50%;
    margin-left: 10px;
}

/* Center dot */
nav ul li a span {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Hover */
nav ul li a:hover::before,
nav ul li a:hover::before,
nav ul li a:hover::after,
nav ul li a:focus::before,
nav ul li a:focus::after,
nav ul li a:focus-visible::before,
nav ul li a:focus-visible::after,
nav ul li a.active::before,
nav ul li a.active::after {
    width: 30%;
}

nav ul li a:hover span,
nav ul li a:focus span,
nav ul li a:focus-visible span,
nav ul li a.active span {
    opacity: 1;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:focus-visible,
nav ul li a.active {
    transform: translateY(-1px) scale(1.04) !important;
}

nav ul li a {
    transition: transform 0.3s ease, color 0.3s ease !important;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:focus-visible,
nav ul li a.active {
    color: #22FF4E !important;
}

.mobileToggle {
    display: none;
    cursor: pointer;
    font-size: 30px !important;
}

.mobileToggle:hover {
    color: #22FF4E;
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(34, 255, 78, 0.7);
}


@media (max-width: 1000px) {
    .myNav ul {
        flex-direction: column;
        gap: 24px;
    }

    .mobileToggle {
        display: block;
    }
}

.servicesMenu {
    position: relative;
}

/* Base hidden */
.servicesDropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 410px;
    background: #000;
    padding: 10px 0;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.35) 2px 4px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


/* Hover (desktop) */
.servicesMenu:hover .servicesDropdown,
.servicesMenu.active .servicesDropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    overflow: hidden;
}

/* Dropdown list */
.servicesDropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 0px !important;
    overflow: visible;
}

.servicesDropdown li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px !important;
    transition: background 0.3s ease;
    font-size: 16px !important;
}

/* Hover effect */
.servicesDropdown li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.servicesDropdown ul li a::before {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: linear-gradient(to right, #2fcd0b, #000);
    transition: width 0.35s ease;
}

.servicesDropdown ul li a::after {
    background: linear-gradient(to right, #000, #2fcd0b);
}

.servicesDropdown ul li a span {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 6px;
    height: 6px;
    background: #2fcd0b !important;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Desktop */

.myNav,
nav {
    overflow: visible;
}

/* Base */
.rotateChevron {
    margin-left: 6px;
    transition: transform 0.3s ease;
}


/* Mobile – when collapse is open */
.servicesMenu .servicesCollapse.show~.servicesLink .rotateChevron,
.servicesMenu.active .rotateChevron {
    transform: rotate(180deg);
}

/* Mobile touch friendly */
@media (max-width: 1000px) {
    .servicesMenu:hover .rotateChevron {
        transform: none;
    }
}


.mobileOffcanvasBody ul {
    gap: 28px;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: center;
    padding-left: 0px !important;
    background-color: white;
}




.mobileOffcanvasBody .myNavLinkUl .linkLi a {
    display: block;
    padding: 10px 15px;
    color: #0b420f;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(16px, 2vw, 18px);
    border-right: 3px solid transparent !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize !important;
    background: rgba(47, 205, 11, 0.08);
}

/* Hover / focus effect */
.mobileOffcanvasBody .myNavLinkUl .linkLi a:hover,
.mobileOffcanvasBody .myNavLinkUl .linkLi a:focus,
.mobileOffcanvasBody .myNavLinkUl .linkLi a.active {
    background: rgba(47, 139, 26, 0.08);
    padding-left: 30px;
    border-right: 3px solid #2fcd0b !important;
}


/* Optional – small dot on hover */
.mobileOffcanvasBody .myNavLinkUl .linkLi a::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #2fcd0b;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.25s ease;
}

.mobileOffcanvasBody .myNavLinkUl .linkLi a:hover::before,
.mobileOffcanvasBody .myNavLinkUl .linkLi a:focus::before,
.mobileOffcanvasBody .myNavLinkUl .linkLi a:active::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Mobile */
@media (max-width: 1000px) {
    .servicesDropdown {
        display: none !important;
    }

    .servicesCollapse a {
        position: relative;
        color: #fff !important;
        padding: 10px 15px 10px 32px;
        display: block;
        transition: background 0.25s ease, padding-left 0.25s ease;
    }

    .servicesCollapse a::before {
        content: "";
        position: absolute;
        left: 14px;
        top: 50%;
        width: 9px;
        height: 9px;
        background: #2fcd0b;
        border-radius: 50%;
        transform: translateY(-50%) scale(0);
        opacity: 0;
        transition: all 0.25s ease;
    }

    .servicesCollapse a::after {
        content: "";
        position: absolute;
        left: 10px;
        top: 50%;
        width: 17px;
        height: 17px;
        border: 1.5px solid rgba(47, 205, 11, 0.6) !important;
        border-radius: 50%;
        transform: translateY(-50%) scale(0.6);
        opacity: 0;
        transition: all 0.25s ease;
    }

    .servicesCollapse a:hover,
    .servicesCollapse a:focus,
    .servicesCollapse a:active {
        background: rgba(255, 255, 255, 0.08) !important;
        padding-left: 36px;
    }

    .servicesCollapse a:hover::before,
    .servicesCollapse a:focus::before {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    .servicesCollapse ul {
        gap: 0 !important;
        padding: 8px 0;
        background-color: #03270A !important;
    }
}

.mobileOffcanvasBody ul li a {
    color: #0b420f;
    text-align: start !important;
    font-weight: bold;
    font-size: clamp(16px, 2vw, 18px) !important;

}

.mobileOffcanvasBody {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Chrome, Safari, Edge */
.mobileOffcanvasBody::-webkit-scrollbar {
    display: none;
}

.canvasClose {
    font-size: 40px !important;
    color: #fff;
    cursor: pointer;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.canvasClose:hover {
    color: #2fcd0b !important;
    transform: rotate(90deg) scale(1.08);
    opacity: 0.9;
}

.searchTrigger {
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    /* initial color */
}

.searchTrigger:hover {
    color: #2fcd0b;
    /* change color on hover */
    transform: scale(1.15);
    /* slight zoom effect */
}

/***************************************Navbar style end?****************************************/

/***************************************index page hero sec style start****************************************/

/* ?Hero section */
.headerLineHero {
    padding-top: 15rem !important;
}

@media(max-width:420px) {
    .headerLineHero {
        padding-top: 10rem !important;
    }
}


/* Base span style */
.headerLine+span {
    display: block;
    height: 1px;
    width: 37%;
    background-color: #bdbaba;
    margin: 8px 0;
}

/* First span: from left */
.lineLeft {
    margin-left: 0;
}

/* Second span: from right */
.lineRight {
    margin-left: auto !important;
    margin-right: 0;
}

.headerLine {
    padding: 0px 20px 0px 20px;
}



/* Common line style */
.lineLeft,
.lineRight {
    display: block;
    height: 1px;
    width: 37%;
    background-color: #bdbaba;
    margin: 8px 0;
    transform: scaleX(0);
    animation-duration: 0.9s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

/* Left → Right */
.lineLeft {
    margin-left: 0;
    transform-origin: left;
    animation-name: lineLeftGrow;
}

/* Right → Left */
.lineRight {
    margin-left: auto;
    margin-right: 0;
    transform-origin: right;
    animation-name: lineRightGrow;
    animation-delay: 0.15s;
}

/* Keyframes */
@keyframes lineLeftGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes lineRightGrow {
    to {
        transform: scaleX(1);
    }
}

.btnDark {
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    z-index: 1;
    transition: color 0.35s ease;
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 3vw, 26px) !important;
}

/* White fill layer */
.btnDark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    z-index: -1;
}

/* Hover */
.btnDark:hover {
    color: #000;
}

.btnDark:hover::before {
    transform: scaleX(1);
}

.scrollImgWrapper {
    width: 100%;
    overflow: hidden;
    height: 250px;
    position: relative;
    margin-top: 3rem;
}

.imgTrack {
    display: flex;

}

.imgTrack img {
    height: 250px;
    width: auto;
    display: block;
    margin: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* smooth scale + filter */
}

.imgTrack img:hover {
    filter: saturate(1.5);
    cursor: context-menu;
}

/* Mobile screens only */
@media (max-width: 768px) {
    .scrollImgWrapper {
        height: 200px;
    }

    .imgTrack img {
        height: 200px;
    }
}

/***************************************index page - about us sec style start****************************************/

.indexAboutUsContainer {
    background-image: url("/static/img/indexPage/backgrounds/indexAboutUsBg.png");
    background-position: center;
    background-size: cover;
    height: clamp(60vh, 70vh + 10vw, 100vh);
    width: 100%;
    padding: 4rem 0;
    position: relative;
}

.indexAboutUsHeader {
    position: relative;
    width: 100%;
    text-align: right;
}

.indexAboutUsHeader h1 {
    margin-bottom: 0.5rem;
    margin-right: 40px;
}

.borderPrimary {
    display: block;
    width: 20%;
    height: 1.1px;
    background-color: currentColor;
    margin-left: auto;
}

.indexAboutUsFooter {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    border-left: 4px solid #1E3B29;
    background: linear-gradient(to right,
            #80938627 30%,
            #00000000 70%);

    padding: 30px;
}

@media (max-width: 768px) {
    .indexAboutUsFooter .pbr {
        display: none;
    }

    .borderPrimary {
        width: 40%;
        height: 0.6px;
    }
}

.ourProcessContainerPaddingY {
    padding-top: clamp(2rem, 6vw, 5rem);
    padding-bottom: clamp(2rem, 6vw, 5rem);
}

/***************************************index page - our services sec style start****************************************/

.indexOurServicesHeader {
    margin-top: 3rem;
}

.horizontalLeft,
.horizontalRight {
    display: block;
    height: 1px;
    width: 55%;
    background-color: #bdbaba;
    margin: 8px 0;

    transform: scaleX(0);
    animation-duration: 0.9s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.horizontalLeft {
    margin-right: auto;
    transform-origin: left;
    animation-name: horizontalGrow;
}

.horizontalRight {
    margin-left: auto;
    transform-origin: right;
    animation-name: horizontalGrow;
}

@keyframes horizontalGrow {
    to {
        transform: scaleX(1);
    }
}

.indexOurServicesCardsContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 14px;
    padding-top: clamp(50px, 5.2vw, 70px);
}

.indexOurServicesCard {
    background: #EDEDED;
    min-height: 100vh;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.indexOurServicesCard h4 {
    margin-bottom: 16px;
}

.indexOurServicesCard p {
    margin-bottom: 24px;
    margin-top: 1rem;
}

.indexOurServicesCard button {
    margin-bottom: 32px;
}

/* .indexOurServicesCard img {
    max-width: 70%;
    height: auto;
} */

.indexOurServicesCard .premiumPaperBagsAdjust {
    max-width: 65%;
    height: auto;
}

.indexOurServicesCard .premiumCustomBoxesAdjust {
    max-width: 75%;
    height: auto;
}

.indexOurServicesCard .stickersAndLabelsAdjust {
    max-width: 55%;
    height: auto;
}

.indexOurServicesCard .corporateAndStationeryAdjust {
    max-width: 80%;
    height: auto;
}

.indexOurServicesCard .marketingAndCollateralAdjust {
    max-width: 90%;
    height: auto;
}

.indexOurServicesCard .apparelAndMerchandiseAdjust {
    max-width: 60%;
    height: auto;
}

.indexOurServicesCard .signAgeAndInteriorBrandingAdjust {
    max-width: 60%;
    height: auto;
}

.indexOurServicesCard .eventBrandingAdjust {
    max-width: 70%;
    height: auto;
}

.indexOurServicesCard .completePackagingAdjust {
    max-width: 65%;
    height: auto;
}

.indexOurServicesCard .ecoFriendlyFoodPackagingAdjust {
    max-width: 65%;
    height: auto;
}

@media (max-width: 768px) {
    .indexOurServicesCardsContainer {
        grid-template-columns: 1fr;
    }

    .indexOurServicesCard {
        min-height: auto;
        padding: 40px 20px;
    }

    .indexOurServicesCard img {
        max-width: 80% !important;
        height: auto;
    }

    .dNoneBr {
        display: none;
    }

    .indexOurServicesCard {
        padding: 28px 17px;
        gap: 60px;
    }
}

@media (max-width: 424px) {
    .indexOurServicesCard img {
        max-width: 90% !important;
        height: auto;
    }
}

.indexOurServicesCard:hover img {
    filter: brightness(1) !important;
    transform: scale(1.2) !important;
}

.indexOurServicesCard {
    position: relative;
    overflow: hidden;
}

.indexOurServicesCard img {
    transform: scale(1);
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s ease;
    will-change: transform;
}

.indexOurServicesCard:hover img {
    transform: scale(1.2);
    filter: saturate(1.6) !important;
    cursor: pointer;
}

.btnGreen {
    position: relative;
    overflow: hidden;
    background: #092C11;
    color: #fff !important;
    border: 1px solid #092C11;
    z-index: 1;
    transition: color 0.35s ease;
    padding: clamp(7px, 1.2vw, 9px) clamp(18px, 3vw, 26px) !important;
    border-radius: 0px !important;
    font-size: clamp(16px, 1.3vw, 19px);
}

.btnGreen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    z-index: -1;
}

.btnGreen:hover {
    color: #092C11 !important;
}

.btnGreen:hover::before {
    transform: scaleX(1);
}

html {
    scroll-behavior: smooth;
}

/***************************************index page - our clients sec style start****************************************/


.indexOurClientHeader {
    margin-top: clamp(2.5rem, 6vw, 5rem);

}

.clientCardContainer {
    margin-top: clamp(2.5rem, 6vw, 5rem);
}

.clientCard {
    width: 100%;
    height: 86vh;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(135deg, #EDEDED, #bbf7cc);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
}


.clientCardContainer .swiper-slide {
    width: calc(100% - 60px);
    /*  30px left + 30px right */
    opacity: 0.4;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


/* Left content */
.clientCard>div:first-child {
    max-width: 590px;
    padding: clamp(2rem, 5vw, 4rem);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;

}

.clientCard p {
    margin-top: 1.5rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: #333;
    text-align: center;
}

.clientCard span {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 30px;
    font-weight: 600;
    background: #15341F1A !important;
}

/* Right image */
.clientCard>div:last-child img {
    object-fit: contain;
    max-width: 90%;
}

.clientCard {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.thumbnailClientImgWrapper img {
    border-radius: 100px;
    border: 3px solid black;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.thumbnailClientImgWrapper img:hover {
    transform: scale(1.08);
    border-color: #111;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid rgb(17, 242, 13);

}




@media (min-width: 769px) {
    .thumbnailClientImgWrapper {
        margin-bottom: 40px;
    }
}


@media (max-width: 768px) {
    .clientCard {
        width: 92%;
        height: auto;
        flex-direction: column;
        text-align: center;
    }
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #17C9D3, #6EE7B7);
    opacity: 1;
}


.clientCardContainer {
    overflow: visible;
    /* allow peek */
}


.clientCardContainer .swiper-slide {
    width: 85%;
    /* card width */
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.4;
}

/* Active (center) slide */
.clientCardContainer .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/* Side slides */
.clientCardContainer .swiper-slide-prev,
.clientCardContainer .swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.95);
}

@media (max-width: 768px) {

    /* swiper behaves like normal slider */
    .clientCardContainer .swiper-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .clientCardContainer {
        overflow: hidden;
    }

    .clientCard {
        width: 100%;
        height: auto;
        flex-direction: column;
        text-align: center;
    }
}


/***************************************index page - why choose us style start****************************************/

.indexOurClientsContainer {
    /* gap: 4rem; */
    align-items: center;
    margin-top: clamp(2.5rem, 6vw, 5rem);
}

.whyImgWrapper {
    flex: 0 0 33%;
    display: flex;
    justify-content: center;
}

.whyImgWrapper img {
    max-width: 100%;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

.whyContent {
    flex: 0 0 67%;
}

.threeReasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5rem;
    background: linear-gradient(to right, #0D2E15, #133A1D, #1D3A28);

}

.reasonCard {
    padding: 2rem 3.8rem;
    border-radius: 16px;
    color: #e7f5ec;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.reasonCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.reasonNumber {
    font-size: 5.5rem !important;
    line-height: 1;
    margin-bottom: 0.8rem;
    background: linear-gradient(#FFFFFF 35%, #14331E 65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reasonCard h6 {
    margin-bottom: 0.6rem;
    font-size: 1.45rem !important;

}

.reasonCard p {
    font-size: 1rem !important;
    font-weight: 400;
    color: #e3dbdb;
}

@media (max-width: 868px) {

    .indexOurClientsContainer {
        flex-direction: column;
        gap: 3rem;
    }

    .whyImgWrapper,
    .whyContent {
        flex: 0 0 100%;
        text-align: center;
    }

    .threeReasons {
        grid-template-columns: 1fr;
    }
}

.whyImgWrapper {
    position: relative;
    overflow: hidden;
}

/* Image */
.whyImgWrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

/* Overlay container */
.whyOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 46, 21, 0.35),
            rgba(13, 46, 21, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Text */
.whyOverlay h3 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    margin-bottom: 1rem;
}

.whyOverlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hover effects */
.whyImgWrapper:hover img {
    transform: scale(1.08);
}

.whyImgWrapper:hover .whyOverlay {
    opacity: 1;
    transform: translateY(0);
}

/***************************************index page - contact us style start****************************************/

.paymentGatewayWrapper {
    overflow: hidden;
    width: 100%;
    padding: clamp(16px, 3vw, 18px) 0;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    margin-bottom: 90px;
}

.paymentGatewayTrack {
    display: flex;
    align-items: center;
    width: max-content;
}

.paymentGatewayTrack img {
    height: 30px;
    margin: 0 40px;
    opacity: 0.85;
}

@media(max-width:440px) {
    .paymentGatewayTrack img {
        height: 30px;
        margin: 0 20px;
        opacity: 0.85;
    }
}


/* Parsley error text */
.parsley-errors-list {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    font-size: 8px !important;
    color: #ff6b6b;
}

.parsley-required,
.parsley-minlength,
.parsley-type,
.parsley-length {
    font-size: 13px !important;
    line-height: 16px;
}

/* Error input */
input.parsley-error,
textarea.parsley-error {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.06);
}

/* Success input */
input.parsley-success,
textarea.parsley-success {
    border-color: #4cd964;
}

.indexContactUsHeader {
    margin-top: clamp(2.5rem, 6vw, 5rem);
}


.indexContactUsContainer {

    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #bbb8b8;
    /* gap: 4rem; */
    /* padding: clamp(3rem, 6vw, 6rem); */
}

/* LEFT */
.contactLeft {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-right: 1px solid #bbb8b8;
}

.contactImgWrapper {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

/* IMAGE */
.contactImgWrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.contactImgOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
}


/* HOVER EFFECT */
.contactImgWrapper:hover img {
    transform: scale(1.08);
}

.contactImgWrapper:hover .contactImgOverlay {
    opacity: 1;
}



/* Address Grid */
.addressGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 30px;

}

.addressItem {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: transparent;
    border-radius: 0;
}

.addressItem i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--bs-primary);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.addressItem i:hover {
    background: linear-gradient(135deg, #07510c, #88918d);
    color: #fff;
    cursor: pointer;
}

.addressItem p {
    margin: 0;
    line-height: 1.6;
}

/* RIGHT */
.contactRight h5 {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

/* FORM */
.indexContactUsForm {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: clamp(2rem, 6vw, 5rem);
}

.indexContactUsForm label {
    font-size: clamp(0.95rem, 1.2vw, 1.25rem);
    letter-spacing: 1px;
}


.indexContactUsForm input,
.indexContactUsForm textarea {
    border: none;
    border-bottom: 1.5px solid #ccc;
    padding: 0.3rem 0;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: white !important;
}

.indexContactUsForm input:focus,
.indexContactUsForm textarea:focus {
    border-bottom-color: rgb(121, 185, 25) !important;
}

.indexContactUsForm button {
    margin-top: 2rem;
    padding: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 1068px) {
    .indexContactUsContainer {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .addressGrid {
        grid-template-columns: 1fr;
    }

    .bgGreenPillBatch {
        justify-content: center !important;
    }
}

.bgGreenPill {
    background: #00000033;
    padding: 10px 20px;
    border-radius: 50px;
}


/***************************************index page - footer style start****************************************/

.indexFooter {
    background: #0D2E15;
    color: #fff;
}

.indexFooterContainer {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 4rem;
    border-bottom: 1px solid #c4b9b9 !important;

}

/* IMAGE WRAPPER */
.footerImgWrapper {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.footerImgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.footerImgOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(13, 46, 21, 0.85),
            rgba(13, 46, 21, 0.25));

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* HOVER EFFECT */
.footerImgWrapper:hover img {
    transform: scale(1.06);
}

.footerImgWrapper:hover .footerImgOverlay {
    opacity: 1;
}

/* CONTENT */
.footerContent {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 6vw, 3rem);
}

.footerContent h3 {
    border-bottom: 1px solid #c4b9b9 !important;
    width: fit-content;
}

.footerContent h6 {
    border-bottom: 1px solid #c4b9b9 !important;
    width: fit-content;
}

.footerOurServicesList {
    gap: clamp(3rem, 6vw, 6rem);
}

/* SERVICES LIST */
.footerOurServicesList ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerOurServicesList li {
    margin-bottom: 1.3rem;
}

.footerOurServicesList a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footerOurServicesList a:hover {
    color: #fff;
    text-decoration: underline;
}

/* SOCIAL ICONS */
.socialIcons a {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #0D2E15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.socialIcons a i {
    transition: transform 0.35s ease;
}

.socialIcons a:hover {
    background: linear-gradient(135deg, #31bc07, #6EE7B7);
    color: #0D2E15;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(49, 188, 7, 0.35);
}

.socialIcons a:hover i {
    transform: scale(1.15);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .indexFooterContainer {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footerOurServicesList {
        gap: 3rem;
    }
}

.copyRightsSpan {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: clamp(0.75rem, 0.9vw, 0.85rem) !important;
    letter-spacing: 0.5px;
    line-height: 1.6;
    padding: 1.5rem;
}

.copyRightsSpan p span {
    font-size: clamp(0.75rem, 0.9vw, 0.85rem) !important;
    cursor: pointer;
}

.copyRightsSpan p {
    font-size: clamp(0.75rem, 0.9vw, 0.85rem) !important;
}


/***************************************index page - search overlay style start****************************************/

.globalSearchOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;

    overflow: hidden;

    opacity: 0;
    transform: scale(1.03);
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    pointer-events: none;
}

.globalSearchOverlay.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* lock scroll */
body.searchOpen {
    position: fixed;
    width: 100%;
    overflow: hidden;
}


.searchBox {
    width: min(700px, 90%);
    position: relative;
}

.searchBox input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    border-radius: 50px;
    border: none;
    outline: none;
    background: #0cd9351f;
    border: 2px solid #0cd935;
    color: #d3ded8;
    font-weight: 500;
}

.closeSearch {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: clamp(1.5rem, 2vw, 2.2rem) !important;
    cursor: pointer;
    color: #22FF4E;

    font-weight: bold;
    z-index: 10000;
    /* ensure it’s above the overlay content */
}

.closeSearch:hover {
    color: #22FF4E;
    transform: scale(1.1);
    transition: all 0.2s ease;
}


.searchResults {
    margin-top: 1.2rem;
    max-height: 300px;
    overflow-y: auto;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}


.searchItem {
    padding: 1rem 1.5rem;
    cursor: pointer;

    color: #d3ded8;
    font-weight: 500;

    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.searchItem:hover {
    background: rgba(34, 255, 78, 0.18);
    color: #22FF4E;
}

.searchItem:last-child {
    border-bottom: none;
}


.searchOverlayHeader {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
}

.searchOverlayLogo {
    width: clamp(48px, 6vw, 78px);
    height: auto;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.searchOverlayLogo:hover {
    transform: scale(1.05);
    opacity: 1;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 0px !important;
}

::-webkit-scrollbar-thumb {
    background: #09dc3e !important;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: #064620 !important;
    cursor: pointer;
}


@media (hover: hover) and (pointer: fine) {
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-thumb {
        background: #09dc3e;
    }
}


/***************************************index page - style endt****************************************/

/***************************************section pages style start****************************************/

.premiumPaperBoxesHero {
    padding-bottom: clamp(1.6rem, 5vw, 3rem) !important;
}


.premiumPaperBoxesHeroHeader {
    padding-top: clamp(10rem, 15vw, 13rem) !important;
    padding-bottom: clamp(1.6rem, 5vw, 3rem) !important;
}


.horizontalSpanLine {
    position: relative;
    display: block;
    width: 25%;
    height: 1.1px;
    background: #fff;
    margin: 0 auto;
}

@media(max-width:424px) {
    .horizontalSpanLine {
        width: 35%;
    }
}

/* LEFT DIAMOND */
.horizontalSpanLine::before,
.horizontalSpanLine::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
}

/* left */
.horizontalSpanLine::before {
    left: -8px;
}

/* right */
.horizontalSpanLine::after {
    right: -8px;
}

.descriptionAboutOurServiceContainer {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* IMAGE – 40% */
.descriptionAboutOurServiceContainerImg {
    width: 40%;
    margin: 0;
    padding: 0;
}

.descriptionAboutOurServiceContainerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT – 60% */
.descriptionAboutOurServiceContainerDetails {
    width: 60%;
    padding: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.descriptionAboutOurServiceContainerDetailsWhiteBg {
    background: white;
}

.descriptionAboutOurServiceContainerDetailsGrayBg {
    background: linear-gradient(to right, #EAEAEA, #FBFBFB);
}

.descriptionAboutOurServiceContainerDetailsGrayBg3 {
    background: linear-gradient(to right, #d9d8d867, #FBFBFB);
}

.descriptionAboutOurServiceContainerDetailsGrayBg2 {
    background: linear-gradient(to right, #FBFBFB, #EAEAEA);
}

.descriptionAboutOurServiceContainerDetailsGrayBg1 {
    background: rgb(232, 230, 230);

}



.descriptionAboutOurServiceContainerDetails p {
    margin-bottom: 0.75rem;
}

.descriptionAboutOurServiceContainerDetails ul {
    padding-left: 1.2rem;
}

.descriptionAboutOurServiceContainerDetails li {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 1.3vw, 1.4rem) !important;

}

@media (max-width: 768px) {
    .descriptionAboutOurServiceContainer {
        flex-direction: column;
    }

    .descriptionAboutOurServiceContainerImg,
    .descriptionAboutOurServiceContainerDetails {
        width: 100%;
    }
}


.serviceWithDeatailsSingle {
    margin-top: clamp(2rem, 6vw, 7.75rem);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background: transparent;
    gap: 20px;
    padding: 0 clamp(1.25rem, 2vw, 3.625rem);
    isolation: isolate;
}

.serviceWithDeatailsSingle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 73%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: linear-gradient(to right, #244630, #1D3A27);
    z-index: -1;
}

.servicesImgBox {
    position: relative;
    width: clamp(280px, 38%, 560px);
    flex-shrink: 0;
    /* max-width:560px; */
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
    overflow: hidden;


    will-change: transform;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.servicesImgBox img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;

    will-change: transform;
    transition: transform 0.6s ease;
}

/* Light sweep overlay */
.servicesImgBox::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.12) 50%,
            transparent 70%);

    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

/* Hover effects (only for hover-capable devices) */
.servicesImgBox:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.servicesImgBox:hover img {
    transform: scale(1.08);
}

.servicesImgBox:hover::after {
    transform: translateX(100%);
}


.serviceWithDeatailsDescription {
    max-width: 650px;
    /* padding: clamp(5px , 3vw , 20px); */
}

.serviceWithDeatailsDescription h5 {
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.serviceWithDeatailsDescription ul {
    padding-left: 1.125rem;
}

.serviceWithDeatailsDescription li {
    font-size: clamp(0.875rem, 1.2vw, 1.1875rem) !important;
    line-height: clamp(1.375rem, 2vw, 1.75rem) !important;
    margin-bottom: 10px;
}

.serviceWithDeatailsSinglereverse::before {
    background: linear-gradient(to right, #04280B, #2B553A);
}


@media (max-width: 868px) {
    .serviceWithDeatailsSingle {
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: clamp(1.25rem, 4vw, 2rem);
        padding: clamp(1rem, 4vw, 2rem);
    }

    .serviceWithDeatailsSingle::before {
        height: 100%;
        top: 0;
        transform: none;
    }

    .servicesImgBox {
        max-width: 100%;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .serviceWithDeatailsDescription {
        max-width: 100%;
    }

    .serviceWithDeatailsDescription ul {
        padding-left: 1rem;
    }
}

.descriptionBrief p {
    margin-bottom: 4px !important;
    font-size: clamp(0.875rem, 1.2vw, 1.1875rem) !important;
}

.whyChooseThisServiceContainer {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 100px;

}

.whyChooseThisServiceContainerbgWhite {
    background: #FAFAFA;
}

.whyChooseThisServiceContainerbgGrayWhite {
    background: #f2efef;
}

.whyChooseThisServiceContainerlinear1 {
    background: linear-gradient(to right,
            #EEEFEF 100%,
            #E8E8E8 0%,
            #F1F1F1 50%);
}



.whyChooseThisServiceContainer .d-flex {
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    justify-content: space-between;
    width: 100%;

}

.whyChooseThisServiceDesc {
    padding: clamp(1.25rem, 3vw, 2.5rem);

    background: linear-gradient(to right,
            #dfdcdc,
            rgba(255, 255, 255, 0));

    border-left: 2px solid #000000;
    margin: 30px;
}

/* Heading */
.whyChooseThisServiceDesc h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

/* Paragraphs */
.whyChooseThisServiceDesc p {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Image */
.whyChooseThisServiceContainer img {
    height: auto;
    display: block;
    max-width: clamp(320px, 80vw, 690px);
    /* width: 90%; */
}

@media (max-width: 768px) {
    .whyChooseThisServiceContainer .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .whyChooseThisServiceDesc {
        max-width: 100%;
        border-left: none;
        border-top: 2px solid #000000;
        background: linear-gradient(to bottom,
                #E9E9E9,
                rgba(255, 255, 255, 0));
    }

    .whyChooseThisServiceContainer img {
        max-width: 100%;
    }
}


.threeMajorChoosesPoints {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
    background: #04280bac;
    padding: clamp(1.5rem, 3vw, 3rem);
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;

}

.threeMajorChoosesPoints p {
    flex: 1;
    margin: 0;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    position: relative;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    line-height: 1.6;
}

.threeMajorChoosesPoints p:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #4E6653, #FFFFFF, #4B6451);
}

@media (max-width: 768px) {
    .threeMajorChoosesPoints {
        flex-direction: column;
        gap: 1.5rem;
    }

    .threeMajorChoosesPoints p:not(:last-child)::after {
        display: none;
    }
}

/***************************************section pages style end****************************************/

/***************************************why choose us pages style start****************************************/

.whyChooseUsHeaderLineHero {
    padding-top: clamp(10rem, 20vw, 15rem);
    padding-bottom: clamp(2.5rem, 7vw, 6rem);
}

/* Container */
.whyChooseUsHeaderLineHeroImages {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
}

/* Image wrapper */
.whyChooseUsHeaderLineHeroImages>div {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.whyChooseUsHeaderLineHeroImages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .35s ease;
}

/* Overlay */
.imgOverlayText {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.6));
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s ease, transform .35s ease;
    text-align: center;
    padding: 20px;
}

/* Hover effect */
.whyChooseUsHeaderLineHeroImages>div:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.whyChooseUsHeaderLineHeroImages>div:hover .imgOverlayText {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: 2 × 2 */
@media (max-width: 768px) {
    .whyChooseUsHeaderLineHeroImages {
        grid-template-columns: repeat(2, 1fr);
    }
}

.whyChooseUsContainerHeader {
    padding-block: clamp(2rem, 4vw, 6rem);
}


.whyChooseUsContainerBodyRows {
    display: flex;
    align-items: center;
    width: 100%;
    background: #36523E;
    transition: transform .4s ease, box-shadow .4s ease;
    justify-content: space-between;
    border-bottom: 2px solid transparent;

}


.centerTextContent {
    /* padding: clamp(16px, 4vw, 34px); */
    max-width: 600px;
}


.whyChooseUsContainerBodyRows:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.688);
}

.whyChooseUsContainerBodyRows>div img {
    transition: transform .6s ease;
}

.whyChooseUsContainerBodyRows:hover img {
    transform: scale(1.06);
}

.centerTextContent {
    padding: clamp(16px, 4vw, 44px);
    transition: transform .4s ease, opacity .4s ease;
}

.centerTextContentP {
    line-height: clamp(26px, 3.2vw, 35px) !important;
}


.whyChooseUsContainerBodyRows:hover .centerTextContent {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .whyChooseUsContainerBodyRows {
        flex-direction: column;
        text-align: center;
    }

    .whyChooseUsContainerBodyRows>div {
        width: 100%;
    }

    .centerTextContent {
        padding: clamp(20px, 6vw, 48px);
    }

    .whyChooseUsContainerBodyRows:hover .centerTextContent {
        transform: none;
    }

    .whyChooseUsContainerBodyRows:hover img {
        transform: scale(1.03);
    }
}

.whyChooseUsContainerBodyRowsImg {
    overflow: hidden;
}

.stepLine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step {
    font-weight: 500;
    color: #fff;
}

/* Center line */
.line {
    position: relative;
    width: clamp(120px, 40vw, 300px);
    height: 1px;
    background: #fff;
    margin: clamp(1.5rem, 5vw, 3rem) 0;
}


/* Diamond ends */
.line::before,
.line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
}

.line::before {
    left: -4px;
}

.line::after {
    right: -4px;
}

/* Desktop & Tablet */

.whyChooseUsContainerFooterBox {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    width: 100%;
    padding: 30px;
    position: relative;
    background-color: #124124;
    overflow: hidden;
}

.whyChooseUsContainerFooterBox::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, #195530, #124124);
    z-index: 0;
}

.whyChooseUsContainerFooterBox>* {
    position: relative;
    z-index: 1;
}

.footerImgWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.footerImgWrap img {
    width: 440px;

}

.whyChooseUsContainerFooterBox h4 {
    text-align: right;
    padding-right: 20px;
}

.whyChooseUsContainerFooterBox p {
    text-align: left;
    padding-left: 20px;
    line-height: clamp(26px, 2vw, 35px);
}

@media (max-width: 991px) {

    .whyChooseUsContainerFooterBox {
        grid-template-columns: 1fr;
        /* stack */
        gap: clamp(20px, 5vw, 40px);
        text-align: center;
        padding: clamp(24px, 6vw, 40px);
    }

    .whyChooseUsContainerFooterBox::before {
        height: 70%;
        /* slightly taller for stacked content */
    }

    .whyChooseUsContainerFooterBox h4 {
        text-align: center;
        padding-right: 0;
    }

    .whyChooseUsContainerFooterBox p {
        text-align: center;
        padding-left: 0;
        max-width: 680px;
        margin: 0 auto;
    }

    .footerImgWrap img {
        width: clamp(260px, 60vw, 380px);
    }
}

@media (max-width: 576px) {
    .whyChooseUsContainerFooterBox::before {
        height: 95%;
    }

    body {
        padding-bottom: 20px;
    }
}

.footerImgWrap img {
    transition: transform .6s ease, box-shadow .6s ease;
}

/***************************************why choose us pages style end****************************************/


/***************************************about us pages style start****************************************/


.whyChooseUsContainerHeader {
    position: relative;
    padding: clamp(2.2rem, 5vw, 4.5rem);
    border-radius: 22px;

    /* Glass base */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 2px solid rgba(58, 240, 17, 0.87);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15),
        inset 0 1px 1px rgba(255, 255, 255, .3);

    transition:
        transform .5s cubic-bezier(.4, 0, .2, 1),
        box-shadow .5s ease,
        background .5s ease;
    margin: 30px;
}

/* Gradient glow overlay */
.whyChooseUsContainerHeader::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(83, 150, 102, .22),
            rgba(255, 255, 255, .05));
    opacity: .6;
    border-radius: inherit;
    z-index: -1;
    transition: opacity .5s ease;
}

/* Hover lift */
.whyChooseUsContainerHeader:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, .25),
        inset 0 1px 1px rgba(255, 255, 255, .4);
}

.whyChooseUsContainerHeader:hover::before {
    opacity: 1;
}

/* Title glass emphasis */
.whyChooseUsContainerHeader h4 {
    transition: letter-spacing .45s ease, transform .45s ease;
    color: rgb(59, 196, 13);
}

.whyChooseUsContainerHeader:hover h4 {
    letter-spacing: .08em;
    transform: translateY(-3px);
}

/* Text clarity boost */
.whyChooseUsContainerHeader p {
    opacity: .85;
    transition: opacity .4s ease, transform .4s ease;
}

.whyChooseUsContainerHeader:hover p {
    opacity: 1;
    transform: translateY(-3px);
}




.ourVisionContainer {
    background-color: #36523E;
    width: 95%;
    margin-left: auto;
    border-radius: 300px 0 0 300px;
    align-items: center;
    gap: 24px;
}

.ourVisionContainer p {
    line-height: 36px;
    margin-top: 2rem;
}


@media (max-width: 700px) {
    .ourVisionContainer {
        width: 100%;
        margin-left: 0;
        border-radius: 24px;
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .ourVisionContainer p {
        line-height: 28px;
    }

    .ourVisionContainer>div>div {
        justify-content: center;
    }
}


.premiumQualityTrustSection {
    background-image: url("/static/img/aboutUs/aboutUsBgImg1.png");
    height: 80vh;
    background-position: center;
    background-size: cover;

}

.ourProductionFocusedOnRectangleBox {
    background: #539666;
    color: #fff;
    padding: 18px 22px;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    min-width: 240px;
    height: 130px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ourProductionFocusedLineWrap {
    position: relative;
    padding: 3px 0;
}

/* dashed line */
.ourProductionFocusedLineWrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    z-index: 0;

    background: repeating-linear-gradient(to right,
            #ffffff 0 12px,
            transparent 12px 22px);
}

.ourProductionFocusedOn {
    border-radius: 0 50px 50px 0;
}


.premiumQualityTrustSectionHaeder {
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.ourProductionFocusedLineWrap {
    gap: clamp(1rem, 5vw, 5.5rem);
}

@media (min-width: 1291px) and (max-width: 1400px) {

    .ourProductionFocusedLineWrap {
        gap: clamp(0.75rem, 2.5vw, 1.5rem);
    }

    .ourProductionFocusedOnRectangleBox {
        min-width: 200px;
        padding: 16px 18px;
        border-radius: 12px;
    }

    .ourProductionFocusedOnRectangleBox img {
        width: 48px;
    }

    .ourProductionFocusedOnRectangleBox span {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
}


@media (max-width: 1291px) {
    .premiumQualityTrustSection {
        height: auto;
        padding-bottom: 3rem;
    }

    .ourProductionFocusedWrapper {
        justify-content: center;
    }

    .ourProductionFocusedLineWrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(1rem, 4vw, 2rem);
    }

    .ourProductionFocusedLineWrap::before {
        display: none;
    }

    .ourProductionFocusedOnRectangleBox {
        min-width: 220px;
    }
}


@media (max-width: 576px) {
    .ourProductionFocusedWrapper {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        justify-content: center;
    }

    .ourProductionFocusedOn {
        border-radius: 20px;
        padding: 1.25rem;
    }

    .ourProductionFocusedLineWrap {
        flex-direction: column;
        gap: 1.25rem;
    }

    .ourProductionFocusedOnRectangleBox {
        width: 100%;
        max-width: 320px;
    }
}

.ourProductionFocusedOnRectangleBox {
    transition:
        background-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

/* ICON transition */
.ourProductionFocusedOnRectangleBox img {
    transition: filter .35s ease, transform .35s ease;
}

/* TEXT transition */
.ourProductionFocusedOnRectangleBox span {
    transition: color .35s ease;
}

/* HOVER EFFECT */
.ourProductionFocusedOnRectangleBox:hover {
    background-color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

/* Text color on hover */
.ourProductionFocusedOnRectangleBox:hover span {
    color: #539666;
    cursor: pointer;
}

/* Image invert on hover */
.ourProductionFocusedOnRectangleBox:hover img {
    filter: invert(1);
    transform: scale(1.05);
    cursor: pointer;
}


.sustainablePrinting {
    background-color: #36523E;
    width: 95%;
    margin-right: auto;
    border-radius: 0 300px 300px 0;
    align-items: center;
    gap: 24px;
    justify-content: end;
}

.sustainablePrinting p {
    line-height: 36px;
    margin-top: 2rem;
    text-align: end;
}


@media (max-width: 700px) {
    .sustainablePrinting {
        width: 100%;
        margin-left: 0;
        border-radius: 24px;
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .sustainablePrinting p {
        line-height: 28px;
        text-align: center;
    }

    .sustainablePrinting>div>div {
        justify-content: center;
    }
}

.ourProcessContainer {
    background-image: url("/static/img/aboutUs/aboutUsBgImg2.png");
    background-position: center;
    background-size: cover;
    height: 90vh;
    text-align: center;
    align-self: center;
    display: flex;
    justify-content: center;

}

.ourProcessSteps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    position: relative;
    text-align: center;
}

.ourProcessStepsROund {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #539666;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;

    transition: transform .35s ease;
}

/* Animated ring */
.ourProcessStepsROund::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(29, 224, 22, 0.83);
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity .35s ease,
        transform .35s ease;
}

/* Hover */
.ourProcessStepsROund:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.ourProcessStepsROund:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Icon pulse */
.ourProcessStepsROund img {
    transition: transform .35s ease;
}

.ourProcessStepsROund:hover img {
    transform: scale(1.15);
}


.ourProcessStepsROund img {
    width: 86px;
}

.ourProcessStepsROund span {
    font-size: 0.95rem;
}

.ourProcessSteps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    transform: translateY(-50%);
    z-index: 0;

    background: repeating-linear-gradient(to right,
            #539666 0 14px,
            transparent 14px 26px);
}

@media (max-width: 768px) {
    .ourProcessSteps {
        flex-direction: column;
        gap: 2rem;
    }

    .ourProcessSteps::before {
        display: none;
    }
}

.ourProcessStepsROund {
    transition: transform .3s ease, box-shadow .3s ease;
}

.ourProcessStepsROund:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .25);
}

@media (max-width: 1024px) {
    .ourProcessContainer {
        height: auto;
        padding: 4rem 1.5rem;
    }

    .ourProcessSteps {
        gap: clamp(1.5rem, 4vw, 3rem);
    }

    .ourProcessStepsROund {
        width: 180px;
        height: 180px;
    }

    .ourProcessStepsROund img {
        width: 64px;
    }

    .ourProcessSteps::before {
        left: 8%;
        width: 84%;
    }
}

@media (max-width: 576px) {
    .ourProcessContainer {
        padding: 3rem 1rem;
    }

    .ourProcessStepsROund {
        width: 140px;
        height: 140px;
    }

    .ourProcessStepsROund img {
        width: 48px;
    }

    .ourProcessStepsROund span {
        font-size: 0.85rem;
    }
}

/***************************************about us pages style end****************************************/


/***************************************contact us pages style start****************************************/

.fluorescentGreenText {
    color: #22FF4E;
}

.contactUsSectionContainerHeader {
    padding-top: clamp(8rem, 16vw, 16rem);
}

.contactUsSectionContainerForm {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Glass Card */
.glassForm {
    width: 100%;
    background: rgba(148, 148, 148, 0.252);
    /* #949494 glass */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(4px);

    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;

    padding: clamp(2rem, 4vw, 4rem);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

/* Inputs */
.glassForm input,
textarea {
    width: 60%;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 16px 21px;

    color: #ffffff;
    font-size: 0.95rem;
    outline: none;

    transition: border-color .3s ease, background .3s ease;
}

/* Placeholder */
.glassForm input::placeholder {
    color: #ffffff;
    opacity: 0.85;
    font-size: 17px !important;
}

/* Focus effect */
.glassForm input:focus,
.glassForm textarea:focus {
    border: 1px solid #27bf0f !important;

    box-shadow:
        0 0 0 2px rgba(39, 191, 15, 0.25),
        0 8px 24px rgba(39, 191, 15, 0.35);
}


.glassForm textarea::placeholder {
    color: #ffffff;
    opacity: 0.85;
    font-size: 17px !important;
}

/* Focus effect */
.glassForm textarea:focus {
    border-color: #ffffff;
    border: 1px solid #27bf0f !important;
}


.swal2-title {
    font-size: clamp(1.6rem, 4vw, 3rem) !important;
}


.glassFormWrapper {
    position: relative;
    width: 80%;
    margin: auto;
}

@keyframes floatWave {
    0% {
        transform: translate(0, 0) rotate(var(--r));
    }

    25% {
        transform: translate(6px, -8px) rotate(calc(var(--r) + 2deg));
    }

    50% {
        transform: translate(-6px, 6px) rotate(calc(var(--r) - 2deg));
    }

    75% {
        transform: translate(4px, -4px) rotate(calc(var(--r) + 1deg));
    }

    100% {
        transform: translate(0, 0) rotate(var(--r));
    }
}


.glassLogo {
    position: absolute;
    z-index: 0;
    opacity: 1.08;
    pointer-events: none;
    user-select: none;

    animation: floatWave infinite;
    animation-timing-function: ease-in-out;
    will-change: transform;
}

.logo1 {
    top: 70px;
    left: -90px;
    width: 162px;
    --r: 0deg;
    animation-duration: 9s;
}

.logo2 {
    top: 260px;
    left: 40px;
    width: 80px;
    --r: -28deg;
    animation-duration: 7s;
}

.logo3 {
    top: 60px;
    right: -45px;
    width: 162px;
    --r: 0deg;
    animation-duration: 10s;
}

.logo4 {
    top: 230px;
    right: -55px;
    width: 80px;
    --r: -35deg;
    animation-duration: 8s;
}

.logo5 {
    top: 57%;
    left: -41px;
    width: 80px;
    --r: 37deg;
    animation-duration: 9.5s;
}

.logo6 {
    top: 75%;
    left: -71px;
    width: 162px;
    --r: 0deg;
    animation-duration: 11s;
}

.logo7 {
    top: 50%;
    right: 35px;
    width: 90px;
    --r: 64deg;
    animation-duration: 8.5s;
}

.logo8 {
    top: 75%;
    right: -71px;
    width: 150px;
    --r: 0deg;
    animation-duration: 10.5s;
}



@media (max-width: 991px) {

    .glassFormWrapper {
        width: 90%;
    }

    .glassForm input,
    .glassForm textarea {
        width: 80%;
    }


    .logo1,
    .logo3,
    .logo6,
    .logo8 {
        width: 120px;
    }

    .logo2,
    .logo4,
    .logo5,
    .logo7 {
        width: 70px;
    }

    .logo1 {
        left: -60px;
    }

    .logo3 {
        right: -35px;
    }

    .logo6 {
        left: -50px;
    }

    .logo8 {
        right: -50px;
    }
}


@media (max-width: 576px) {

    .glassFormWrapper {
        width: 95%;
    }

    .glassForm input,
    .glassForm textarea {
        width: 100%;
    }

    /* Hide extra logos */
    .logo2,
    .logo4,
    .logo6,
    .logo8 {
        display: none;
    }


    .logo1 {
        top: -30px;
        left: -40px;
        width: 90px;
        transform: rotate(-20deg);
    }

    .logo3 {
        top: -30px;
        right: -40px;
        width: 90px;
        transform: rotate(18deg);
    }

    .logo5 {
        top: 60%;
        left: -30px;
        width: 70px;
        transform: rotate(25deg);
    }

    .logo7 {
        top: 60%;
        right: -30px;
        width: 70px;
        transform: rotate(-25deg);
    }
}

@media (max-width: 576px) {
    .glassForm {
        box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    }
}


/* ===============================
   Floating WhatsApp – Dock Style
================================ */

/* Base */
.floatingWhatsApp.dockSplit {
    position: fixed;
    bottom: clamp(18px, 4vw, 28px);
    right: 18px;

    display: flex;
    align-items: center;

    text-decoration: none;
    z-index: 9999;
}

/* WhatsApp Logo – Left Circle */
.waIconWrap {
    width: 56px;
    height: 56px;

    background: rgba(34, 255, 78, 0.95);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 2;
    animation: waZoomPulse 2.2s ease-in-out infinite;
}

.fa-whatsapp {
    font-size: 2rem !important;
}

.waIcon {
    width: 30px;
    height: 30px;
}

.waBadge {
    margin-left: -14px;
    padding: 6px 18px 6px 26px;
    background: rgba(5, 163, 19, 0.95);

    color: #ffffff;
    font-size: 15px !important;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0 999px 999px 0;
    box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .3s ease, box-shadow .3s ease;
}

@media (max-width: 568px) {

    .floatingWhatsApp.dockSplit {
        right: 14px;
        bottom: 18px;
    }

    /* Icon slightly smaller */
    .waIconWrap {
        width: 52px;
        height: 52px;
        animation-duration: 2.8s;
        /* slower = premium */
    }

    .fa-whatsapp {
        font-size: 1.8rem !important;
    }

    /* Hide text badge */
    .waBadge {
        margin-left: -14px;
        padding: 6px 18px 6px 26px;
        background: rgba(5, 163, 19, 0.95);
        color: #fff;
        font-size: 11px !important;
        font-weight: 500;
        white-space: nowrap;
        border-radius: 0 999px 999px 0;
        box-shadow: 0 10px 25px rgba(34, 255, 78, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: transform .3s ease, box-shadow .3s ease;
    }

}


/* Hover feel */
@media (hover: hover) {
    .floatingWhatsApp.dockSplit:hover .waIconWrap {
        transform: scale(1.08);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.389);
    }

    .floatingWhatsApp.dockSplit:hover .waBadge {
        transform: translateX(-4px);
        box-shadow: 0 18px 35px rgba(34, 255, 78, 0.234);
    }
}




/* Zoom in / out */
@keyframes waZoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}