@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    overflow-x: hidden;
    font-family: "Spectral", serif !important;
    /* background-image: url(/assets/temp.jpg); */
}

:root {
    --primary-color: #FFB162;
    --secondary-color: #1B2632;
}

label {
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(167, 167, 167);
}

.comMargin {
    margin: 4rem 0rem;
}

nav {
    background-color: rgba(255, 255, 255, 0);
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 999;
}

.mobNav {
    display: none;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0rem;
}

.logo-holder {
    width: 150px;
    height: 60px;
    padding: 0rem 0.5rem;
    background-color: rgba(255, 255, 255, 0);
    overflow: hidden;
    border-radius: 10px;

}

.navHead {
    display: none;
}

.mobNavLine {
    display: none;
}

.logo-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.562)); */
}

.navList-wrapper ul {
    display: flex;
    align-items: center;
    /* gap: px; */
    padding: 1rem 0rem !important;
    border-radius: 50px;
    /* 1. Semi-transparent background */
    background: rgba(255, 255, 255, 0.1);

    /* 2. The core blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari */
    backdrop-filter: blur(10px);

    /* 3. Finishing touches for realism and depth */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navList-wrapper ul li {
    list-style: none;
    margin: 0rem 1rem;
}

.navList-wrapper ul li a {
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(250, 250, 250);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.459);
}

.scrollClass {
    background-color: white;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.329);
    transition: all 0.3s ease-in-out;
}

.scrollClass .navList-wrapper ul {
    background: unset;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
    border: unset;
    box-shadow: unset;

}

.scrollClass .navList-wrapper ul li a {

    color: black;
    text-shadow: unset;
}

.scrollClass .navList-wrapper ul .contact a {
    color: white;
}

.closeIcon,
.menuIcon {
    text-align: end;
    padding: 1rem;
    font-size: 2rem;
    display: none;
}

.closeIcon {
    padding: 1.5rem 1.7rem;
}

.navList-wrapper .contact a {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
}

#carouselExampleCaptions,
#carouselExampleCaptions .carousel-inner,
#carouselExampleCaptions .carousel-item {
    height: 100vh;
}


#carouselExampleCaptions .carousel-item {
    position: relative;
    isolation: isolate;
}

#carouselExampleCaptions .carousel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    background-color: #00000067;
    z-index: 9;
}

/* Prevent image stretching and remove overflow */
#carouselExampleCaptions .carousel-item img {
    height: 100vh;
    object-fit: cover;
    transform: scale(1);

}

.owl-nav button {
    display: none;
}



.button-wrapper {
    position: absolute;
    gap: 1.5rem;
    /* bottom: 5rem; */
    width: 100%;
    padding: 0px 2rem;
    justify-content: space-between;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.button-wrapper .carousel-control-next,
.button-wrapper .carousel-control-prev {
    position: initial;
    top: unset;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #FFB162; */
    border-radius: 50px;
    opacity: 1;
    /* From https://css.glass */
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.9px);
    -webkit-backdrop-filter: blur(5.9px);
    border: 1px solid rgba(255, 255, 255, 0.98);
    font-size: 1.5rem;
}

.carousel-control-prev {
    left: unset !important;
    /* right: 0; */
}

.headingText {
    position: absolute;
    bottom: 40px;
    left: 40px;
    transform: none;
    z-index: 10;
    width: 100%;
}

.headingText h1 {
    font-size: clamp(1rem, 2vw + 1rem, 5rem);
    /* line-height: 60px; */
    color: white;
    text-transform: capitalize;
}

.headingText .comName {
    font-weight: 700;
    font-size: clamp(2rem, 3vw + 1rem, 5rem);
    color: var(--primary-color);

}



.about-wrapper .text-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    isolation: isolate;
}

.about-wrapper .text-area .main-head {
    font-size: clamp(6rem, 10vw + 1rem, 20rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.75;
    letter-spacing: 0em;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 177, 98, 0.12) 37%, rgba(255, 177, 98, 1) 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translate(-0.5rem, 30px);
    z-index: -1;
}

