@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --primary: #a57a46;
    --light: #f0eddf;
    --light2: #eae3c3;
    --secondary: #7d6c58;
    --orange: #f6b110;
    --dark: #504037;
    --black: #26211e;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--light);
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--dark);
}

body,
html {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: .5px;
}

#navbar {
    height: 80px;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}
#navbar-sm{
    display: none;
}
#toggle {
    width: 28px;
    height: 30px;
    display: none;
}

#toggle div {
    width: 100%;
    height: 4px;
    background: var(--light);
    margin: 5px auto;
    border-radius:2px;
    transition: all 0.3s;
    backface-visibility: hidden;
}

#toggle.active .one {
    transform: rotate(45deg) translate(5px, 5px);
}

#toggle.active .two {
    opacity: 0;
}

#toggle.active .three {
    transform: rotate(-45deg) translate(7px, -8px);
}
#navbar .logo {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

#navbar .logo img {
    height: 80%;
}

#navbar .menus {
    display: flex;
    align-items: center;
    gap: 15px;
}

#navbar .menus .link {
    color: var(--light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .5px;
    position: relative;
    padding: 0px;
}

#navbar .menus .link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    transition: .4s ease-out;
    height: 2px;
    background-color: var(--light);
}

#navbar .menus .link.active::before,
#navbar .menus .link:hover::before {
    width: 100%;
}

.nav-btn {
    padding: 10px 25px;
    background-color: var(--light);
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-btn i {
    transition: .5s;
}

.nav-btn:hover {
    background-color: var(--secondary);
    color: var(--light);
}

.nav-btn:hover i {
    transform: translateX(5px);
}
.action{
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
/* banner */
#banner {
    width: 100%;
    aspect-ratio: 10/4;
    background-color: var(--light);
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#banner .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #11070188;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    width: 35px !important;
    bottom: 10px;
    top: initial;
    right: 15px;
    z-index: 10;
    background-color: var(--light);
    color: var(--black);
}

.swiper-button-prev {
    right: 65px;
    left: initial;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px;
    font-weight: bold;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light);
}

.ml6 {
    position: relative;
    font-weight: 900;
    font-size: 4.5em;
    letter-spacing: 2px;
    text-wrap: nowrap;
}

.ml6 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.2em;
    padding-right: 0.05em;
    padding-bottom: 0.1em;
    overflow: hidden;
}

.ml6 .letters{
    text-wrap: nowrap;
}
.ml6 .letter {
    display: inline-block;
    line-height: 1;
}

.slide-text .sub_heading.no-margin{
    margin-top: -10px;
}
.slide-text .sub_heading {
    text-shadow: 2px 2px 5px rgb(50, 50, 50);
    letter-spacing: 1px;
    margin-top: -40px;
}

.scroll-container p {
    color: var(--light);
}

.scroll-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    height: 50px;
}

.scroll-container::before {
    content: 'Scroll Down';
    white-space: wrap;
    line-height: 1;
    padding: 2px;
    font-size: 8px;
    overflow: hidden;
    color: var(--dark);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 84%;
    border-radius: 2px;
    background-color: var(--orange);
    animation: paint 3s linear 1s infinite alternate;
}

.scroll_btn {
    color: var(--light);
    text-shadow: 2px 2px 5px rgb(50, 50, 50);
    font-size: 1.8rem;
    line-height: 0;
    display: block;
    animation: scroll 3s linear 1s infinite alternate;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

@keyframes paint {
    0% {
        height: 0;
    }

    30% {
        height: 0;
    }

    100% {
        height: 20px;
    }
}

/* banner */

/* section1 */
#section1::before{
    content: '';
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: url(./../img/worker.png) no-repeat left center/30%;
}
#section1 {
    width: 100%;
    background-color: var(--primary);
    padding: 50px 20px;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
}

.section-heading h6 {
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
}

.section-heading h6::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--light);
    bottom: 0;
    left: 0;
}

.section-heading h2 {
    font-size: 3rem;
}

