button {
    font-size: 13px !important;
}

          /* First Layout code  */

          .why_find{
  padding: 5em 5em;
}
.why_find .why_content{
  display: flex;
}
.why_find .why_content h3{
  width: 40%;
  font-size: 18px;
  font-family: "Lato", Sans-serif;
}
.why_find .why_content p{
  font-size: 26px;
  width: 60%;
  color: #0b0d0e;
      line-height: 36px;
}

.why_find .why_content p span{
  color: #b3b3b3;
}
.why_find .why_video{
          margin: 0;
        aspect-ratio: auto;
        /* height: 97.6rem; */
        margin-top: 3em;
}

.why_find .why_video video{
      width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About us section */
.aka_about{
  padding-top: 4em;
  padding-bottom: 5em;
}

.aka_about h2{
  font-size: 32px;
  color: #0b0d0e;
  text-align: center;

}
.aka_about h2 span{
  color: #b3b3b3;
}
.aka_about p{
  color: #0b0d0e;
    text-align: center;
    font-size: 18px;
    padding: 2em 24em;
    line-height: 28px;
}
.aka_about p span{
  color: #b3b3b3;
}
.aka_img_arrow {
  position: relative;
    display: flex;
    justify-content: center;
    padding-top: 3em;
}
.aka_about .img_arrow{
  width: 16rem;
    height: 20.3rem;
    margin-left: -2.7rem;
  mask: url(../folder3/download.svg);
}
.aka_about .img_arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.aka_about .img_arrow {
  opacity: 0;
  transform: translateY(40px); /* slight movement */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.aka_about .img_arrow.show {
  opacity: 1;
  transform: translateY(0);
}



/* Service Secgtion  */

.aka_services {
  background: #0b0d0e;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

/* Header */
.aka_services .services-header {
  display: flex;
  padding: 6em 5em 5em 5em;
}

.aka_services .services-header p {
  color: #fff;
  font-size: 18px;
  width: 43%;
}

.aka_services .services-header h1 {
  text-align: left;
  font-size: 26px;
  line-height: 36px;
}

.aka_services .services-header .light {
  color: #888;
  font-weight: 300;
}

/* Service Item */
.aka_services .service-item {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-top: 1px solid #404040;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.aka_services .service-item:nth-child(4){
    border-bottom: 1px solid #404040 !important;
}

.aka_services .service-item::before{
    content: "";
    background-color: #0b0d0e82;
    width: 100%;
    height: 100%;
    position: absolute;
}


/* Overlay (black layer) */
.aka_services .overlay {
  position: absolute;
  inset: 0;
  background: #0b0d0e;
  transform: translateY(0%);
  transition: transform 0.6s ease;
  z-index: 1;
}

/* Hover effect */
.aka_services .service-item:hover .overlay {
  transform: translateY(-100%);
  /* background-color: #0b0d0e6d; */
}

/* Content */
.aka_services .content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5em 5em;

}

/* Left */
.aka_services .left {
  width: 43%;
  display: flex;
  gap: 30px;
}

.aka_services .number {
  width: 36px;
  height: 36px;
  border: 1px solid #888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.aka_services .left p {
  color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 200;
    width: 60%;
}

/* Right */
.aka_services .right{
    display: flex;
    width: 57%;
    align-items: center;
    justify-content: space-between;
}
.aka_services .right img{
    width: 20%;
}

.aka_services .right h2 {
  font-size: 80px;
  font-weight: 500;
  color: #eaeaea;
}
.aka_services .right h2::after{
    content: "";
    display: block;
    position: relative;
    left: .085em;
    right: 0;
    bottom: 0;
    top: -18px;
    border-top: 7px solid;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.aka_services .right img{
    opacity: 0;
    transform: translateX(-10%);
    transition: opacity .4s, transform .8s;
}

.aka_services .service-item:hover .right img{
    opacity: 1;
    transform: translateX(0);
}

.aka_services .service-item:hover .right h2:after {
        transform: scaleX(1);
    }


/* Responsive */
@media (max-width: 992px) {
  .aka_services .services-header {
    /* flex-direction: column; */
    /* align-items: flex-start;
    gap: 20px; */
  }

  .aka_services .services-header h1 {
    text-align: left;
    font-size: 20px;
    line-height: 28px;
  }

  .aka_services .content {
    /* flex-direction: column; */
    align-items: flex-start;
    /* gap: 20px; */
    padding: 3em 2em;
  }
  .aka_services .left {
    gap: 20px;
  }
  .aka_services .left p{
    width: 70%;
    font-size: 12px;
  }

  .aka_services .right h2 {
    font-size: 35px;
  }
  .aka_services .right h2::after{
        top: -6px;
        border-top: 3px solid;
  }
  .aka_services .service-item{
    height: 230px;
  }
  

}

@media (max-width: 600px) {
  .aka_services .services-header {
    padding: 40px 20px;
  }

  .aka_services .content {
    padding: 30px 20px;
  }

  .aka_services .right h2 {
    font-size: 36px;
  }
}

/* Service Content */
/* Button Code */

.service_content{
    background-color: #0b0d0e;
    padding: 5em 5em;
}

.service_content p{
    font-size: 26px;
    color: #fff;
    width: 40%;
    margin-bottom: 1em;
    line-height: 36px;
}

.service_content p span{
    color: #b3b3b3;
}


.button_color-secondary__FZDOG.button_inversed__slQcI {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border-color: hsla(0, 0%, 100%, .5);
    border-radius: 50px;
    padding: 10px 23px;
}
.button_content__6Zh3n {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    overflow: hidden;
}
.button_button-round-text__IEwW5 {
    overflow: hidden;
}
.button_icon-after__vljdM{
    --size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-width: var(--size);
    width: var(--size);
    height: var(--size);
}
.button_button-round-text__IEwW5 span {
    position: relative;
    display: block;
    transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.button_button-round-text__IEwW5 span:after {
    content: attr(data-text);
    display: block;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
}

    .button_button-round__TFjlU:hover {
        transform: scaleX(1.02);
        transition: transform .7s cubic-bezier(.34, 3.56, .64, 1);
    }

        .button_button-round__TFjlU:hover .button_button-round-text__IEwW5 span {
        transform: translateY(-105%);
    }


    .other_services{
    display: flex;
    width: 100%;
    background-color: #0b0d0e;
    padding: 5em 5em;
}

.other_services .other_left{
    width: 40%;
    padding-right: 14em;
}
.other_services .other_left h2{
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}
.other_services .other_left h2 span{
    color: #b3b3b3;
}

.other_services .other_right{
    width: 60%;
}

.other_services .other_right p{
    font-size: 26px;
    color: #fff;
    margin-bottom: 1em;
    line-height: 30px;
}
.other_services .other_right p span{
    color: #b3b3b3;
}

.other_services .button_color-secondary__FZDOG.button_inversed__slQcI{
    background-color: #ffffff;
    color: #000;
}


/* Cards Section */

/* Container */
.aka_cards {
  display: flex;
  height: 400px;
  gap: 20px;
  padding: 0em 5em 5em 4em;
  background-color: #0b0d0e;
}

/* Card */
.aka_cards .card {
  position: relative;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;

  transition: flex 0.6s ease;
}

/* Dark overlay */
.aka_cards .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* Content */
.aka_cards .content {
  position: absolute;
  /* bottom: -40px; */
  left: 20px;
  color: #fff;
  transition: all 0.6s ease;
      height: 100%;
    width: 100%;
    padding: 2em;
}

.aka_cards .content h2 {
  font-size: 20px;
  margin-bottom: 15px;
  max-width: 300px;
}

.aka_cards .content a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  /* opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease; */
}

/* Hover Effects */
.aka_cards:hover .card {
  flex: 0.8;
}

.aka_cards .card:hover {
  flex: 1;
}

/* Content reveal */
.aka_cards .card:hover .content {
  /* bottom: 30px; */
}

.aka_cards .card:hover .content a {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .aka_cards {
    flex-direction: column;
    height: 1000px;
  }
  .aka_cards .content p {
    opacity: 1 !important;
  }

 .aka_cards .card {
    height: 300px;
  }

  .aka_cards:hover .card,
  .aka_cards .card:hover {
    flex: unset;
  }
}

.aka_cards .content p{
  font-size: 15px;
  /* width: 50%; */
  max-width: 356px;
  margin-bottom: 3em;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.aka_cards .card:hover .content p{
  opacity: 1;
}

.aka_cards .content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}



          
          /* End First Layout Code  */

            .swiper.abt-slide .swiper-wrapper {
                align-items: center !important;
            }
            .swiper.building-3d {
                width: 100%;
                overflow: hidden;
                height: 100vh;
                position: absolute;
            }
            @media only screen and (max-width: 973px) {
                .swiper.building-3d {
                    height: 100vw;
                    perspective: 65vw !important;
                    transform-origin: center center !important;
                }
            }
            .swiper.building-3d {
                perspective: 50vw;
                transform-origin: center center !important;
            }
            .swiper.building-3d .swiper-wrapper {
                perspective: none !important;
                transform-style: preserve-3d !important;
                transform-origin: center center !important;
            }
            @media only screen and (max-width: 973px) {
                .swiper.building-3d .swiper-wrapper {
                    pointer-events: none !important;
                }
            }
            .swiper.building-3d .swiper-wrapper .swiper-slide {
                transform-style: preserve-3d !important;
                transform-origin: center bottom !important;
            }
            /*.swiper-slide.room-container.swiper-slide-prev {
	transform: rotateX(0deg) rotateY(0) rotateZ(0) !important;
}
.swiper-slide.room-container.swiper-slide-active {
	transform: rotateX(0deg) rotateY(0) rotateZ(0) !important;
}
.swiper-slide.room-container.swiper-slide-next {
	transform: rotateX(0deg) rotateY(0) rotateZ(0) !important;
}
.swiper-slide.room-container {
  transform: rotateX(0deg) rotateY(0) rotateZ(0) !important;
}*/
            .swiper.thumbnail-building-3d {
                width: 6vw;
                height: auto;
                overflow: hidden;
            }
            @media only screen and (max-width: 973px) {
                .swiper.thumbnail-building-3d {
                    width: 11vw;
                }
            }
            @media only screen and (max-width: 767px) {
                .swiper.thumbnail-building-3d {
                    width: 85vw;
                }
            }
            .swiper-slide.thumb-3d {
                height: auto !important;
            }
            .wrapper.thumb-3d {
                height: auto !important;
                gap: 0vw;
            }
            .swiper-slide.thumb-3d {
                opacity: 0.5 !important;
                border-color: transparent !important;
            }
            .swiper-slide.thumb-3d.swiper-slide-thumb-active {
                opacity: 1 !important;
                border-color: white !important;
            }
            .project-content-wrapper {
                transform: translate(0) scale(1.1) rotate(4deg);
            }
            .swiper.project-desc,
            .swiper.project-video {
                width: 100%;
            }
            /* Swiper Testi */
            .swiper.testi {
                width: 100%;
                position: relative;
                height: 27vw;
                /*overflow: hidden;*/
            }
            @media only screen and (max-width: 973px) {
                .swiper.testi {
                    height: auto;
                }
            }
            .swiper.testi .inner-left-testi img {
                width: 20vw;
                transition:
                    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
                transform: rotate(-14deg) translate(-16vw, 0);
                opacity: 0;
            }
            @media only screen and (max-width: 973px) {
                .swiper.testi .inner-left-testi img {
                    width: 100%;
                }
            }
            .swiper.testi .right-content-testi .heading-testi,
            .swiper.testi .right-content-testi .cat-testi,
            .swiper.testi .right-content-testi .inner-right-content-text {
                transition:
                    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
                transform: translateY(2rem);
                opacity: 0;
            }
            .swiper.testi .swiper-slide-active .inner-left-testi img {
                transform: rotate(0) translate(0, 0);
                transition-delay: 0.1s;
                opacity: 1;
            }
            .swiper.testi .swiper-slide-active .heading-testi {
                transition:
                    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s,
                    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
                transform: translateY(0);
                opacity: 1;
            }
            .swiper.testi .swiper-slide-active .cat-testi {
                transition:
                    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.3s,
                    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
                transform: translateY(0);
                opacity: 1;
            }
            .swiper.testi .swiper-slide-active .inner-right-content-text {
                transition:
                    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.4s,
                    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
                transform: translateY(0);
                opacity: 1;
            }
            .testi-prev:hover path,
.testi-next:hover path {
	fill: #000;
}
            .testi-prev:hover rect,
            .testi-next:hover rect {
                fill: #ffffff;
                stroke: #ffffff;
            }


            @media (min-width: 768px) and (max-width: 1024px) {
                .swiper.testi .inner-left-testi img {
                    width: 90% !important;
                }
            }
            /* END Swiper Testi */
            .img-about-black {
                display: block;
                height: 100%;
                transition: height 0.5s ease-out;
                overflow: hidden;
            }
            .inner-section-3 {
                position: relative;
                z-index: 1;
            }
            /*.inner-section-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: auto;
  width: 100%;
  height: 100%;
  padding: 1px;
  background: linear-gradient(to bottom, #f57f00 0%, transparent 70%);
  border-radius: inherit;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}*/
            .img-wrap-black {
                position: relative;
                z-index: 1;
            }
            .img-wrap-black::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                padding: 1px;
                background: linear-gradient(111deg, #f57f00 0%, #080808 24%, #f57f00 100%);
                border-radius: inherit;
                -webkit-mask:
                    linear-gradient(#fff 0 0) content-box,
                    linear-gradient(#fff 0 0);
                -webkit-mask-composite: xor;
                mask-composite: exclude;
                z-index: 5;
            }
            /* META SCROLL S2*/
            /* Default inactive state */
            .meta-about-s2-black {
                opacity: 1;
                transition: opacity 0.4s ease-in-out;
            }
            .meta-about-s2-black .background-tabs-abt {
                opacity: 0;
                transition: opacity 0.4s ease-in-out;
            }
            .meta-about-s2-black .meta-about-black {
                transition:
                    color 0.4s ease-in-out,
                    font-weight 0.4s ease-in-out;
            }
            /* Active state */
            .meta-about-s2-black.active {
                opacity: 1;
            }
            .meta-about-s2-black.active .background-tabs-abt {
                opacity: 1;
            }
            .meta-about-s2-black.active {
                color: #ff8400 !important;
            }
            .meta-about-s2-black:hover {
                color: #ff8400 !important;
            }
            .background-tabs-abt {
                top: 0;
                left: 0;
                height: 100%;
                width: 39%;
                transition: left 0.3s ease;
            }
            /* END META SCROLL S2*/
            .latest-project-image.second,
            .screen-3d-building.second {
                opacity: 0;
                transform: scale(1);
                transition:
                    transform 10s ease,
                    opacity 0.3s ease;
            }
            .latest-project-card:hover .latest-project-image.second,
            .screen:hover .screen-3d-building.second {
                opacity: 1;
                transform: scale(1.1);
            }
            .video-wrapper iframe {
                width: 100%;
                height: 100%;
                border: 0;
            }
            .swiper.abt-thumb .swiper-slide {
                width: auto !important;
            }
            .swiper.abt-thumb .swiper-wrapper {
                width: 100% !important;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
            }
            @media only screen and (max-width: 973px) {
                .swiper.abt-thumb .swiper-wrapper {
                    justify-content: flex-start;
                    gap: 4vw;
                }
            }
            @media screen and (min-width: 768px) and (max-width: 1024px) {
                .swiper.abt-thumb .swiper-slide {
                    width: auto !important;
                }
                .swiper.abt-thumb .swiper-wrapper {
                    align-items: center !important;
                    gap: 8vw;
                }
            }
            @media only screen and (max-width: 767px) {
                .swiper.abt-thumb .swiper-wrapper {
                    /*justify-content: space-between;
    gap: unset;*/
                    gap: 1vw;
                    flex-wrap: wrap;
                }
            }
            .abt-thumb .swiper-slide .meta-about-s2-mob {
                color: #969696;
            }
            .abt-thumb .swiper-slide.swiper-slide-thumb-active .meta-about-s2-mob {
                color: #f57f00;
            }
            /* CSS (use instead of display:none approach) */
            .modal-single-project {
                position: fixed;
                inset: 0;
                z-index: 9999;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(0, 0, 0, 0.6);
                /* start hidden but present in layout so transitions work reliably */
                visibility: hidden;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.28s ease;
            }
            /* visible */
            .modal-single-project.is-active {
                visibility: visible;
                opacity: 1;
                pointer-events: auto;
            }
            /* during closing sequence (kept is-active at same time) */
            .modal-single-project.is-hiding {
                opacity: 0;
            }
            /* body lock when modal open */
            .modal-open {
                overflow: hidden;
            }
            /* CSS Mobile Circle */
            @media (max-width: 479px) {
                .inner-section-4 {
                    position: relative;
                    height: auto;
                    overflow: visible;
                }
                .mobile-three-cricle {
                    position: relative;
                    bottom: 0;
                    width: 100vw;
                }
                .mobile-three-cricle .swiper {
                    width: 100%;
                }
                .mobile-three-cricle::before,
                .mobile-three-cricle::after {
                    content: "";
                    position: absolute;
                    top: 0;
                    height: 100%;
                    width: 7.5vw; /* sisanya dari 100vw - 85vw */
                    pointer-events: none;
                    z-index: 5;
                }
                .mobile-three-cricle::before {
                    left: 0;
                    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
                }
                .mobile-three-cricle::after {
                    right: 0;
                    background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
                }
                /*.strategy-circle.c1, .strategy-circle.c2, .strategy-circle.c3{
   width: 100vw;
   height: 100vw; 
  }*/
                .swiper.three-circle-mobs .swiper-wrapper .swiper-slide {
                    display: flex;
                    justify-content: center;
                }
            }
            /* END CSS Mobile Circle */
            #skip-button-compre,
            #skip-button-circle {
                opacity: 0;
                transition: opacity 0.3s ease;
                pointer-events: none;
            }
            #skip-button-compre.show,
            #skip-button-circle.show {
                opacity: 1;
                pointer-events: auto;
            }
            .is-hidden {
                display: none !important;
            }
            .is-inline {
                display: inline-block !important;
            }
            svg.hover-hero-trigger path {
                outline: none;
            }
            svg.hover-hero-trigger path:hover {
                cursor: pointer;
            }
            .home-new-3d {
                opacity: 0;
                transition: opacity 0.3s linear;
            }
            .home-new-3d.active {
                opacity: 1;
            }
            
            
            
/* Responsive Code */

@media only screen and (max-width: 768px) 
{
    .why_find{
        padding: 3em 2em;
    }

    .why_find .why_content p{
        font-size: 20px;
        line-height: 28px;
    }
    .aka_about h2 {
        font-size: 28px;
        width: 100%;
        padding: 0px 4em;
    }
    .aka_about .img_arrow{
            width: 12rem;
    height: 15.3rem;
    }
    .aka_about p{
        padding: 2em 6em;
        width: 100%;
    }
    .aka_img_arrow{
        left: 2em;
    }
    .aka_services .services-header{
        padding: 5em 0em 5em 2em;
    }
    .aka_services .services-header p{
            width: 40%;
    }

    .service_content p{
    font-size: 20px;
    line-height: 28px;
    width: 90%;
  }
  .service_content{
    padding: 5em 2em;
  }
  .other_services{
    padding: 0 2em;
    padding-bottom: 3em;
    padding-top: 30px;
  }
  .other_services .other_right p{
    font-size: 20px;
  }
  .other_services .other_left{
    padding-right: 0em;
  }
}



@media only screen and (max-width: 600px){
  .aka_about p{
    width: 100%;
    padding: 2em 1em !important;
    font-size: 16px;
  }
  .why_find{
    padding: 3em 1em !important;
  }
  .why_find .why_content{
    flex-direction: column;
  }
  .why_find .why_content p{
    width: 100% !important;
        font-size: 20px !important;
    line-height: 28px !important;
  }
  .why_find .why_video{
        margin-top: 1em !important;
  }
  .aka_about{
    padding-top: 0px !important;
    padding-bottom: 0px;
  }

  .aka_about .img_arrow {
        width: 7rem;
    height: 9rem;
    margin-left: -1.7rem;
  }
  .aka_about h2 {
    font-size: 26px;
  }
      .aka_services .service-item {
        height: 255px;
    }
    .aka_services .content {
        padding: 30px 20px;
        flex-direction: column-reverse;
    }
    .aka_services .left {
    width: 100%;
    }
    .aka_services .right{
        width: 100%;
    }
    .aka_services .number{
        display: none;
    }
    .service_content p{
            width: 100%;
            font-size: 20px;
            line-height: 28px;
    }
    .service_content{
            padding: 3em 1em;
    }
    .other_services{
        padding: 3em 1em;
        flex-direction: column;
    }
    .other_services .other_left{
        width: 100%;
    padding-right: 0em;
    }
    .other_services .other_right {
    width: 100%;
}
.other_services .other_right p{
        font-size: 20px;
        line-height: 28px;
}
.aka_cards{
    padding: 0em 1em 5em 1em;
    gap: 30px;
}
.aka_cards .content_data{
    text-align: center;
}
.aka_cards .content{
        align-items: center;
        left: 0px;
}

}