.headText {
    font-size: clamp(2rem, 3vw + 1rem, 6.5rem);
    white-space: nowrap;
    line-height: 0.7;
    /* border: 1px solid black; */
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.com-para-head {
    font-size: clamp(2rem, 2vw + 1rem, 4rem);
    text-transform: uppercase;
}

.com-button {
    border: 1px solid var(--secondary-color);
    padding: 0.8rem 3rem;
    border-radius: 30px;
    background-color: #1B2632;
    font-weight: bolder;
    font-size: 1.1rem;
    box-shadow: 0px 0px 1px;
    transform: all 2s esase;
    color: white;
    transition-duration: .3s;
    z-index: 2;
    text-transform: capitalize;
}

/* .com-button::before {
    content: "";
    width: 100%;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    background-color: rgba(27, 38, 50, 0.85);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.com-button::after {
    content: "";
    width: 100%;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
    background-color: rgba(27, 38, 50, 0.85);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease-in-out;
} */

/* .com-button:hover::before .com-button:hover::after {
    transform: translate(-50%, -50%);
} */

.com-button:hover {
    transform: translateY(-10px);
    box-shadow: 0px 7px 1px #b95d00;
    border: 1px solid var(--secondary-color);
}

.com-button:active {
    transform: translateY(10px);
    box-shadow: 0px 0px 1px;
}

#keyFeatures .text-area {
    align-items: center;
}

#keyFeatures .text-area h1 {
    font-size: 5rem;
    font-weight: 700;
    color: white;
}

/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- ourApproch css from home page ----------------------*/
/* -------------------------------------------------------------------------------------------*/

#ourApproch {
    position: relative;
    isolation: isolate;
}

#ourApproch::before {
    content: "GOAL";
    position: absolute;
    right: 33%;
    top: 13px;
    line-height: 0.7;
    font-size: 10rem;
    z-index: -1;
    font-weight: 800;
    color: rgba(248, 157, 65, 0.4);
}

#ourApproch::after {
    content: "GOAL";
    position: absolute;
    right: 0%;
    bottom: 13px;
    line-height: 0.7;
    font-size: 10rem;
    z-index: -1;
    font-weight: 800;
    color: #ffb062;
    text-shadow: -3px 3px 0px rgba(3, 3, 3, 0.212);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;

}

#ourApproch .para-head {
    font-size: clamp(2rem, 2.6vw + 1rem, 4rem);
    text-transform: uppercase;
    color: white;
}

#ourApproch .para-head span {
    color: var(--secondary-color);
    font-weight: 700;
}

/* our approch section */

#ourApproch {
    background-color: var(--primary-color);
}

#ourApproch .img-holder {
    height: 100%;
    /* max-width: 500px; */
}

#ourApproch .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- navbar css for mobile screen ----------------------*/
/* -------------------------------------------------------------------------------------------*/



@media screen and (max-width:992px) {
    nav {
        background-color: rgb(255, 255, 255);
    }

    .mobNav {
        display: list-item;
    }

    .navList-wrapper ul {
        display: flex;
        gap: 0px;
        all: unset;

    }

    .navList-wrapper ul li {
        margin: unset;
    }

    .navList-wrapper ul li a {
        text-align: unset;
        color: rgb(0, 0, 0);
        text-shadow: none;
    }

    .navHead,
    .mobNavLine {
        display: block;
    }

    .closeIcon,
    .menuIcon {
        display: block;
    }

    .navList-wrapper .contact a {
        background-color: unset;
        color: initial;
        padding: 0.5rem 0em;
    }

    .navlist-holder {
        position: absolute;
        top: 0;
        background-color: rgb(255, 255, 255);
        right: 0%;
        height: 0dvh;
        width: 100%;
        z-index: 9999;
        overflow: hidden;
        transition: all 0.3s linear;
        isolation: isolate;

    }

    .navList-wrapper {
        padding: 0px 2rem;

    }

    .navlist-holder.open {
        height: 100dvh;
    }

    .navlist-holder::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 40%;
        background-image: url("/assets/navBg.png");
        background-size: cover;
        opacity: 0.15;
        bottom: 0;
        left: 0;
        z-index: -1;
    }



    ul {
        flex-direction: column;
    }

    ul li:not(:first-of-type) {
        margin-top: 0.5rem;
    }

    ul li a {
        padding: 0.5rem 0em;
        width: 100%;
        display: block;
        /* border-bottom: 1px solid black; */
    }
}