.services {
    margin-top: 35px;
    width: 100%;
    overflow: hidden;
}

.services .service_swiper {
    user-select: none;
}
.services .service_swiper .swiper-slide .service-card{
    width: 100%;
    aspect-ratio: 5/4;
    position: relative;
}
.services .service_swiper .swiper-slide .service-card .details{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.695);
    transform: translateY(50px);
    transition: .4s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.request_service_btn{
    border: none;
    outline: none;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 15px;
}
.request_service_btn:hover{
    background-color: var(--dark);
    color: var(--light);
}
.services .service_swiper .swiper-slide .service-card:hover .details{
    transform: translateY(0);
}

.services .service_swiper .swiper-slide .service-card .img{
    width: 100%;
    height: 100%;
}
.services .service_swiper .swiper-slide .service-card .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup.active{
    z-index: 1000;
    opacity: 1;
    
}
.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0, 0, 0, 0.656);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    opacity: 0;
    transition: .4s;
}
.popup-content{
    background-color: var(--light);
    padding: 25px;
    width: 50%;
    max-width: 500px;
    min-width: 300px;
    position: relative;
    color: var(--black);
}
.form-group{
    margin-bottom: 10px;
}
.form-control{
    box-shadow: none !important;
    border: 1px solid transparent;
}
.form-control:active,
.form-control:focus
{
    border: 1px solid var(--orange);
}
.submit_btn{
    background-color: var(--black);
    color: var(--light);
    border: none;
    outline: none;
    padding: 5px 20px;
}
.submit_btn:hover{
    background-color: var(--dark);
}
.close-popup:hover{
    transform: scale(1.1);
}
.close-popup{
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--black);
    border: none;
    outline: none;
    width: 35px;
    height: 35px;
    border-radius: 0 0 0 25px;
    color: var(--light);
}
/* section1 */

/* service */
#service {
    padding: 55px 0;
    background: var(--light2);
}
.service_text{
    padding: 15px;
}
.service_main_text{
    font-size: 3rem;
    line-height: 1;
}
.service-card .card-para{
    width: 80%;
}
.service-card .card-title{
    padding: 15px 0;
    font-size: 1.4rem;
}
.service-card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:linear-gradient(rgba(255, 255, 255, 0),rgba(0, 0, 0, 0.482) 100%);
}
.service-card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:linear-gradient(145deg,#221900cc,#3c24025f);
}
.service-card.card-1::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(145deg, #221900cc, #ab0730a8, #623900ca);
}

#service .service-card{
    width: 100%;
    height: 100%;
    aspect-ratio: 9/10;
    padding: 20px;
    position: relative;
    z-index: 2;
    color: var(--light);
    position: relative;
}
.arrow_link{
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 10;
    transition: .4s;
}
.service-card:hover .arrow_link{
    transform: scale(1.2) translate(5px,-5px);
}
.service-card.bottom .card-title{
    padding: 0;
}
.service-card.bottom{
    display: flex;
    align-items: flex-end;
}
.section_heading{
    background: -webkit-linear-gradient(0deg, var(--black), var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
}
.section_heading::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}
.service_main_text{
    font-weight: 800;
    color: var(--dark);
}
.service_main_text .mid{
    color: var(--black);
    font-weight:400;
}
/* service */

