/*** Home page **/
    /** home video section **/
        .mango-video-banner{
            position:relative;
            height:650px;
            overflow:hidden;
            }

            .mango-bg-video{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            object-fit:cover;
            }
            
            .mango-content{
            position:relative;
            z-index:5;
            height:650px;
            display:flex;
            align-items:center;
            }

            .mango-title{
            color:#fff;
            font-size:48px;
            font-weight:700;
            }
            
            .wave-wrapper{
            position:absolute;
            bottom:0;
            width:100%;
            height:140px;
            overflow:hidden;
            z-index:5;
            }

            .wave{
            position:absolute;
            width:200%;
            height:140px;
            animation:waveMove 10s linear infinite;
            }

            .wave-back{
            opacity:0.8;
            animation-duration:14s;
            }

            .wave-front{
            animation-duration:8s;
            }

            @keyframes waveMove{
            0%{
            transform:translateX(0);
            }
            100%{
            transform:translateX(-50%);
            }
            }
            @media(max-width:768px){

            .mango-video-banner{
            height:500px;
            }

            .mango-title{
            font-size:32px;
            margin-bottom:20px;
            }

            .mango-text{
            font-size:14px;
            }

            }
    /** end home section **/

    .card-section{
        padding:15px;
        display:flex;
        justify-content:center;
        background:#f9f9f9;
    }

    .info-card{
        /* max-width:750px; */
        background:#fff;
        padding:40px 50px;
        border-radius:12px;
        text-align:center;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
        animation:fadeUp 1s ease;
        transition:all 0.4s ease;
    }

    .info-card:hover{
        transform:translateY(-8px);
        box-shadow:0 18px 40px rgba(0,0,0,0.12);
    }

    .info-card h5{
        font-size:22px;
        font-weight:600;
        margin-bottom:15px;
        color:#333;
    }

    .info-card p{
        font-size:15px;
        color:#666;
        line-height:1.7;
    }

    .card-line{
        width:60px;
        height:3px;
        background:#f4a100;
        margin:20px auto 0;
        border-radius:2px;
    }

    @keyframes fadeUp{
        from{
            opacity:0;
            transform:translateY(40px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }

    .wrapper{
        width:100%;
        overflow:hidden;
        padding:20px 0;
    } 
    .photobanner{
        display:flex;
        align-items:center;
        gap:25px;
        width:max-content;
        animation: scrollGallery 35s linear infinite;
    } 
    .photobanner a{
        flex-shrink:0;
    }

    .photobanner img{ 
        box-shadow:2px 2px 8px #8a8a8a;
        width:400px;
        height:355px;
        object-fit:cover;
        border-radius:12px;
        transition:0.4s;
    }
    .photobanner img:hover{
        transform:scale(1.05);
    }

    @keyframes scrollGallery{
        from{
            transform:translateX(0);
        }
        to{
            transform:translateX(-33.33%);
        }
    }

     .loader_desk_circle_text{ display: block; }    
    .loader_mbl_circle_text{ display: none; }  
    @media (max-width:768px){
        .loader_desk_circle_text{ display: none; }    
        .loader_mbl_circle_text{ display: block; }    
    }

    @media (max-width:768px){  
        .photobanner img{ 
            box-shadow:2px 2px 8px #8a8a8a;
            width:260px;
            height:210px;
            object-fit:cover;
            border-radius:12px;
            transition:0.4s;
        } 
    }

    /*** out process **/
         .leaf-btn{
            display:inline-block;
            padding:12px 28px;
            background:#2e7d32 !important;
            color:#fff;
            text-decoration:none;
            font-weight:600;
            position:relative; 
            /* border-radius: 0 50px 0 50px; */
            border-radius: 0 0px 0 0px;
            /* transform: rotate(-5deg);  */
            transform: rotate(0deg); 
            transition:0.3s;
        }

        .leaf-btn:hover{
            background:#1b5e20;
            transform: rotate(0deg) scale(1.05);
            border-radius: 0 50px 0 50px ;
        } 

        .video-section{
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }

        /* Background Blur */
        .video-bg{
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            filter: blur(20px) brightness(0.6);
        }

        /* Center Video */
        .video-center{
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-center video{
            height: 500px;    
            width: auto;
            border-radius: 12px;
        }
    /** end our process **/

    @media (max-width: 767px) {
        .clapat-nav-wrapper{
            background-color: #FFF !important;
        }

        .flexnav li a{
            border-bottom: 1px solid rgb(3 122 74);
            color: #ee1f25;
        }

        .button-icon{ color: #ee1f25 !important; }
    }

 .mango-section{
    padding:80px 5%;
    background:#f8f8f8;
    }

    .container{
    display:flex;
    align-items:center;
    gap:60px;
    }

    /* IMAGE GRID */

    .mango-grid{
    display:flex;
    gap:20px;
    flex:1 ;
    }

    .mango-grid .img_col{
    display:flex;
    flex-direction:column;
    gap:20px;
    }

    .mango-grid img{
    width:100%;
    border-radius:6px;
    object-fit:cover;
    transition:0.4s;
    }

    .mango-grid img:hover{
    transform:scale(1.05);
    }

    /* CONTENT */

    .mango-content{
    flex:1;
    }
    

    /* MOBILE RESPONSIVE */

    @media(max-width:900px){

    .container{
    flex-direction:column;
    }

    .mango-content{
    text-align:center;
    }

    .mango-content h2{
    font-size:28px;
    }

    }

    .fade-left{
        opacity:0;
        transform:translateX(60px);
        transition:all 1s ease;
    }

    .fade-right{
        opacity:0;
        transform:translateX(-60px);
        transition:all 1s ease;
    }

    .fade-up{
        opacity:0;
        transform:translateY(60px);
        transition:all 1s ease;
    }

    .show{
        opacity:1;
        transform:translate(0);
    }
    /** animation **/
    /* hidden before scroll */
        .animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        /* when visible */
        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* left animation */
        .from-left {
            transform: translateX(-80px);
        }

        .from-left.show {
            transform: translateX(0);
        }

        /* right animation */
        .from-right {
            transform: translateX(80px);
        }

        .from-right.show {
            transform: translateX(0);
        }

        /* top animation */
        .from-top {
            transform: translateY(-80px);
        }

        .from-top.show {
            transform: translateY(0);
        }
    /** end animation **/

/** new slider 1 ***/
    .containerrs {
    position: relative;
    margin: auto;
    width: 100%;
    /* width: 95%; */
    /* max-width: 900px; */
    height: 420px;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
    border-radius: 0px;
    overflow: hidden;
    }

    .containerrs .slides {
    border-radius: 0px;
    }

    .containerrs .slides .items {
    width: 200px;
    height: 260px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    /* border-radius: 20px; */
    border-radius: 0px;
    box-shadow: 0 30px 50px #505050;
    background-position: center;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
    }

    /* active slides */

    .slides .items:nth-child(1),
    .slides .items:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
    }

    .slides .items:nth-child(3) {
    left: 60%;
    }

    .slides .items:nth-child(4) {
    left: calc(60% + 210px);
    }

    .slides .items:nth-child(5) {
    left: calc(60% + 420px);
    }

    .slides .items:nth-child(n + 6) {
    left: calc(60% + 630px);
    opacity: 0;
    }

    /* content */

    .items .contents {
    position: absolute;
    top: 50%;
    left: 60px;
    width: 320px;
    color: #fff;
    /* color: #ec2a2f; */
    transform: translateY(-50%);
    font-family: system-ui;
    display: none;
    }

    .slides .items:nth-child(2) .contents {
    display: block;
    }

    .contents .name {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    animation: animate 1s ease-in-out forwards;
    }

    .contents .des {
    margin: 10px 0 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s forwards;
    }

    .contents button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.7);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s forwards;
    }

    .contents button:hover {
    background: white;
    }

    /* animation */

    @keyframes animate {
    from {
        opacity: 0;
        transform: translateY(80px);
        filter: blur(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
    }

    /* buttons */

    .buttons {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    }

    .buttons button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid #000000bd;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: 0.3s;
    }

    .buttons button:hover {
    transform: scale(1.1);
    }

    /* ================= RESPONSIVE ================= */

    /* Tablet */

    @media (max-width: 992px) {

    .containerrs {
        height: 380px;
    }

    .containerrs .slides .items {
        width: 100%;
        height: 100%;
    }

    .slides .items:nth-child(3) {
        left: 65%;
    }

    .slides .items:nth-child(4) {
        left: calc(65% + 170px);
    }

    .slides .items:nth-child(5) {
        display: none;
    }

    }

    /* Mobile */

    @media (max-width: 600px) {

    .containerrs {
        height: 420px;
    }

    .slides .items:nth-child(3),
    .slides .items:nth-child(4),
    .slides .items:nth-child(5) {
        display: none;
    }

    .items .contents {
        left: 20px;
        width: 85%;
    }

    .contents .name {
        font-size: 26px;
    }

    .contents .des {
        font-size: 14px;
    }

    }
/** end new slider 1 **/


/** new slider 2 **/
    :root {
        --gap: 1.25rem;
        --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --closed: 5rem;
        --open: 30rem;
        --accent: #ff6b35;
        }


        .head {
        max-width: 1400px;
        margin: auto;
        padding: 70px 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 2rem;
        }
        .head h2 {
        font: 400 1.5rem/1.2 Inter, sans-serif;
        color: #fff;
        }
        @media (min-width: 1024px) {
        .head h2 {
            font-size: 2.25rem;
        }
        }
        .nav-btn {
        width: 2.5rem;
        height: 2.5rem;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        }
        .nav-btn:hover {
        background: var(--accent);
        }
        .nav-btn:disabled {
        opacity: 0.3;
        cursor: default;
        }

        .slider {
        max-width: 1400px;
        margin: auto;
        overflow: hidden;
        }

        .controls {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        }
        .track {
        display: flex;
        gap: var(--gap);
        align-items: flex-start;
        justify-content: center;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
        }
        .track::-webkit-scrollbar {
        display: none;
        }

        .project-card {
        position: relative;
        flex: 0 0 var(--closed);
        height: 26rem;
        border-radius: 1rem;
        overflow: hidden;
        cursor: pointer;
        transition: flex-basis var(--speed), transform var(--speed);
        }
        .project-card[active] {
        flex-basis: var(--open);
        transform: translateY(-6px);
        box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
        }
        .project-card__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75) saturate(75%);
        transition: filter 0.3s, transform var(--speed);
        }
        .project-card:hover .project-card__bg {
        filter: brightness(0.9) saturate(100%);
        transform: scale(1.06);
        }

        .project-card__content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
        padding: 0;
        background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
        z-index: 2;
        }
        .project-card__title {
        color: #fff;
        font-weight: 700;
        font-size: 1.35rem;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        }
        .project-card__thumb,
        .project-card__desc,
        .project-card__btn {
        display: none;
        }

        .project-card[active] .project-card__content {
        flex-direction: row;
        align-items: center;
        padding: 1.2rem 2rem;
        gap: 1.1rem;
        }
        .project-card[active] .project-card__title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.4rem;
        }
        .project-card[active] .project-card__thumb,
        .project-card[active] .project-card__desc,
        .project-card[active] .project-card__btn {
        display: block;
        }

        .project-card__thumb {
        width: 133px;
        height: 269px;
        border-radius: 0.45rem;
        object-fit: cover;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        }
        .project-card__desc {
        color: #ddd;
        font-size: 1rem;
        line-height: 1.4;
        max-width: 16rem;
        }
        .project-card__btn {
        padding: 0.55rem 1.3rem;
        border: none;
        border-radius: 9999px;
        background: var(--accent);
        color: #fff;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        }
        .project-card__btn:hover {
        background: #ff824f;
        }

        .dots {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        padding: 20px 0;
        }
        .dot {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        cursor: pointer;
        transition: 0.3s;
        background: #000;
        }
        .dot.active {
        background: var(--accent);
        transform: scale(1.2);
        }

        @media (max-width: 767px) {
            :root {
                --closed: 4rem;
                --open: 22rem;
            }
            .head {
                padding: 50px 20px 30px;
            }
            .track {
                flex-direction: column;
                scroll-snap-type: y mandatory;
                align-items: center;
                justify-content: flex-start;
                padding-bottom: 0;
            }
            .project-card {
                height: 20rem;
            }
            .project-card__title {
                font-size: 1.1rem;
                writing-mode: horizontal-tb;
                transform: none;
                text-align: center;
                padding-inline: 0.3rem;
            }
            .nav-btn {
                width: 2rem;
                height: 2rem;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 767px) {
        :root {
            --closed: 100%;
            --open: 100%;
            --gap: 0.8rem;
        }

        .head {
            padding: 30px 15px 20px;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        .slider {
            padding: 0 15px;
        }

        .track {
            flex-direction: column;
            scroll-snap-type: y mandatory;
            gap: 0.8rem;
            padding-bottom: 20px;
        }

        .project-card {
            height: auto;
            min-height: 80px;
            flex: 0 0 auto;
            width: 100%;
            scroll-snap-align: start;
        }

        .project-card[active] {
            min-height: 300px;
            transform: none;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .project-card__content {
            flex-direction: row;
            justify-content: flex-start;
            padding: 1rem;
            align-items: center;
            gap: 1rem;
        }

        .project-card__title {
            writing-mode: horizontal-tb;
            transform: none;
            font-size: 1.2rem;
            margin-right: auto;
        }

        .project-card__thumb,
        .project-card__desc,
        .project-card__btn {
            display: none;
        }

        .project-card[active] .project-card__content {
            align-items: flex-start;
            padding: 1.5rem;
        }

        .project-card[active] .project-card__title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .project-card[active] .project-card__thumb {
            width: 200px;
            height: 267px;
            border-radius: 0.35rem;
            margin-bottom: 1rem;
        }

        .project-card[active] .project-card__desc {
            font-size: 0.95rem;
            max-width: 100%;
            margin-bottom: 1rem;
        }

        .project-card[active] .project-card__btn {
            align-self: center;
            width: 100%;
            text-align: center;
            padding: 0.7rem;
        }

        .dots {
            display: none;
        }

        .controls {
            width: 100%;
            justify-content: space-between;
            padding: 0 15px 20px;
        }

        .nav-btn {
            position: static;
            transform: none;
        }
        }

/** end new slider 2 **/
    



/** end home page  ***/


/** Universal css *****/
    a{ text-decoration: none !important; }

    .product-section{
padding:80px 20px;
background:#f8faf6;
}

.section-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:50px;
}

/* .product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
} */
.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;
}

/* Flip card */

.flip-card{
perspective:1000px;
opacity:0;
transform:translateY(60px);
transition:all .7s ease;
}

.flip-card.show{
opacity:1;
transform:translateY(0);
}

.flip-card-inner{
position:relative;
width:100%;
height:400px;
transition:transform .7s;
transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
transform:rotateY(180deg);
}

.flip-card-front,
.flip-card-back{
position:absolute;
width:100%;
height:100%;
backface-visibility:hidden;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.flip-card-front{
background:white;
}

.flip-card-front img{
width:100%;
height:280px;
object-fit:cover;
}

.flip-card-front h3{
padding:15px;
font-size: 22px;
text-align:center;
}

.flip-card-back{
background:#ffb300;
color:white;
transform:rotateY(180deg);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:20px;
text-align:center;
}

.flip-card-back p{
font-size:14px;
margin:10px 0 20px;
}

.btn{
background:#1b5e20;
padding:10px 20px;
border-radius:25px;
text-decoration:none;
color:black;
font-weight:600;
}
@media(max-width:992px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.product-grid{
grid-template-columns:1fr;
}

}

    /*** */
            /* @media (max-width: 767px) { 
                .snap-slider-holder {
                    height: 55vh;
                    min-height: 55vh;
                    overflow: hidden;
                    position: relative;
                } 
                .snap-slide img,
                .snap-slide video {
                    width: 100%;
                    height: auto;
                    min-height: 100%;
                    object-fit: cover;
                    object-position: center;
                }

            } */
            #heroSlider{
            height:100vh;
            overflow:hidden;
            }

            .hero-img,
            .hero-video{
            width:100%;
            height:100vh;
            object-fit:cover;
            }

            .carousel-item{
            position:relative;
            }
        

            /* Mobile */
            @media(max-width:768px){
            /* #heroSlider{
            height:auto;
            }

            .hero-img,
            .hero-video{
            width:100%;
            height:auto;
            object-fit:contain;
            } */
            #heroSlider{
            height:70vh;
            }  
            }

            .slider-container {
        margin: 0 auto;
        /* margin-top: 5rem; */
        position: relative;
        width: 100%;
        max-width: 800px;
        height: 500px;
        border-radius: 0.7rem;
        overflow: hidden;
        }

        .before-image,
        .after-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        }

        /* Styling the Before/After text */
        .before-text,
        .after-text {
        position: absolute;
        font-family: system-ui;
        font-size: 14px;
        font-weight: 600;
        color: #3a3a3a;
        z-index: 4;
        padding: 10px 20px;
        background-color: #ffffff9e;
        border-radius: 0.3rem;
        letter-spacing: 2px;
        transition: opacity 0.3s ease-in-out;
        }

        /* Before text */
        .before-text {
        left: 20px; /* Position text to the left */
        top: 20px;
        z-index: 5;
        }

        /* After text */
        .after-text {
        right: 20px; /* Position text to the right */
        top: 20px;
        z-index: 3;
        }

        /* Hide the After text initially */
        .after-image .after-text {
        visibility: visible;
        z-index: 3;
        }

        .after-image {
        clip-path: inset(0 50% 0 0);
        }

        .slider-handle {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0px;
        height: 100%;
        background-color: #fff;
        cursor: pointer;
        z-index: 2;
        }

        .slider-line {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        z-index: 1;
        }
        .pulse-container {
        position: relative;
        display: inline-block;
        }

        .pulse-container::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 70px; /* Larger than the SVG */
        height: 70px;
        border-radius: 50%;
        background-color: #ffffff; /* Color of the pulse */
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.6;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.8);
            opacity: 0;
        }
        }

        .slider-line svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        cursor: pointer;
        }
        /* Prevent text/image selection while dragging */
        .slider-container,
        .before-image img,
        .after-image img {
        user-select: none; /* Disable selection on most browsers */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE10+ */
        }

        .slider-handle,
        .slider-line {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        }

    /*** */

    .popup-overlay{
        position: fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background: rgba(0,0,0,0.6);
        display:none;
        justify-content:center;
        align-items:center;
        z-index:9999;
    }

    .popup-box{
        background:#fff;
        padding:25px;
        width:400px;
        border-radius:8px;
        position:relative;
        animation: popupShow 0.3s ease;
    }

    .close-btn{
        position:absolute;
        top:10px;
        right:15px;
        font-size:22px;
        cursor:pointer;
    }

    @keyframes popupShow{
        from{
            transform:scale(0.7);
            opacity:0;
        }
        to{
            transform:scale(1);
            opacity:1;
        }
    }

    @media(max-width:768px){
        .whatsapp-float {
            width: 15%;
        }
    }

    .whatsapp-float {
        position: fixed;
        left: 1px;          /* Distance from right side */
        top: 80%;             /* Center vertically */
        transform: translateY(-50%);
        z-index: 1000;
        background: #3be159;
        /* width: 15%; */
        border-radius: 5px 25px 25px 0px;
        transition: width 0.4s ease;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: 0.3s;
        float: right;
    }

    .whatsapp-float:hover {
        /* width: 5%; */
    }
    .whatsapp-float img:hover {
        /* transform: scale(1.1); */
    }

    .floting_call_us{ 
        top: 88% !important;
        background: #018f99 !important;
    }

    .rotate-img {
    /* transition: transform 0.4s ease; */
    }

    .rotate-img:hover {
    /* transform: rotate(359deg) scale(1.1); */
    }

    @media (max-width: 768px) {
        .whatsapp-float img {
            width: 40px;
            height: 40px;
        }

        .floting_call_us{ 
            top: 87% !important;
        }
    }

    main{ background-color: #FFF !important; }
    /** loader css */
        .main {
        position: relative;
        width: 80vw;  /* responsive width */
        max-width: 400px; /* optional max width */
        aspect-ratio: 1/1; /* keep square */
        display: grid;
        place-items: center;
        }

        /* ===== Rotating Text ===== */
        .rotating-text {
        position: absolute;
        width: 100%;
        height: 100%;
        animation: rotate-circle 20s linear infinite;
        z-index: 2;
        }

        @keyframes rotate-circle {
        to { transform: rotate(360deg); }
        }

        .text {
        font-weight: 600;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        font-family: 'Kanit', sans-serif;
        font-size: calc(10px + 0.5vw);
        fill: #e7110e;
        }

        /* ===== GIF Circle ===== */
        .gif-circle {
        width: 70%; /* bigger circle */
        height: 70%;
        border-radius: 50%;
        overflow: hidden;
        display: grid;
        place-items: center;
        z-index: 1;
        }

        .gif-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* transform: scaleX(-1);  */
        }

        .gif-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* transform: scaleX(-1);  */
        }
  @media (max-width: 650px) {
      
	.text {      
        font-size: calc(14px + 0.5vw);
        
        }
        }
    /*** end loader css */

        /* .gradient-bg-hero{ background-image: url('<?= base_url('public/assets/front_end/images/bg-image-3.png') ?>') !important; } */
        /* .gradient-bg-hero{ background-image: url('../images/bg-image-3.png') !important; } */
        .gradient-bg-hero{ background-image: url('../images/bg-imagess-3.jpeg') !important; }
        /* .contact-gradient-bg-hero{ background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-image-3.png') !important; } */
        .dark-section-wrapper:has(.contact-gradient-bg-hero){ padding:15px 0px 15px 0px; background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-image-3.png') !important; }
        .crystal-card .item-image{ position: unset !important; }
        .has-animation .crystal-card{ width: revert !important; height: revert !important; }
        .gradient-bg-hero1{ background-image: url('../images/bg-image-4.png') !important; }
        /* .clapat-footer{ background-image: url('</?= base_url('public/assets/front_end/images/Sticky-bg-image.png') ?>') !important; } */
        .clapat-footer{ background: linear-gradient(90deg, #fab71e, #e8632f) !important; }
        .background_color{ background: linear-gradient(90deg, #fab71e, #e8632f) !important; }
        /* header{ background: linear-gradient(90deg, #fab71e, #e8632f) !important; } */
      /* header{ background: linear-gradient(90deg, #fab71e, #f8f8f89c) !important; } */
      /* header{ background: linear-gradient(90deg, #ffffff, #fab71e) !important; } */

        header{background: linear-gradient(90deg, #ffffff 60%, #fab71e 100%) !important; }

        /* .hero-subtitle{ bottom: 5px !important; } */
        .hero-subtitle{ bottom: 0px !important; }
        #hero #hero-caption .inner{ margin-bottom:10px !important; }
        
/*** end Universal CSS ******/



/*** Home page CSS *****/
    /* .light-section-wrapper {
        background: #ccc !important;
        border: 1 px solid #ccc !important;
    } */

    .slide-title{ width: 100% !important; text-align: center !important; font-size: 35px !important; }
    /* .snap-slider-captions .slide-title, .snap-slider-captions .slide-subtitle{ line-height: 30px !important; } */
    .no-click {
        pointer-events: none !important;
    }


    .page-nav-wrap {
        position: relative;
        width: 100%;
        /* height: 300px; */
        overflow: hidden;
        /* background: skyblue; */
    }

    /* common bird styles */
    /* wrapper positions the bird vertically */
    .bird-wrapper {
        position: absolute;
        width: 150px;
    }

    /* vertical floating */
    .bird {
        width: 100px;
        animation: floatY 3s ease-in-out infinite;
    }

    /* left → right looping */
    .left-right {
        left: -150px;  /* start off-screen */
        animation: flyLR 10s linear infinite;
    }

    /* right → left looping */
    .right-left {
        right: -150px;  /* start off-screen */
        transform: scaleX(-1);
        animation: flyRL 10s linear infinite;
    }

    /* center → right looping */
    .center-fly {
        left: 50%;
        transform: translateX(-50%);
        animation: flyCenter 10s linear infinite;
    }

    /* different vertical positions */
    .b1 { top: 20%; }
    .b2 { top: 45%; }
    .b3 { top: 70%; }

    /* HORIZONTAL LOOPING ANIMATIONS */
    @keyframes flyLR {
        0%   { left: -150px; }
        100% { left: calc(100%); } /* ends at right edge */
    }

    @keyframes flyRL {
        0%   { right: -150px; }
        100% { right: calc(100%); } /* ends at left edge */
    }

    @keyframes flyCenter {
        0%   { left: 50%; transform: translateX(-50%); }
        100% { left: 100%; transform: translateX(-50%); } /* end at right edge */
    }

    /* vertical floating */
    @keyframes floatY {
        0%   { transform: translateY(0); }
        50%  { transform: translateY(-30px); }
        100% { transform: translateY(0); }
    }
/*** End home page css ***/


/*** Product CSS ***/
/* .pinned-section{ background-image: url("../images/bg-image-4.png") !important; } */
.pinned_element_right{ padding: 0px 0px 0px 10px !important; }
.pinned_element_left{ padding: 0px 15px 0px 15px !important; }
.product_pinned_section_card{ background-image: url("../images/bg-image-2.png") !important; box-shadow: 0 0px 20px 0px; }
/* .showcase-portfolio{ width: calc(100% - 150px) !important; } */
/* .showcase-portfolio{ padding-top:0px !important; flex-wrap: unset !important; } */
    /*** product list ***/
    /* .showcase-portfolio .slide-caption{opacity: 1; background: linear-gradient(359deg, #feb91480, transparent);} */
    /*** end product list ***/
/*** End product CSS ***/

/*** Our Process **********/
.main-timeline7{overflow:hidden;position:relative}
.main-timeline7 .timeline{width:50%;float:left;z-index:1;position:relative}
.main-timeline7 .timeline:after,.main-timeline7 .timeline:before{content:"";display:block;clear:both}
.main-timeline7 .timeline:before{content:"";width:40px;height:90%;background:#727cb6;position:absolute;top:10%;right:-20px}
.main-timeline7 .timeline:last-child:before{height:0}
.main-timeline7 .timeline-icon{width:80px;height:80px;border-radius:50%;background:#727cb6;overflow:hidden;text-align:center;position:absolute;top:0;right:-40px;z-index:3}
.main-timeline7 .timeline-icon:before{content:"";width:60px;height:60px;border-radius:50%;background:#fff;border:2px solid #727cb6;box-shadow:0 0 0 4px #a5afe4;margin:auto;position:absolute;top:0;left:0;bottom:0;right:0}
.main-timeline7 .timeline-icon i{font-size:35px;color:#303a3b;line-height:80px;z-index:1;position:relative}
.main-timeline7 .year{display:block;padding:0 60px 0 30px;font-size:30px;color:#303a3b;text-align:right;border-bottom:2px solid #303a3b;z-index:2;position:relative}
.main-timeline7 .year:before{content:"";display:block;width:30px;height:30px;border-radius:50%;background:#727cb6;border:5px solid #fff;box-shadow:0 0 0 4px #727cb6;margin:auto;position:absolute;bottom:-15px;left:4px}
.main-timeline7 .year:after{content:"";border-left:10px solid #303a3b;border-top:10px solid transparent;border-bottom:10px solid transparent;position:absolute;bottom:-11px;left:50px}
.main-timeline7 .timeline-content{padding:18px 60px 18px 40px;text-align:right;position:relative;z-index:1}
.main-timeline7 .timeline-content:after,.main-timeline7 .timeline-content:before{content:"";width:80px;height:150px;border-radius:50%;background:#fff;position:absolute;top:-7%;right:15px;z-index:-1}
.main-timeline7 .timeline-content:after{left:auto;right:-95px}
.main-timeline7 .timeline:last-child .timeline-content:after,.main-timeline7 .timeline:last-child .timeline-content:before{width:0;height:0}
.main-timeline7 .title{font-size:22px;font-weight:700;color:#727cb6;margin-top:0}
.main-timeline7 .description{font-size:15px;color:#7f8386;line-height:25px}
.main-timeline7 .timeline:nth-child(2){margin-top:140px}
.main-timeline7 .timeline:nth-child(even){margin-bottom:80px}
.main-timeline7 .timeline:nth-child(odd){margin:-140px 0 0}
.main-timeline7 .timeline:first-child,.main-timeline7 .timeline:last-child:nth-child(even){margin:0!important}
.main-timeline7 .timeline:nth-child(2n) .timeline-icon,.main-timeline7 .timeline:nth-child(2n):before{right:auto;left:-20px;background:#e77e21}
.main-timeline7 .timeline:nth-child(2n) .timeline-icon{left:-40px}
.main-timeline7 .timeline:nth-child(2n) .year{padding:0 30px 0 60px;text-align:left}
.main-timeline7 .timeline:nth-child(2n) .year:before{left:auto;right:3px}
.main-timeline7 .timeline:nth-child(2n) .year:after{border-left:none;border-right:10px solid #303a3b;right:50px}
.main-timeline7 .timeline:nth-child(2n) .timeline-content{padding:18px 40px 18px 60px;text-align:left}
.main-timeline7 .timeline:nth-child(2n) .timeline-content:before{left:-95px}
.main-timeline7 .timeline:nth-child(2n) .timeline-content:after{left:15px}
.main-timeline7 .timeline:nth-child(2n) .timeline-icon:before{border-color:#e77e21;box-shadow:0 0 0 4px #f1a563}
.main-timeline7 .timeline:nth-child(2n) .year:before{background:#e77e21;box-shadow:0 0 0 4px #e77e21}
.main-timeline7 .timeline:nth-child(2n) .title{color:#e77e21}
.main-timeline7 .timeline:nth-child(3n) .timeline-icon,.main-timeline7 .timeline:nth-child(3n):before{background:#008b8b}
.main-timeline7 .timeline:nth-child(3n) .timeline-icon:before{border-color:#008b8b;box-shadow:0 0 0 4px #50b5b4}
.main-timeline7 .timeline:nth-child(3n) .year:before{background:#008b8b;box-shadow:0 0 0 4px #008b8b}
.main-timeline7 .timeline:nth-child(3n) .title{color:#008b8b}
.main-timeline7 .timeline:nth-child(4n) .timeline-icon,.main-timeline7 .timeline:nth-child(4n):before{background:#ed687c}
.main-timeline7 .timeline:nth-child(4n) .timeline-icon:before{border-color:#ed687c;box-shadow:0 0 0 4px #f798a8}
.main-timeline7 .timeline:nth-child(4n) .year:before{background:#ed687c;box-shadow:0 0 0 4px #ed687c}
.main-timeline7 .timeline:nth-child(4n) .title{color:#ed687c}
@media only screen and (max-width:990px){.main-timeline7 .timeline{width:100%}
    .main-timeline7 .timeline:nth-child(even),.main-timeline7 .timeline:nth-child(odd){margin:0}
    .main-timeline7 .timeline:before,.main-timeline7 .timeline:nth-child(2n):before{width:30px;height:100%;left:25px}
    .main-timeline7 .timeline-icon,.main-timeline7 .timeline:nth-child(2n) .timeline-icon{left:0}
    .main-timeline7 .timeline:nth-child(2n) .year,.main-timeline7 .year{text-align:left;padding:0 30px 0 100px}
    .main-timeline7 .timeline:nth-child(2n) .year:before,.main-timeline7 .year:before{left:auto;right:4px}
    .main-timeline7 .year:after{left:auto;right:50px;border-right:10px solid #303a3b;border-left:none}
    .main-timeline7 .timeline-content .description{color:#666}
    .main-timeline7 .timeline-content,.main-timeline7 .timeline:nth-child(2n) .timeline-content{text-align:left;padding:18px 40px 18px 100px}
    .main-timeline7 .timeline-content:after,.main-timeline7 .timeline-content:before{width:0;height:0}
}
.main-timeline7 .timeline-icon:before{ background: none !important; }
/*** End our process **********/


/** Out process icon ***/
.icon-glow {
    border-radius: 50%;
    transition: 
    box-shadow 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.icon-glow:hover {
    box-shadow: 0px 5px 30px 0px;
    border-radius: 50%;
    transform: translateY(-4px);
}
/*** end our process icon ****/

/*** gallery fancybox ***/
section{
    padding: 50px 0;
}

.gallery-title{
    font-size: 36px;
    color: #3F6184;
    text-align: center;
    font-weight: 500;
    /* margin-bottom: 70px; */ /** 07 Jan 2026 **/
}
.filter-button{
    font-size: 18px;
    border: 2px solid #3F6184;
	padding:5px 10px;
    text-align: center;
    color: #3F6184;
    margin-bottom: 30px;
	background:transparent;
}
.filter-button:hover,
.filter-button:focus,
.filter-button.active{
    color: #ffffff;
    background-color:#3F6184;
	outline:none;
}
.gallery_product{
    margin: 0px;
	padding:0;
	position:relative;
}
.gallery_product .img-info{
	position: absolute;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
	overflow:hidden;
	color:#fff;
	top:0;
	display:none;
	   -webkit-transition: 2s;
    transition: 2s;
}

.gallery_product:hover .img-info{
	display:block;
   -webkit-transition: 2s;
    transition: 2s;
}

    /** crystal effect **/
        .crystal-card {
            position: relative;
            width: 320px;
            height: 400px;
            overflow: hidden;
            border-radius: 14px;
        }

        .crystal-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

            /* Glass / crystal overlay */
        .crystal-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                135deg,
                rgba(255,255,255,0.35) 0%,
                rgba(255,255,255,0.15) 30%,
                rgba(255,255,255,0.05) 60%,
                rgba(255,255,255,0.25) 100%
                );
            /* backdrop-filter: blur(2px); */
            pointer-events: none;
        }

            /* Diamond shine animation */
        .shine {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                120deg,
                transparent 40%,
                rgba(255,255,255,0.8) 50%,
                transparent 60%
            );
            transform: rotate(25deg);
            animation: shineMove 3s infinite;
            pointer-events: none;
        }

        @keyframes shineMove {
            0% {
                transform: translateX(-100%) rotate(25deg);
            }
            100% {
                transform: translateX(100%) rotate(25deg);
            }
        }

        .crystal-card:hover::after  {
            /*opacity: .9;*/
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }
        .black-logo,
        .white-logo {
            width: 140px !important;        
            height: 92px !important;       
            object-fit: contain;  
            display: block;
        }
        @media(max-width:768px){
            .black-logo,
            .white-logo {
                width: 130px !important;
                height: 90px !important;
            }
        }
    /** end crystal effect **/

/** end gallery fancybox ***/

/**** about us ***********/
/* Section */

.custom-section{
    padding:80px 20px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    background:#f8f8f8;
}

/* Card */

.custom-card{
    max-width:1000px;
    width:100%;
    background:#fff;
    padding:45px;
    border-radius:12px;
    position:relative;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:.35s;
}

/* Hover */

.custom-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* Gradient line */

.custom-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff7a18,#ffb347);
}

/* Title */

.card-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

/* Subtitle */

.card-subtitle{
    color:#ff7a18;
    font-weight:600;
    margin-bottom:10px;
}

/* Text */

.card-text{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* Director image */

.card-img{
    text-align:center;
    margin-bottom:15px;
}

.card-img img{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
.card-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
    position:relative;
    display:inline-block;
}

/* underline */

.card-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:60px;
    height:3px;
    background:#ff7a18;
    transition:0.3s;
}

/* hover pe line badhegi */

.custom-card:hover .card-title::after{
    width:120px;
}

/* Director grid */

.director-section .custom-card{
    /* max-width:320px; */
    max-width:1200px;
    text-align:center;
}
/* ===================== */
/* Tablet Responsive */
/* ===================== */

@media (max-width:992px){

.custom-section{
    padding:60px 15px;
}

.custom-card{
    padding:35px;
}

.card-title{
    font-size:24px;
}

.card-text{
    font-size:15px;
}

.director-section .custom-card{
    max-width:45%;
}

}


/* ===================== */
/* Mobile Responsive */
/* ===================== */

@media (max-width:768px){

.custom-section{
    padding:40px 15px;
    gap:20px;
}

.custom-card{
    padding:25px;
}

.card-title{
    font-size:22px;
}

.card-text{
    font-size:14px;
    line-height:1.7;
}

.card-img img{
    width:110px;
    height:110px;
}

.director-section .custom-card{
    max-width:100%;
}

}


/* ===================== */
/* Small Mobile */
/* ===================== */

@media (max-width:480px){

.custom-section{
    padding:30px 12px;
}

.custom-card{
    padding:20px;
}

.card-title{
    font-size:20px;
}

.card-text{
    font-size:13px;
}

.card-img img{
    width:95px;
    height:95px;
}

}


/* ===================== */
/* marquee tag */
/* ===================== */
 .marquee {
        width: 100%;
        overflow: hidden;
        background: #007948;
        color: #fff;
        padding: 10px 0;
    } 
    .marquee-content {
        display: flex;
        gap: 60px;
        width: max-content;
        animation: marquee-scroll 15s linear infinite;
    } 
    .marquee-content span {
        font-size: 18px;
        white-space: nowrap;
    } 
    /* Pause on hover */
    .marquee:hover .marquee-content {
        animation-play-state: paused;
    } 
    @keyframes marquee-scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }
    /************************************/