.owl-carousel .owl-stage-outer {
    border-radius: 10px;
}

/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- card slider ----------------------------------------*/
/* -------------------------------------------------------------------------------------------*/

.owl-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    /* border: 1px solid #ccc; */
    perspective: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: initial !important;

}

.owl-stage-outer {
    height: 100%;
}

.item {
    /* width: 400px; */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background-color: rgb(238, 238, 238);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 4px 5px 3px #00000033;

    /* // transition: all 0.6s ease; // ⚠️ Never use 'all' and try to not use transtion when working with GSAP */
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item[data-key="0"] {
    background-color: pink;
}

.item[data-key="1"] {
    background-color: rgba(100, 255, 100, 1);
}

.item[data-key="2"] {
    background-color: rgba(100, 100, 255, 1);
}

/*video css*/

.video-holder {
    height: 800px;
    width: 100%;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    text-align: center;
    align-content: center;
}

.video-holder h1 {
    font-size: 10rem;
    font-weight: 800;
    color: #6c6c6c;
    mix-blend-mode: multiply;
}



.video-holder video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centers the video */
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- About Us page CSS ---------------------------------*/
/* -------------------------------------------------------------------------------------------*/

#aboutUsHead,
#career,
#ourApproach {
    background-color: #ffb062;
    height: 700px;
    width: 100%;
    background-image: url("assets/projectImages/build3.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    padding: 2rem 3rem;
}

#career {
    background-image: url("assets/projectImages/career.jpg");
}

#ourApproach {
    background-image: url("assets/projectImages/ourApproach.jpg");
}

#aboutUsHead::before,
#career::before,
#ourApproach::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("assets/Rectangle\ 2.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.orgIdentity-wrapper {
    background-color: var(--secondary-color);
}



.orgIdentity img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    /* filter: drop-shadow(-16px 0px 3px rgba(0, 0, 0, 0.13)); */
}

@media (width > 1366px) {
    .orgIdentity {
        height: 500px;
    }

    .orgIdentity img {
        width: fit-content;
    }
}

#aboutUsHead h1,
#career h1,
#ourApproach h1 {
    font-size: clamp(1rem, 9vw + 1rem, 15rem);
    text-transform: uppercase;
    font-weight: 800;
    color: white;
    line-height: 0.75;
    letter-spacing: 0em;
}

#aboutUsHead h5,
#career h5,
#ourApproach h5 {
    font-weight: 300;
    font-size: 2rem;
    text-transform: uppercase;
}

#aboutUsHead h5,
#career h5,
#ourApproach h5 {
    color: white;
}

.abuComSec h3 {
    border-left: 5px solid var(--primary-color);
    padding: 0px 0.5rem;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
    margin: 0 auto;

}

.abuComSec h4 {
    font-style: italic;

}

.para p {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    font-style: italic;
    text-transform: capitalize;
    color: var(--secondary-color);
}

.summary {
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    /* border-left: 5px solid var(--primary-color); */
}

.abuComSec ul li {
    margin: 1rem 0px;
    font-size: clamp(1rem, 3vw, 1.2rem);
    list-style-type: "\2756";
    padding: 0rem 0.5rem;
}

.abuComSec ul li strong {
    color: var(--secondary-color);
}




.card-main {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: relative;

    border-radius: 10px;
    padding: 1rem;
    background: linear-gradient(166deg, rgba(255, 198, 74, 1) 0%, rgba(255, 177, 98, 1) 100%);

    /* 2. The core blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari */
    backdrop-filter: blur(10px);

    /* 3. Finishing touches for realism and depth */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    color: white;
}