/* ================Contact us get in touch============== */
#get_in{
    background: var(--black);
    padding: 3rem 0;
    aspect-ratio: 19/5;
    position: relative;
    z-index: 1;
}
#get_in::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #100f0ec3; */
    z-index: -1;
}
#get_in .section_heading{
    background: -webkit-linear-gradient(0deg, var(--light), var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.get_in_touch_text{
    padding-left: 15px;
    color: var(--light);
}
.get_in_touch_text .get_in_touch{
    font-size: 3rem;
}
#get_in .form-input::placeholder{
    color: rgb(220, 220, 220);
}
#get_in textarea{
    height:120px;
}
#get_in .submit_btn:hover{
    background:var(--primary);
    color: var(--light);
}
#get_in .submit_btn{
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    text-transform: uppercase;
    background:var(--light2);
    color: var(--black);
}
#get_in .submit_btn{
    width: 200px;
    aspect-ratio: initial;
    padding: 12px 0;
}
#get_in .form-input{
    color: var(--light);
    margin-bottom: 10px;
}
.form-input{
    width: 100%;
    border: none;
    background-color: transparent;
    outline: none;
    border-bottom: 1.5px solid var(--light2);
    padding: 8px 0;
    transition: .4s;
    font-size: 1rem;
}
.form-input:focus{
    border-color: var(--orange);
}
.contact_form{
    border: 1px solid var(--secondary);
    padding: 10px;
}
.contact_details .item{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.contact_details .item p{
    margin: 0 !important;
}
.contact_details .item a{
    color: var(--light);
    text-decoration: none;
}
.contact_details .item .icon{
    width: 35px;
    height: 35px;
    background-color: var(--light2);
    color: var(--dark);
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ================Contact us get in touch============== */
/* =============Projects=============== */

.project_section_heading{
    font-size: 3rem;
    margin-top: 15px;
    line-height: .9;
}

#projects{
    background: white   ;
    padding: 55px 0;
    width: 100%;
    overflow: hidden;
}
.nav-tabs .nav-link{
    border: none;
}
.nav-tabs .nav-link.active{
    background: none !important;
    border: none;
    border-bottom: 1.5px solid var(--pink);
}
.nav-tabs{
    border-bottom: 1.5px solid #ddd4d4;
}
.tab-heading{
    font-size: 2rem;
    padding-left: 15px;
}
#select-box{
    background: transparent;
    border: 1px solid #ddd4d4;
    outline: none;
    padding: 10px;
}
.project::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:linear-gradient(to top,#170c00e3,#784d0e7d);
}
.project .play_btn i{
    animation: play 1s ease-in-out infinite alternate;
    border-radius: 50%;
    transition: .5s;
}
@keyframes play {
    0%{
        box-shadow: 0px 0px 0px 0px transparent;
        
    }
    100%{
        box-shadow: 0px 0px 2px 7px var(--primary);
    }
}
.project .play_btn:hover i{
    transform: rotate(360deg) scale(1.1);
}
.project .play_btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border:none;
    outline: none;
    font-size: 3rem;
    color: var(--light);
}
.project{
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    padding: 20px;
    z-index: 1;
    color: var(--light);
    position: relative;
    font-size: 1.3rem;
    display: flex;
    align-items: flex-end;
    background-color: var(--light2);
}
#video_popup.hide{
    opacity: 0;
    z-index: -1;
}
#video_popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1d1101a3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: .4s;
    backdrop-filter: blur(3px);
    
}
#video_popup .video{
    width: 70%;
    aspect-ratio: 16/9;
    min-width: 300px;
    max-width: 900px;
    background-color: var(--light);
    position: relative;
}
#video_popup .video .close-video_popup{
    position: absolute;
    top: -45px;
    right: -45px;
    width: 40px;
    height: 40px;
    border-radius:50%;
    border:4px solid var(--light2);
}
/* =============Projects=============== */
/* ================how we do================ */
#how{
    
    aspect-ratio: 16/7;
    padding: 3rem 0;
    position:relative;
    z-index: 1;
}
#how::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 24, 0, 0.697),rgba(47, 30, 0, 0.259));
    z-index: -1;
}
#how .section_heading{
    background: -webkit-linear-gradient(0deg, var(--light), var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.how_text{
    color: var(--light);
}
.how_text .para{
    color: rgb(230, 229, 219);
}
.how_text .main_text{
    font-size: 3rem;
}

    /* ================how we do================ */
    

/* ===========testimonials============= */
#testimonials{
    background: var(--light2);
    padding: 3rem 0;
}
.testimonials_para{
    width: 70%;
    min-width:300px;
}
.next img,.prev img{
    width: 40%;
}
.next,.prev{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    color: white;
    border: none;
    outline: none;
    box-shadow: 5px 5px 20px -10px black;
    background:linear-gradient(145deg, var(--primary),var(--dark));
}

