@font-face {
    font-family: "OpenSans";
    src: url("../resources/fonts/open_sans.ttf");
}

@font-face {
    font-family: "inter_regular";
    src: url("../resources/fonts/Inter_Regular.ttf");
}

@font-face {
    font-family: "inter_bold";
    src: url("../resources/fonts/Inter_Bold.ttf");
}

@font-face {
    font-family: "poppins_regular";
    src: url("../resources/fonts/Poppins_Regular.ttf");
}

@font-face {
    font-family: "poorich";
    src: url("../resources/fonts/POORICH.TTF");
}

@font-face {
    font-family: "abayabold";
    src: url("../resources/fonts/abaya_bold.ttf");
}

:root {
    --colorBg: #E6E8E6;
    --colorText: #3F403F;
    --colorMain: #475841;
    --colorOther: #9FB8AD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--colorBg);
    overflow-anchor: none;
}

/* #quotation{
    scroll-margin-top: 100px;
} */


.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5rem;

}

.slider-wrapper .slider-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: end;

}

.slider-wrapper .slider-item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: brightness(70%);
    background-image: url("../resources/slider/slider1.webp");
    background-size: cover;
    background-position: center;
}

.slider-wrapper .slider-item:nth-child(2):before {
    background-image: url("../resources/slider/slider2.webp");

}

.slider-wrapper .slider-item:nth-child(3):before {
    background-image: url("../resources/slider/slider3.webp");

}

.slider-wrapper .slider-item:nth-child(4):before {
    background-image: url("../resources/slider/slider4.webp");

}

.slider-wrapper .slider-item .slider-content {
    color: #fff;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 10px;
    max-width: 1600px;
    position: relative;
}




.slider-item .slider-content .slider-title {
    font-size: 2.3rem;
    font-family: "poppins_regular";
    font-weight: 600;
    text-align: start;
    text-shadow: 1px 1px 1px #1118277e;
    max-width: 70%;
    letter-spacing: 3px;
    line-height: 60px;

}



.slider-item .slider-content .slider-description {
    font-size: 1.4rem;
    font-family: "inter_regular";
    text-align: start;
    margin-top: 1rem;
    max-width: 70%;
}



.slider-subcontent {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;

}

.slider-social {
    width: 50%;
    letter-spacing: 0.7rem;

}

.slider-icon1 {
    width: 35px;
}


.slider-contact {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
}



.slider-button {
    color: white;
    font-family: "open_sans";
    font-weight: 500;
    text-decoration: none;
    background-color: transparent;
    padding: 0.4rem 3rem 0.4rem 0.4rem;
    border: 2px solid #475841;
    border-radius: 30px;
    text-shadow: 2px 2px 4px #111827;

}

.slider-button:hover {
    background-color: #475841;
    transition: ease-in-out 0.4s;

}

.slider-icon2 {
    width: 38px;
    padding: 0.1rem;
    background-color: #475841;
    border-radius: 50%;
    position: absolute;


}



.custom-indicators {
    width: 98%;
    max-width: 1750px;
    left: 0rem;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 7rem;
    z-index: 15;

}



.indicator {
    width: 35px;
    height: 7px;
    border-top: 4px solid rgb(255, 255, 255);
    position: relative;
    opacity: 0.3;
    transition: opacity 0.3s;
}


.indicator.active {
    opacity: 5;
}

.slider-next {
    width: 30px;
}

.indicator-arrow {
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.2s;
}

.indicator-arrow:hover {
    transform: scale(1.2);
}



@media screen and (min-width:300px) and (max-width:350px) {

    .slider-wrapper .slider-item {
        align-items: end;

    }

    .slider-wrapper .slider-item .slider-content {
        margin-top: 4rem;
    }

    .slider-item .slider-content .slider-title {
        font-size: 1.2rem;
        max-width: 80%;
        letter-spacing: 3px;
        line-height: 40px;

    }

    .slider-item .slider-content .slider-description {
        font-size: 1rem;
        margin-top: 0.5rem;
        max-width: 90%;

    }

    .slider-subcontent {
        display: flex;
        flex-direction: column;

        align-items: center;
        width: 100%;
        margin-top: 0.5rem;

    }

    .slider-social {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        column-gap: 1rem;

    }

    .slider-icon1 {
        width: 28px;
    }


    .slider-contact {
        width: 100%;
        display: flex;

        margin-top: 0.5rem;
    }



    .slider-button {
        font-size: 0.9rem;
        padding: 0.4rem 3.2rem 0.4rem 0.2rem;
        border: 2px solid #475841;

    }

    .slider-icon2 {
        width: 32px;
        padding: 0.2rem;

    }


    .custom-indicators {
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        gap: 5px;
        left: 0;
        top: 4.2rem;

    }

    .indicator {
        width: 25px;
        height: 7px;

    }

    .slider-next {
        width: 30px;
    }


}