.card-main ol li {
    list-style: lower-roman;
    margin: 0.5rem 0rem;
}


.icon-holder {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #b95d00;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.card-sec .card-holder {
    max-width: 100% !important;
    /* height: 400px; */
    overflow: hidden;
    /* border-radius: 10px; */
    background-image: url('assets/projectImages/goal2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-grow: 1;
    position: relative;
    isolation: isolate;
}

.card-sec .card-holder h1 {
    font-size: clamp(1rem, 6vw + 1rem, 3rem);
    text-transform: uppercase;
    color: white;
    font-weight: 800;
    /* text-shadow: -6px 7px 3px #00000054; */
}

.card-sec .card-holder::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000ab;
    z-index: -1;
}

.icon-area {
    align-items: center;
    gap: 0.5rem;
}

.icon-area p {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: 600;
}

.orgIdentity-wrapper .text-area {
    text-transform: capitalize;
}

.card-holder {
    /* transform: translateY(-200px); */
}

.card-main .text-area {
    color: white;
    /* font-weight: 600; */
}

.oskftCard {

    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    isolation: isolate;
}

.oskftCard::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000056;
}



.oskftImg-holder {
    width: 100%;
    height: 100%;
}

.oskftImg-holder img,
.bodImg-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

}

.text-holder {
    position: absolute;
    height: 20%;
    bottom: 0;
    padding: 0.5rem 1rem;
    color: rgb(255, 255, 255);
    width: 100%;
    background: rgba(255, 255, 255, 0.1);

    /* 2. The core blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari */
    backdrop-filter: blur(10px);

    /* 3. Finishing touches for realism and depth */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    align-content: center;
}

.text-holder p {
    font-size: clamp(0.8rem, 3vw + 1rem, 1rem);
    font-weight: 700;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.text-holder h5 {
    font-weight: 600;
}

.bodCard {
    background: linear-gradient(0deg, rgba(42, 123, 155, 0) 0%, rgba(27, 38, 50, 1) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;

}

.bodImg-holder {
    position: relative;
    height: 400px;
    isolation: isolate;

}

.bodCard:hover .bodImg-holder::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000057;
    top: 0;
    left: 0;
}

.bodCard .text-holder {
    height: 15%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.bodCard .text-holder p {
    text-align: center;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.671);
    font-size: 1.5rem;
    font-weight: 600;
}

.bodCard .text-holder p,
.bodCard .text-holder ol li {
    color: white;
    list-style: none;
}

.bodCard .text-holder ol li {
    font-size: 1.1rem;
    font-weight: 600;
}

.bodCard .text-holder ol li:not(:first-of-type) {
    margin-top: 1rem;
}

.bodCard:hover.bodCard .text-holder {
    height: 100%;

}

/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- our work page CSS ---------------------------------*/
/* -------------------------------------------------------------------------------------------*/
.ourWork ul li {
    list-style: none;
}

.ourWork .nav-tabs {
    padding: 1rem 2rem;
    padding-bottom: 0px;
    background-color: var(--primary-color);
    gap: 20px;
    border-radius: 5px 5px 0px 0px;
}

.ourWork .nav-tabs .nav-link {
    /* background-color: #d4d4d4; */
    /* border-radius: 100px; */
    color: #814000;
    font-size: 0.9rem;

    border: 0px;

}

.ourWork .nav-tabs .nav-link::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    left: -9px;
    bottom: 1px;
    border-radius: 0px 0px 50px 0px;
    box-shadow: 3px 3px 0px white;
}

.ourWork .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    right: -9px;
    bottom: 1px;
    border-radius: 0px 0px 0px 50px;
    box-shadow: -3px 3px 0px white;
}

.ourWork .nav-tabs .nav-link.active {
    position: relative;
    /* border: none; */
    background-color: white;
    color: var(--secondary-color);
    font-weight: 600;
    /* border-radius: 100px; */
}