.next.swiper-button-disabled,.prev.swiper-button-disabled{
    border: 1px solid var(--primary);
    background: transparent;
    color:var(--black);

}
/*.testi_slider::before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 18%;*/
/*    height: 100%;*/
/*    background: linear-gradient(to right,rgba(255, 255, 255, 0),rgba(177, 177, 160, 0.804));*/
/*    z-index: 10;*/
/*}*/
.testi_slider{
    user-select: none;
    position: relative;
}
#testimonials .swiper-slide{
    width: 26%;
    min-width: 220px;
    max-width: 450px;
    background-color: var(--light);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#testimonials .swiper-slide .img img{
    width: 100px;
    height: 100px;
    border-radius:50%;
    object-fit: cover;
}
#testimonials .swiper-slide .para{
    line-height:1.1;
    font-weight:400;
    font-size:14px;
}

/* ===========testimonials============= */
    
/* ===========clients============= */
#clients{
    background:var(--white);
}
.mb-8{margin-bottom:4.5rem!important}.mb-9{margin-bottom:5rem!important}.mb-auto{margin-bottom:auto!important}.py-8{padding-bottom:4.5rem!important;padding-top:4.5rem!important}.py-9{padding-bottom:5rem!important;padding-top:5rem!important}@media(min-width:576px){.mb-sm-8{margin-bottom:4.5rem!important}.mb-sm-9{margin-bottom:5rem!important}.mb-sm-auto{margin-bottom:auto!important}.py-sm-8{padding-bottom:4.5rem!important;padding-top:4.5rem!important}.py-sm-9{padding-bottom:5rem!important;padding-top:5rem!important}}@media(min-width:768px){.mb-md-8{margin-bottom:4.5rem!important}.mb-md-9{margin-bottom:5rem!important}.mb-md-auto{margin-bottom:auto!important}.py-md-8{padding-bottom:4.5rem!important;padding-top:4.5rem!important}.py-md-9{padding-bottom:5rem!important;padding-top:5rem!important}}@media(min-width:992px){.mb-lg-8{margin-bottom:4.5rem!important}.mb-lg-9{margin-bottom:5rem!important}.mb-lg-auto{margin-bottom:auto!important}.py-lg-8{padding-bottom:4.5rem!important;padding-top:4.5rem!important}.py-lg-9{padding-bottom:5rem!important;padding-top:5rem!important}}@media(min-width:1200px){.mb-xl-8{margin-bottom:4.5rem!important}.mb-xl-9{margin-bottom:5rem!important}.mb-xl-auto{margin-bottom:auto!important}.py-xl-8{padding-bottom:4.5rem!important;padding-top:4.5rem!important}.py-xl-9{padding-bottom:5rem!important;padding-top:5rem!important}}@media(min-width:1400px){.mb-xxl-8{margin-bottom:4.5rem!important}.mb-xxl-9{margin-bottom:5rem!important}.mb-xxl-auto{margin-bottom:auto!important}.py-xxl-8{padding-bottom:4.5rem!important;padding-top:4.5rem!important}.py-xxl-9{padding-bottom:5rem!important;padding-top:5rem!important}}
#logo_brands img{
    object-fit:contain;
}
/* ===========clients============= */
    
/* footer */
#footer {
  background: #332b1f;
  padding: 0 0 30px 0;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #ffffffad;
}

#footer .credits {
  text-align: center;
  font-size: 15px;
  color: #ffffff85;
  margin-top: 8px;
  letter-spacing: 1px;
}

#footer .credits a {
  color: #ffffff;
}

.custom-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .custom-content h2 {
      font-size: 1.8em;
      color: #333;
      margin-bottom: 10px;
    }
    .custom-content p {
      font-size: 1em;
      color: #555;
      line-height: 1.6;
    }
  /* Add gap between image and text on small screens */
    @media (max-width: 768px) {
      .custom-image {
        margin-bottom: 15px;
      }
    }
/* footer */