@media screen and (min-width:351px) and (max-width:450px) {

    .slider-wrapper .slider-item {
        align-items: end;

    }

    .slider-wrapper .slider-item .slider-content {
        margin-top: 1rem;

    }

    .slider-item .slider-content .slider-title {
        font-size: 1.7rem;
        max-width: 90%;
        letter-spacing: 2px;
        line-height: 40px;

    }

    .slider-item .slider-content .slider-description {
        font-size: 1.2rem;
        margin-top: 0.5rem;
        max-width: 90%;

    }

    .slider-subcontent {
        display: flex;
        flex-direction: column;

        align-items: center;
        width: 100%;
        margin-top: 0.5rem;

    }

    .slider-social {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        column-gap: 1rem;

    }

    .slider-icon1 {
        width: 28px;
    }


    .slider-contact {
        width: 100%;
        display: flex;
        margin-top: 0.5rem;
    }



    .slider-button {
        font-size: 0.9rem;
        padding: 0.4rem 3.2rem 0.4rem 0.2rem;
        border: 2px solid #475841;

    }

    .slider-icon2 {
        width: 32px;
        padding: 0.2rem;

    }


    .custom-indicators {
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        gap: 5px;
        left: 0;
        top: 4.2rem;

    }

    .indicator {
        width: 25px;
        height: 7px;

    }

    .slider-next {
        width: 30px;
    }


}


@media screen and (min-width:451px) and (max-width:557px) {

    .slider-wrapper .slider-item {
        align-items: end;

    }

    .slider-wrapper .slider-item .slider-content {
        margin-top: 1rem;
    }

    .slider-item .slider-content .slider-title {
        font-size: 1.8rem;
        max-width: 80%;
        line-height: 50px;


    }

    .slider-item .slider-content .slider-description {
        font-size: 1.3rem;
        margin-top: 0.5rem;
        max-width: 90%;

    }

    .slider-subcontent {
        display: flex;
        flex-direction: column;

        align-items: center;
        width: 100%;
        margin-top: 1rem;

    }

    .slider-social {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 100%;
        column-gap: 1rem;

    }

    .slider-icon1 {
        width: 32px;
    }


    .slider-contact {
        width: 100%;
        display: flex;

        margin-top: 1rem;
    }

    .slider-button {
        font-size: 1.1rem;
        padding: 0.3rem 3.2rem 0.3rem 0.2rem;
        border: 2px solid #475841;


    }

    .slider-icon2 {
        width: 32px;
        padding: 0.2rem;

    }


    .custom-indicators {
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        gap: 5px;
        left: 0;
        top: 4.2rem;

    }

    .indicator {
        width: 25px;
        height: 7px;

    }

    .slider-next {
        width: 30px;
    }


}

@media screen and (min-width:558px) and (max-width:700px) {

    .slider-wrapper .slider-item {
        align-items: end;

    }

    .slider-wrapper .slider-item .slider-content {
        top: 0%;

    }

    .slider-item .slider-content .slider-title {
        font-size: 2rem;
        max-width: 80%;
        line-height: 50px;
    }

    .slider-item .slider-content .slider-description {
        font-size: 1.4rem;
        margin-top: 1rem;
        max-width: 90%;

    }

    .slider-subcontent {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        margin-top: 2rem;

    }

    .slider-social {
        display: flex;
        justify-content: start;
        align-items: start;
        width: 50%;
        column-gap: 1rem;

    }

    .slider-icon1 {
        width: 32px;
    }


    .slider-contact {
        width: 50%;
        display: flex;


    }

    .slider-button {
        font-size: 1.1rem;
        padding: 0.22rem 3rem 0.22rem 0.2rem;
        border: 2px solid #475841;
    }

    .slider-icon2 {
        width: 32px;
        padding: 0.2rem;

    }


    .custom-indicators {
        width: 96%;
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        gap: 5px;
        left: 0;
        top: 4.2rem;

    }

    .indicator {
        width: 25px;
        height: 7px;

    }

    .slider-next {
        width: 30px;
    }


}





/* Initial state */
.slider-content .slider-title,
.slider-content .slider-description {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
}