/* Modal Styles */
#projectGalleryModal{
    z-index: 99999 !important;
}
#projectGalleryModal .modal-content {
    background-color: #1B2632;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

#projectGalleryModal .modal-dialog {
    max-width: 90vw;
}

#projectGalleryModal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9999;
    padding: 15px;
    background-color: white;
    opacity: 1;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#projectGalleryModal .btn-close:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
}

.modal-title-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
    padding: 1.5rem;
    text-align: center;
}

.modal-title-section h4 {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.modal-title-section p {
    margin: 0.3rem 0 0 0;
    color: rgba(27, 38, 50, 0.8);
    font-weight: 500;
}

/* Carousel Controls */
#projectGalleryModal .carousel-control-prev,
#projectGalleryModal .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background-color: rgba(255, 177, 98, 0.9);
    border-radius: 50%;
    margin: 0 20px;
    transition: all 0.3s;
}

#projectGalleryModal .carousel-control-prev:hover,
#projectGalleryModal .carousel-control-next:hover {
    background-color: rgba(255, 177, 98, 1);
    transform: translateY(-50%) scale(1.1);
}

#projectGalleryModal .carousel-control-prev {
    left: 10px;
}

#projectGalleryModal .carousel-control-next {
    right: 10px;
}

#projectGalleryInner img {
    pointer-events: none;
    max-height: 70vh;
    width: 100%;
    object-fit: contain;
    background-color: #000;
}

.carousel-item-content {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}


/* Image counter */
.image-counter {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 9999;
    font-size: 0.9rem;
}