.slider-content .slider-subcontent {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Animated state */
.slider-content.active .slider-title {
    animation: fadeInUp 0.7s 0.6s ease-in-out forwards;
}

.slider-content.active .slider-description {
    animation: fadeInUp 0.7s 0.9s ease-in-out forwards;
}


/* Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}



/* slider end  */


/* about us start  */

.home--sec2--div1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: auto;
    flex-direction: column;


}

.home--sec2--div2 {
    width: 90%;
}

.home--sec2--div2 h4 {
    font-family: "poppins_regular";
    font-weight: 400;
    color: var(--colorMain);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home--sec2--div2 h2 {
    font-family: "inter_regular";
    color: var(--colorText);
    font-size: 1.5rem;
    margin: 0;
    text-align: left;
}

.home--sec2--div2 h2 span {
    font-weight: normal;
}

.home--sec2--div2 p {
    font-family: "poppins_regular";
    font-size: 1rem;
    /* font-size: 15px; */
    line-height: 1.7;
    margin: 15px 0;
    text-align: justify;
}

.counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 1rem;
}

@media screen and (min-width:300px) and (max-width:438px) {
    .counters {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }
}

.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 100px;
}

.counter h1 {
    font-size: 2.5rem;
    margin: 0;
    font-family: "inter_bold";
    color: var(--colorText);
}

.counter h3 {
    margin: 5px 0 0 0;
    font-size: 1rem;
    font-family: "inter_regular";
    color: var(--colorText);

}