/* Demo badge */
.demo-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {

    #projectGalleryModal .carousel-control-prev,
    #projectGalleryModal .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    #projectGalleryModal .carousel-control-prev {
        left: 5px;
    }

    #projectGalleryModal .carousel-control-next {
        right: 5px;
    }

    #projectGalleryInner img {
        max-height: 50vh;
    }

    .oskftImg-holder {
        height: 250px;
    }

    .modal-title-section h4 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 425px) {
    .abuComSec h3 {
        text-align: start;
        font-size: 1.5rem;
    }

    .ourWork .nav-tabs {
        padding: 0.5rem 1rem;
        gap: 10px;
    }

    .ourWork .nav-tabs .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .oskftImg-holder {
        height: 200px;
    }

    .demo-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- our work page CSS ---------------------------------*/
/* -------------------------------------------------------------------------------------------*/
.card-wrapper {
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.form-wrapper {
    /* max-width: 600px; */
}

sup {
    font-size: 1rem !important;
    color: red;

}

.form-control.careerInput {
    padding: 0.8rem;
    border: 0px;
    border-bottom: 2px solid rgb(199, 199, 199);
    border-radius: 0px;
    background: transparent !important;


}

.form-control.careerInput:focus {
    border-bottom: 2px solid var(--primary-color);
    box-shadow: unset;
}

.inputArea .form-control.careerInput:focus+label {
    color: green;
}

.clientsName {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 10px;
    text-align: center;
    align-content: center;
    background-color: var(--primary-color);
}

.clientsName h6 {
    color: #7c3801;
    font-weight: 700;

}

/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- our approach page CSS ---------------------------------*/
/* -------------------------------------------------------------------------------------------*/
.stepModule {
    display: flex;
}

.step {
    background: rgba(255, 255, 255, 0.1);

    /* 2. The core blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari */
    backdrop-filter: blur(10px);

    /* 3. Finishing touches for realism and depth */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    gap: 30px;
    flex-grow: 1;
}

.coutHolder span {
    font-weight: 600;
    font-size: 8rem;
    font-weight: 800;
    line-height: 0.72;
    color: var(--secondary-color)
}

.step h2 {
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.stepWrapper ul li {
    margin: 0.5rem 0px;
    font-size: 1rem;
    list-style: circle;
}

.oeptextArea {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 10px;
}

.oeptextArea h2 {
    text-align: center;
}

.oeptextArea p {
    flex-grow: 1;
    margin: 0px;
    text-align: start;
    align-content: center;
}

.method-wrapper {
    margin-top: 5rem;
}



/* .method-leftSide::before {

    content: '';
    position: absolute;
    width: 52%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-100%, -50%);
    background-color: white;

    transform-origin: center;
} */
.strip-wrapper {
    position: relative;
    background-color: var(--primary-color);
}

[data-first-row="firstRow"] {

    padding: 1.2rem 1.2rem 1.2rem 0rem;
    border-radius: 0px 50px 50px 0px;
}

[data-first-row="firstRow"] .fist-strip {
    background-color: white;
    border-radius: 0px 40px 40px 0px;
}

[data-first-row="firstRow"]::before {
    content: "";
    position: absolute;
    width: 15%;
    height: 150%;
    background-color: white;
    left: -3px;
    top: -12px;
}




[data-first-row="secondRow"] {

    padding: 1.2rem 0rem 1.2rem 1.2rem;
    border-radius: 50px 0px 0px 50px;
    transform: translateY(-51px);
    width: 95%;
}


[data-first-row="secondRow"] .fist-strip {
    background-color: white;
    border-radius: 40px 0px 0px 40px;
}

[data-first-row="thirdRow"] {
    /* padding: 1.2rem 0rem 0rem 0rem; */
    border-radius: 0px 0px 0px 0px;
    transform: translateY(-83px) translateX(13px);
    width: 95%;
}

[data-first-row="thirdRow"] .fist-strip {
    background-color: white;
    border-radius: 0px 0px 0px 0px;
}




.steps {
    /* background-color: #; */
    /* max-width: 300px; */
    border-radius: 50px;
    flex: 1;
    /* outline: 2px solid var(--primary-color); */
    display: flex;
    gap: 20px;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    padding: 0.5rem;
    transform: translateY(-40px);
}

.steps ul li {
    font-size: 1rem;
    margin: 0rem 0px;
}

.mtd-text-wrapper {
    padding: 1rem;

}

.mtd-text-wrapper h6 {
    font-weight: 600;
    font-size: 1.5rem;
}

.step-header {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    text-align: center;
    align-content: center;
    border-radius: 100%;

}

.step-header h5 {

    font-weight: 600;
    color: white;
}


/* Responsive device */

@media screen and (max-width:768px) {

    .steps {
        background-color: wheat;
        transform: translateY(0px);
        border-radius: 20px;
        padding: 1rem;
    }

    [data-first-row="firstRow"]::before {
        display: none;
    }

    [data-first-row="firstRow"],
    [data-first-row="secondRow"],
    [data-first-row="thirdRow"] {
        padding: 0px;
        background-color: transparent;
        width: 100%;
        transform: unset;
    }


}



/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- contact Us page CSS ---------------------------------*/
/* -------------------------------------------------------------------------------------------*/

.map-holder {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

iframe {
    width: 100%;
    height: 450px;
    flex-grow: 1;
}

.contact-holder {
    /* background-color: var(--primary-color); */
    position: relative;
    overflow: hidden;

    /* isolation: isolate; */

}

#uploadContact {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 100%;

}

.contact-holder::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 177, 98, 1) 0%, rgba(255, 255, 255, 1) 60%);
    right: -270px;
    top: 0;
    z-index: -1;
}

.details-holder {
    background: rgba(255, 255, 255, 0.1);

    /* 2. The core blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari */
    backdrop-filter: blur(10px);

    /* 3. Finishing touches for realism and depth */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-radius: 10px;
}

.icon-wrapper h4 {
    text-transform: uppercase;
    font-weight: 600;
}

.details-holder p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5e5e5e;
}


.cus-logo-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* -------------------------------------------------------------------------------------------*/
/* --------------------------------------- footer CSS ----------------------------------------*/
/* -------------------------------------------------------------------------------------------*/

footer {
    height: 200px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    isolation: isolate;
}

footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(assets/navBg.png);
    background-size: contain;
    z-index: -1;
    opacity: 0.05;
}

footer h4 {
    margin-top: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-color);
    font-style: italic;

}

.icons {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    text-align: center;
    align-content: center;
    border-radius: 10px;
}

.icons img {
    width: 80%;
    height: 80%;
    filter: grayscale(1);
}



.footer-5-column {
    border-top: 1px solid rgb(191, 191, 191);
}



@media all and (max-width: 992px) {


    .cardSlider {
        height: 450px;
        justify-content: center;
        margin-top: 5rem !important;
    }
}



.cardSlider {
    align-items: center;
    justify-content: end;
}



@media screen and (max-width:425px) {

    .carousel-control-next,
    .carousel-control-prev {
        display: none !important;
    }

    .about-wrapper .text-area .main-head {
        /* font-size: 8rem; */
    }

    .about-wrapper .text-area .proHead {
        /* font-size: 7rem; */
    }

    .headText {
        /* font-size: clamp(1rem, 6vw + 1rem, 6.5rem); */
    }

    .text-holder {
        height: auto;
    }

    .text-holder p {
        font-size: 0.8rem;
    }

    .bodCard .text-holder ol li {
        font-size: 1rem;
    }

    .card-sec .card-holder h1 {
        text-align: center;
    }

    .item {
        width: 100%;
        height: 300px;
    }

    #aboutUsHead,
    #career,
    #ourApproach {
        height: 400px;
        align-items: center;
        /* justify-content: center; */
    }

    #aboutUsHead h5,
    #career h5,
    #ourApproach h5 {
        font-size: 1.5rem;
    }

    .cardSlider {
        height: 450px;
        justify-content: center;
        margin-top: 5rem !important;
    }

    .cardSlider .slider {
        transform: translateX(-30px);
    }

    .comMargin {
        margin: 2rem 0rem;
    }

    .map-holder {
        width: 100%;
    }

    .video-holder {
        height: 500px;
    }

    .video-holder h1 {
        font-size: 6rem;
    }
}

@media screen and (max-width:1260px) {
    .text-holder {
        height: auto;
    }

    .contact-holder::before {
        top: 500px;
    }

    .map-holder {
        width: 100%;
    }

    iframe {
        width: 100%;
        height: 450px;
    }
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    width: 320px;
    animation: scaleIn 0.3s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top-color: #0d6efd;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

.success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 10px;
}

.popup button {
    margin-top: 15px;
    padding: 8px 18px;
    border: none;
    background: #0d6efd;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.hidden {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



.cursor-pointer {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cursor-pointer:hover {
    transform: scale(1.05);
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-item img {
    /* max-height: 80vh; */
    /* object-fit: contain; */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-size: 60%;
}


@media (max-width: 768px) {
    #projectGalleryModal .carousel-control-prev {
        left: 0;
    }

    #projectGalleryModal .carousel-control-next {
        right: 0;
    }
}

.oskftCard {
    cursor: pointer;
    transition: all 0.3s ease;
}

.oskftCard:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}


#projectGalleryModal .modal-content {
    background-color: transparent !important;
    border: none;
}

#projectGalleryModal .modal-dialog {
    max-width: 90vw;
}

#projectGalleryModal .carousel-control-prev {
    /* left: -60px; */
}

#projectGalleryModal .carousel-control-next {
    /* right: -60px; */
}

#projectGalleryModal .btn-close {
    position: absolute;
    left: 25px;
    top: 25px;
    z-index: 9999 !important;
    padding: 15px;
    background-color: white;
    opacity: 1;
    cursor: pointer;
}

#projectGalleryModal .carousel-control-prev,
#projectGalleryModal .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999 !important;
    background-color: rgba(253, 253, 253, 0);
    border-radius: 50%;
    margin: 0 15px;
}




.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #25d366;
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }

    .orgIdentity {
        height: 500px;
        display: none;
    }

    .para p {
        font-size: 1.3rem;
    }

    .abuComSec h3 {
        text-align: start;
    }
}