.home--sec2--div3 {
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.about-img {
    /* width: 100%; */
    height: 20rem;
}

@media screen and (min-width:600px) {
    .about-img {
        width: 90%;
        /* height: 20rem; */
        height: auto;
    }
}

@media screen and (min-width:1100px) {

    .home--sec2--div1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 96%;
        margin: auto;
        flex-direction: row;
    }

    .home--sec2--div2 {
        width: 40%;
    }

    .home--sec2--div3 {
        width: 58%;
        overflow: hidden;
        margin-top: 0rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-img {
        width: 100%;
        height: max-content;
    }


    .home--sec2--div2 h4 {
        font-weight: 400;

    }

    .home--sec2--div2 h2 {
        font-size: 1.8rem;

    }

}

@media screen and (min-width:1400px) {

    .home--sec2--div2 {
        width: 48%;

    }

    .home--sec2--div3 {
        width: 48%;

    }

    .about-img {
        width: 100%;
        height: max-content;
    }


    .home--sec2--div2 h4 {
        font-weight: 400;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .home--sec2--div2 h2 {
        font-size: 2.2rem;
        margin: 0;
        text-align: left;
    }


}






.home--headings h4 {
    font-family: "poppins_regular";
    font-weight: 400;
    color: var(--colorMain);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home--headings h2 {
    font-family: "inter_regular";
    color: var(--colorText);
    font-size: 1.5rem;
    margin: 0;
    text-align: left;
}

.home--headings h2 span {
    font-weight: normal;
}

.home--headings p {
    font-family: "poppins_regular";
    font-size: 1rem;
    /* font-size: 15px; */
    line-height: 1.7;
    margin: 15px 0;
    text-align: center;
}


@media screen and (min-width:1100px) {
    .home--headings h4 {
        font-weight: 400;

    }

    .home--headings h2 {
        font-size: 1.8rem;

    }

}

@media screen and (min-width:1400px) {
    .home--headings h4 {
        font-weight: 400;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .home--headings h2 {
        font-size: 2.2rem;
        margin: 0;
        text-align: left;
    }


}








/* portfolio start   */


.home--sec3--div1 {
    max-width: 1600px;
    margin: auto;
    margin-top: 6rem;
    width: 96%;
}

.home--sec3--div1 .h2 {
    text-align: center;
    font-weight: normal;
}

.home--sec3--div2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    margin-top: 30px;
}

.home--sec3--div3 {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
}

.home--sec3--div3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.home--sec3--div3:hover img {
    transform: scale(1.05);
}

.home--sec3--div4 {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 10px; */
}

.home--sec3--div3:hover .home--sec3--div4 {
    opacity: 1;
}

.home--sec3--div5 {
    background: transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: solid white;
}

.home--sec3--div5 i {
    font-size: 24px;
    color: #ffffff;
    font-weight: bolder;
}

/* Collage grid arrangement */
.home--sec3--div3:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.home--sec3--div3:nth-child(2) {
    grid-column: span 2;
    grid-row: span 3;
}

.home--sec3--div3:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.home--sec3--div3:nth-child(4) {
    grid-column: span 2;
    grid-row: span 3;
}

.home--sec3--div3:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
}

.home--sec3--div3:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}

/* Modal */
.home--sec3--div6 {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.home--sec3--div6 img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 3px;
}

.home--sec3--div6.active {
    display: flex;
}

.home--sec3--div6:after {
    content: '✖';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.home--sec3--div7 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.home--sec3--div7 .home--headings {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

/* Button */
/* .view-all {
    text-align: center;
    margin-top: 30px;
}

.view-all button {
    background: #fff;
    border: 2px solid black;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.view-all button:hover {
    background: black;
    color: white;
}

.view-all i {
    transition: transform 0.3s ease;
}

.view-all button:hover i {
    transform: translateX(5px);
} */

/* Responsive */
@media (max-width: 700px) {
    .home--sec3--div2 {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 180px;
    }

    .home--sec3--div3:nth-child(1) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home--sec3--div3:nth-child(2) {
        grid-column: span 3;
        grid-row: span 3;
    }

    .home--sec3--div3:nth-child(3) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home--sec3--div3:nth-child(4) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .home--sec3--div3:nth-child(5) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .home--sec3--div3:nth-child(6) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .home--sec3--div5 {
        width: 40px;
        height: 40px;
    }

    .home--sec3--div5 i {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .home--sec3--div2 {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 180px;
    }

    .home--sec3--div3:nth-child(1) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .home--sec3--div3:nth-child(2) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home--sec3--div3:nth-child(3) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home--sec3--div3:nth-child(4) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home--sec3--div3:nth-child(5) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .home--sec3--div3:nth-child(6) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .home--sec3--div2 {
        gap: 10px;
        margin-top: 8px;
    }


}

@media (max-width: 400px) {
    .home--sec3--div2 {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 180px;
    }

    .home--sec3--div3:nth-child(1) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .home--sec3--div3:nth-child(2) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home--sec3--div3:nth-child(3) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .home--sec3--div3:nth-child(4) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .home--sec3--div3:nth-child(5) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .home--sec3--div3:nth-child(6) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .home--sec3--div2 {
        gap: 10px;
        margin-top: 5px;
    }

}


.portfolio-sec-button {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    /* background-color: #2a3c2f; */
    justify-content: end;
}



.portfolio-button {
    color: #2a3c2f;
    font-family: "open_sans";
    font-weight: 600;
    text-decoration: none;
    background-color: transparent;
    padding: 0.4rem 2.7rem 0.4rem 0.5rem;
    border: 2px solid #475841;
    border-radius: 30px;
    /* text-shadow: 2px 2px 4px #111827; */

}

.portfolio-button:hover {
    background-color: #475841;
    transition: ease-in-out 0.4s;
    color: white;

}

.portfolio-icon {
    width: 38px;
    padding: 0.1rem;
    background-color: #475841;
    border-radius: 50%;
    position: absolute;
    /* margin-top: -1rem; */

}


/* portfolio end  */


/* banner start  */
.home--banner {
    margin-top: 6rem;
    /* margin-bottom: 2rem; */
}


.home--banner--div1 {
    /* max-width: 1600px; */
    width: 100%;
    margin: auto;
    background-image: url("../resources/slider/slider1.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.home--banner--div2 {
    width: 100%;
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.home--banner--span {
    font-size: 5rem;
    color: white;
    text-shadow: 2px 2px 4px #111827;

}

@media screen and (max-width:1100px) {
    .home--banner--div2 {
        height: 20rem;

    }

    .home--banner--span {
        font-size: 3rem;

    }


}

@media screen and (max-width:450px) {
    .home--banner--div2 {
        height: 15rem;

    }

    .home--banner--span {
        font-size: 2rem;

    }


}




/* banner end  */





/* services */
.services-section {
    position: relative;
    height: fit-content;
    margin-top: 2rem;
    margin-bottom: 8rem;
    padding-bottom: 10rem;
}

.services-content {
    max-width: 1600px;
    margin: auto;
    padding: 60px 20px 40px 20px;
    position: relative;
    z-index: 2;
}

/* .home_subserv {
    color: #2a3c2f;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.home_mainserv1 {
    color: #2a3c2f;
    font-size: 2.5rem;
    font-weight: bold;
}

.home_mainserv2 {
    color: var(--colorText);
    font-size: 2.5rem;
    font-weight: bold;
} */

.services-content p.desc {
    margin-top: 10px;
    color: var(--colorText);
    text-align: justify;
}

.services-slider-wrapper {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.services-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    column-gap: 4rem;
    margin: 0 80px;
    width: calc(100% - 160px);
}

.service-card {
    min-width: 300px;
    width: 300px;
    height: 500px;
    flex-shrink: 0;
}

.service-card1 {
    min-width: 300px;
    width: 300px;
    height: 320px;
    background-color: transparent;
    border: 2px dashed #2a3c2f;
    padding: 30px 20px;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s ease;
    color: #2a3c2f;
    cursor: pointer;

}

.service-card1.active,
.service-card1:hover {
    background-color: #2a3c2f;
    color: #fff;
    border: 2px solid #2a3c2f;
}

.service-card1 img {
    width: 100px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

.service-card1.active img,
.service-card1:hover img {
    filter: brightness(0) invert(1);
}

.service-card1 h4 {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.service-card1 p {
    font-size: 1rem;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

/* Arrow button styles */
.arrow-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background-color: #9FB8AD;
    border: none;
    border-radius: 3rem;
    width: 50px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    color: #333;
}

.arrow-btn:hover {
    background-color: #87a394;
}

.arrow-btn:disabled {
    background-color: #f0f0f0;
    color: #ccc;
    cursor: not-allowed;
}

/* Left arrow */
.arrow-btn.prev {
    left: 0;
    border-radius: 0 3rem 3rem 0;
    transform: translateY(-50%) rotate(180deg);
}

/* Right arrow */
.arrow-btn.next {
    right: 0;
    border-radius: 0 3rem 3rem 0;
}

/* Background media styles */
.faded-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    -webkit-mask-image:linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    mask-image:linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0)) ;
    pointer-events: none;
}

.faded-bg-img1,
.faded-bg-video1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease;
    /* Prevent video from going fullscreen */
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Prevent video controls and fullscreen */
.faded-bg-video1::-webkit-media-controls {
    display: none !important;
}

.faded-bg-video1::-webkit-media-controls-enclosure {
    display: none !important;
}

.faded-bg-video1::-webkit-media-controls-panel {
    display: none !important;
}

.faded-bg-img1.fade-out,
.faded-bg-video1.fade-out {
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .service-card {
        min-width: 280px;
        width: 280px;
    }

    .service-card1 {
        min-width: 280px;
        width: 280px;
        height: 310px;
    }

    .services-slider {
        margin: 0 70px;
        width: calc(100% - 140px);
        column-gap: 3rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        min-width: 260px;
        width: 260px;
    }

    .service-card1 {
        min-width: 260px;
        width: 260px;
        height: 310px;
    }

    .arrow-btn {
        width: 45px;
        height: 80px;
        font-size: 1.3rem;
    }

    .arrow-btn.prev {
        border-radius: 0 2.5rem 2.5rem 0;
    }

    .arrow-btn.next {
        border-radius: 0 2.5rem 2.5rem 0;
    }

    .services-slider {
        margin: 0 60px;
        width: calc(100% - 120px);
        column-gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .service-card {
        min-width: 240px;
        width: 240px;
    }

    .service-card1 {
        min-width: 240px;
        width: 240px;
        height: 310px;
    }

    .services-slider {
        margin: 0 55px;
        width: calc(100% - 110px);
        column-gap: 2rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        min-width: 220px;
        width: 220px;
    }

    .service-card1 {
        min-width: 220px;
        width: 220px;
        height: auto;
        min-height: 280px;
    }

    .arrow-btn {
        width: 40px;
        height: 70px;
        font-size: 1.2rem;
    }

    .arrow-btn.prev {
        border-radius: 0 2rem 2rem 0;
    }

    .arrow-btn.next {
        border-radius: 0 2rem 2rem 0;
    }

    .services-slider {
        margin: 0 50px;
        width: calc(100% - 100px);
        column-gap: 1.5rem;
    }
}

@media (max-width: 360px) {
    .service-card {
        min-width: 200px;
        width: 200px;
    }

    .service-card1 {
        min-width: 200px;
        width: 200px;
        height: auto;
        min-height: 260px;
        padding: 20px 15px;
    }

    .arrow-btn {
        width: 35px;
        height: 60px;
        font-size: 1rem;
    }

    .arrow-btn.prev {
        border-radius: 0 1.5rem 1.5rem 0;
    }

    .arrow-btn.next {
        border-radius: 0 1.5rem 1.5rem 0;
    }

    .services-slider {
        margin: 0 45px;
        width: calc(100% - 90px);
        column-gap: 1rem;
    }
}

/* service end  */


/* quotation start  */

.quotation-sec-div1 {
    display: flex;
    flex-direction: column;
    width: 98%;
    height: fit-content;
    margin: auto;
    height: fit-content;
    max-width: 1580px;
    row-gap: 3rem;
}

/* .quotation-sec-div2 {
    margin-bottom: 2rem;
} */

.quotation-sec-div3 {
    width: fit-content;
    position: absolute;
    background-color: var(--colorBg);
    border: 3px dashed var(--colorMain);
    padding: 0.5rem;
    border-bottom: 0;
    top: -2.4rem;
    right: -0.2rem;


}

.quotation-span1 {
    font-family: "inter_bold";
    font-size: 1rem;
    color: var(--colorText);
}

.quotation-span2 {
    font-family: "inter_regular";
    font-size: 1.4rem;
    color: var(--colorText);
    margin-left: 0.5rem;


}

.quotation-input1 {
    border: none;
    outline: none;
    border-bottom: 2px solid var(--colorMain);
    background-color: transparent;
    font-family: "inter_regular";
}


.quotation-sec-div4 {
    width: fit-content;
    border: 3px dashed var(--colorMain);
    position: relative;
    width: 98%;
    margin: auto;
    margin-bottom: 1rem;
    height: fit-content;

}

.quotation-sec-div5 {
    display: flex;
    width: 98%;
    margin: auto;
    flex-direction: column;
    row-gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    overflow: hidden;
    /* background-color: red; */
}


.quotation-sec-div6 {
    margin-top: 1rem;
    width: 90%;

}

.quotation-sec-div7 {
    width: 98%;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.quotation-sec-div8 button {
    background-color: var(--colorMain);
    color: white;
    padding: 0.5rem 0.7rem;
    border: none;
    font-family: "Poppins_Regular";
    font-weight: bold;
    letter-spacing: 2px;
    /* margin: 1rem 0; */
}

.quotation-sec-div8 button:hover {
    cursor: pointer;

}


/* CSS */
.button-24 {
    background: var(--colorMain);
    border: 1px solid var(--colorMain);
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    -webkit-user-select:none;
    user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.button-24:hover,
.button-24:active {
    background-color: initial;
    background-position: 0 0;
    color: var(--colorText);
    border: 2px solid var(--colorMain);

}

.button-24:active {
    opacity: .5;
}


.quotation-sec-div9 {
    display: flex;
    width: 98%;
    margin: auto;
    flex-direction: row;
    row-gap: 2rem;
    margin-top: 1rem;

}

.quotation-sec-div9 textarea {
    height: 6rem;
}

.quotation-input2 {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid var(--colorMain);
    background-color: transparent;
    font-family: "inter_regular";
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    padding: 0.5rem 0;
    transition: border-color 0.3s ease;
}

.file-upload-label:hover {
    border-bottom-color: var(--colorMain);
}

.quotation-file-input {
    display: none;

}

.file-icon {
    font-size: 16px;
}

.file-text {
    -webkit-user-select: none;
    user-select: none;
    font-family: "inter_regular";
}

/* Optional: Show selected file name */
.file-upload-label.has-file .file-text {
    color: var(--colorMain);
    font-weight: bold;
}

.uploadicon {
    width: 2rem;
}

@media screen and (min-width:400px) {
    .quotation-sec-div5 input {
        width: 48%;
        margin: auto;
    }


    .quotation-sec-div5 {

        flex-direction: row;
        column-gap: 1rem;

    }

}





.quotation-sec-div14 {
    margin-bottom: 0.5rem;
    width: 100%;



}

.quotation-sec-div11 {
    width: fit-content;
    position: absolute;
    background-color: var(--colorBg);
    border: 3px dashed var(--colorMain);
    padding: 0.5rem;
    border-bottom: 0;
    top: -2.4rem;
    left: -0.2rem;

}

.quotation-span1 {
    font-family: "inter_bold";
    font-size: 1rem;
    color: var(--colorText);
}

.quotation-span2 {
    font-family: "inter_regular";
    font-size: 1.4rem;
    color: var(--colorText);
}

.quotation-span3 {
    font-family: "inter_regular";
    font-size: 1rem;
    color: var(--colorText);
    line-height: 1.5rem;


}


.quotation-input1 {
    border: none;
    outline: none;
    border-bottom: 2px solid var(--colorMain);
    background-color: transparent;
    font-family: "inter_regular";
}


.quotation-sec-div10 {
    width: fit-content;
    border: 3px dashed var(--colorMain);
    position: relative;
    width: 98%;
    margin: auto;
    /* height: auto; */
    margin-bottom: 6rem;
}

.quotation-sec-div12 {
    margin-top: 1rem;
    width: 96%;
    margin-left: 0.4rem;
}

.quotation-sec-div13 {
    width: 96%;
    margin: auto;
    margin-top: 1rem;
    /* margin-bottom: 1rem; */
    text-align: justify;
}

.quotation-sec-div14 {
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem;


}

.quotation-sec-div15 {
    display: flex;
    flex-direction: row;
    row-gap: 2rem;
    column-gap: 1.2rem;
    justify-content: start;
    align-items: center;
    width: 90%;
    margin: auto;

}

.quotation-social {
    width: 1.6rem;
}

@media screen and (min-width:300px) and (max-width:350px) {
    .quotation-sec-div14 {
        row-gap: 0.8rem;

    }

    .quotation-sec-div13 {
        margin-bottom: 0.1rem;
    }

}



@media screen and (min-width:759px) {
    .quotation-sec-div1 {
        display: flex;
        flex-direction: row;
    }

    .quotation-sec-div2 {
        width: 50%;
    }

    .quotation-sec-div16 {
        width: 50%;

    }

    .quotation-sec-div4 {
        height: 29rem;

    }

    .quotation-sec-div10 {
        height: 29rem;

    }

    .quotation-sec-div9 textarea {
        height: 10rem;

    }
}

@media screen and (min-width:821px) {

    .quotation-sec-div14 {
        row-gap: 1rem;
        margin-top: 1rem;
    }

    .quotation-sec-div9 textarea {
        height: 9.4rem;

    }

}

@media screen and (min-width:924px) {

    .quotation-sec-div4 {
        height: 27rem;

    }

    .quotation-sec-div10 {
        height: 27rem;

    }

    .quotation-sec-div14 {
        row-gap: 1rem;
        margin-top: 1rem;
    }

    .quotation-sec-div9 textarea {
        height: 8.5rem;

    }

}

@media screen and (min-width:1100px) {

    .quotation-sec-div4 {
        height: 26rem;

    }

    .quotation-sec-div10 {
        height: 26rem;

    }

    .quotation-sec-div14 {
        row-gap: 1rem;
        margin-top: 1rem;
    }

    .quotation-sec-div9 textarea {
        height: 7rem;

    }

}

@media screen and (min-width:1355px) {

    .quotation-sec-div4 {
        height: 26rem;

    }

    .quotation-sec-div10 {
        height: 26rem;

    }

    .quotation-sec-div14 {
        row-gap: 1.5rem;
        margin-top: 1.5rem;
    }


}
/* quotation end  */


/* testimonials */

.home--headings2 h4 {
    font-family: "poppins_regular";
    font-weight: 400;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.home--headings2 h2 {
    font-family: "inter_regular";
    color: white;
    font-size: 2.2rem;
    margin: 0;
    text-align: left;
}

.home--headings2 h2 span {
    font-weight: normal;
}

.home--headings2 p {
    font-family: "poppins_regular";
    font-size: 1rem;
    /* font-size: 15px; */
    line-height: 1.7;
    margin: 15px 0;
    text-align: justify;
    color: white;
}

.home--sec4--div1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 6rem;


}

.home--sec4--div2 {
    width: 60%;
    display: flex;
    align-items: center;
}

.home--sec4--div3 {
    background-color: #475841;
    padding: 3rem 2rem;
    height: max-content;
}

.home--sec4--div5 {
    margin-top: 1.5rem;
}

.home--sec4--div6 {
    width: 40%;
    /* background-color: red; */
}

.home--sec4--span1 {
    font-weight: bold;
    font-size: 1.5rem;
    color: #E6E8E6;
}

.home--sec4--span2 {
    font-size: 1.5rem;
    color: #E6E8E6;
}

.home--sec4--span3 {
    color: #E6E8E6;
}

.home--sec4--div7 {
    position: relative;
    width: 100%;
    height: 33rem;
    overflow: hidden;
    cursor: grab;
    /* background-color: blue; */
}

.card1 {
    position: absolute;
    top: 0;
    width: 25rem;
    height: 100%;
    background: #aac3b1;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateX(100%) scale(0.9);
    z-index: 0;
}

.card1.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}

.card1.next {
    transform: translateX(150px) scale(0.9);
    opacity: 0.5;
    z-index: 2;

}

.card1.prev {
    transform: translateX(-100px) scale(0.9);
    opacity: 0.4;
    z-index: 1;
}

.card-content1 {
    transform: translateZ(20px);
}

.card--img1 {
    width: 3.5rem;
}

.card-content2 {
    display: flex;
    justify-content: center;
    /* background-color: #2a3c2f; */
}

.card--img2 {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
}

.card-content3 {
    margin-top: 2rem;
}

.card-content4 {
    margin-top: 2rem;
    display: flex;
    justify-content: end;
    align-items: end;
}

.home--sec4--span5 {
    text-transform: uppercase;
    font-size: 1rem;
}




.home--headings2 p {

    font-size: 1rem;


}

.home--sec4--span4,
.home--sec4--span5 {
    font-size: 1rem;
    font-family: "poppins_regular";

}

@media screen and (max-width:1150px) {
    .home--sec4--div2 {
        width: 50%;

    }



    .home--sec4--div6 {
        display: flex;
        flex-direction: row;
        width: 50%;
        justify-content: center;
        align-items: center;
        /* background-color: red; */
    }

    .card1.next {
        transform: translateX(90px) scale(0.9);
    }

    .card1 {
        width: 23rem;
        padding: 2rem 1.5rem;

    }



    .home--headings2 h4 {
        font-size: 0.8rem;

    }

    .home--headings2 h2 {
        font-size: 1.8rem;

    }

    .home--headings2 p {

        font-size: 1rem;


    }

    .home--sec4--span4,
    .home--sec4--span5 {
        font-size: 1rem;
        font-family: "poppins_regular";

    }

    .home--sec4--div7 {

        height: 33rem;

    }
}

@media screen and (max-width:790px) {
    .home--sec4--div1 {
        flex-direction: column;
    }

    .home--sec4--div2 {
        width: 100%;
    }

    .home--sec4--div6 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home--sec4--div7 {
        width: 70%;
    }

    .card1.next {
        transform: translateX(150px) scale(0.9);
    }

    .card1 {
        width: 23rem;
        padding: 2rem 1.5rem;

    }



    .home--headings2 h4 {
        font-size: 0.8rem;

    }

    .home--headings2 h2 {
        font-size: 1.5rem;

    }

    .home--headings2 p {

        font-size: 1rem;


    }

    .home--sec4--span4,
    .home--sec4--span5 {
        font-size: 1rem;
        font-family: "poppins_regular";

    }

    .home--sec4--div7 {

        height: 33rem;

    }
}

@media screen and (max-width:650px) {
    .home--sec4--div7 {
        width: 80%;
    }

    .card1 {
        width: 23rem;
        padding: 2rem 1.5rem;

    }

    .card1.active {
        transform: translateX(0) scale(1);

    }

    .card1.next {
        transform: translateX(150px) scale(0.9);

    }

    .home--headings2 h4 {
        font-size: 0.8rem;

    }

    .home--headings2 h2 {
        font-size: 1.5rem;

    }

    .home--headings2 p {

        font-size: 1rem;


    }

    .home--sec4--span4,
    .home--sec4--span5 {
        font-size: 1rem;
        font-family: "poppins_regular";

    }

    .home--sec4--div7 {

        height: 34rem;

    }
}

@media screen and (max-width:570px) {
    .home--sec4--div7 {
        width: 90%;

    }

    .card1 {
        width: 20rem;
        padding: 2rem 1.5rem;

    }

    .card1.active {
        transform: translateX(0) scale(1);

    }

    .card1.next {
        transform: translateX(150px) scale(0.9);

    }

    .home--headings2 h4 {
        font-size: 0.8rem;

    }

    .home--headings2 h2 {
        font-size: 1.5rem;

    }

    .home--headings2 p {

        font-size: 1rem;


    }

    .home--sec4--span4,
    .home--sec4--span5 {
        font-size: 1rem;
        font-family: "poppins_regular";

    }

    .home--sec4--div7 {

        height: 34rem;

    }
}

@media screen and (max-width:500px) {
    .home--sec4--div7 {
        width: 98%;
    }

    .card1 {
        width: 20rem;
        padding: 2rem 1.5rem;

    }

    .card1.active {
        transform: translateX(0) scale(1);

    }

    .card1.next {
        transform: translateX(150px) scale(0.9);

    }

    .home--headings2 h4 {
        font-size: 0.8rem;

    }

    .home--headings2 h2 {
        font-size: 1.5rem;

    }

    .home--headings2 p {

        font-size: 1rem;


    }

    .home--sec4--span4,
    .home--sec4--span5 {
        font-size: 1rem;
        font-family: "poppins_regular";

    }

    .home--sec4--div7 {

        height: 34rem;

    }

}