  /* Hero Section */
        .event-hero-section {
            height: 90vh;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .event-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .event-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .event-hero-title {
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .event-hero-meta {
            font-size: 20px;
            font-weight: 500;
            display: flex;
            gap: 30px;
            justify-content: center;
            opacity: 0.9;
        }

        .event-hero-meta span i {
            color: #b22222;
            margin-right: 8px;
        }

        /* Breadcrumb Override */
        .breadcrumb-item + .breadcrumb-item::before {
            content: var(--bs-breadcrumb-divider, ">");
            color: #fff;
        }
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.7);
        }
        .breadcrumb-item.active {
            color: #b22222;
        }
         .breadcrumb-item+.breadcrumb-item::before {
    
    content: var(--bs-breadcrumb-divider, ">");
    color:#fff;
}



section#akuinfiniteslider {
    padding: 20px 0;
    background: #b22222;
}

section#akuinfiniteslider {
    position: relative;
    padding: 20px 0;
    background: #b22222;
    overflow: hidden;
}

section#akuinfiniteslider::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shineMove 3s infinite;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
#akuinfiniteslider{
  .service-offer-wrapper .service-offer-box {
  position: relative;
  --duration: 120s;
  --gap: 10px; /* Default gap to avoid animation stuttering */
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: var(--gap);
}

.service-offer-wrapper .service-offer-box:first-child {
  --duration: 100s;
}

.service-offer-wrapper .service-offer-box:last-child {
  --duration: 80s;
}

.service-offer-wrapper .service-offer-box.marquee--reverse .service-offer-group {
  animation-direction: reverse;
}

.service-offer-wrapper .service-offer-box .service-offer-group {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll var(--duration) linear infinite;
  animation: scroll var(--duration) linear infinite;
}

.service-offer-wrapper .service-offer-box .service-offer-group .text {

 
        font-size: 28px;
        line-height: 32px;

  text-align: center;
  letter-spacing: 0.02em;
  text-transform: capitalize;
 color: #fff;

  display: inline-block;

  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-offer-wrapper .service-offer-box .service-offer-group .text svg {
  margin: 0 28px;
  width:28px;
}

}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}
  .service-offer-wrapper .service-offer-box .service-offer-group .text i{
      
  }
  .service-offer-wrapper .service-offer-box .service-offer-group .text i {
    font-weight: 500;
}

.filter-item{
        margin-bottom:10px;
        padding:0 7px;
    } 
    
    
    

.gallery-card {
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 10px;
}

.gallery-card:first-child:hover .gallery-content {
    bottom: 32px;
    opacity: 1;
    visibility: visible;
    left: 32px
}

@media (max-width: 1299px) {
    .gallery-card:first-child:hover .gallery-content {
        left:24px
    }
}

.gallery-card .box-img {
    position: relative;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

.gallery-card .box-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: -webkit-linear-gradient(bottom, rgba(2,0,15,0.5), rgba(2,0,15,0.5));
    background: linear-gradient(0deg, rgba(2,0,15,0.5), rgba(2,0,15,0.5));
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 1
}

.gallery-card .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.3s all ease;
}

.gallery-card .shape {
    position: absolute;
    inset: 32px;
    z-index: 2;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0)
}

@media (max-width: 575px) {
    .gallery-card .shape {
        inset:20px
    }
}

.gallery-card .shape .dot {
    position: absolute;
    height: 35px;
    width: 2px;
    background-color: #fff
}

.gallery-card .shape .dot:nth-child(1) {
    top: -0px
}

.gallery-card .shape .dot:nth-child(2) {
    top: -0px;
    width: 13px;
    height: 2px
}

.gallery-card .shape .dot:nth-child(3) {
    bottom: -0px;
    right: 14px
}

.gallery-card .shape .dot:nth-child(4) {
    bottom: -0px;
    right: 14px;
    width: 13px;
    height: 2px
}

.gallery-card .gallery-content {
    position: absolute;
    bottom: -20%;
    left: 32px;
    opacity: 0;
    margin-right: 32px;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 3
}

@media (max-width: 1299px) {
    .gallery-card .gallery-content {
        left:24px
    }
}

.gallery-card .subtitle {
    padding: 4px 16px;
    background: #FFF2F2;
    border-radius: 24px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #b22222;
    display: inline-block;
    margin-bottom: 24px
}

.gallery-card .icon-btn {
    --btn-size: 64px;
    background-color: #ff833b;
    border-color: #ff833b;
    background: linear-gradient(to right, #b22222 0%, #b22222 50%, #b22222 100%);
    margin-bottom: 30px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    position: absolute;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    z-index: 4;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    text-align: center;
}

.gallery-card .icon-btn:hover {
    color: #fff;
    border-color: #b22222;
    background-color: #b22222
    background: linear-gradient(to right, #b22222 0%, #b22222 50%, #b22222 100%);
}

.gallery-card .box-title {
    font-size: 24px;
    max-width: 572px;
    color: #fff;
    margin-bottom: 0
}

@media (max-width: 1299px) {
    .gallery-card .box-title {
        font-size:20px
    }
}

.gallery-card .box-text {
    color: var(--theme-color);
    margin-bottom: 12px
}

.gallery-card:hover .box-img:before {
    opacity: 1;
    height: 100%;
    visibility: visible
}

.gallery-card:hover .box-img .icon-btn {
    opacity: 1;
    visibility: visible
}

@media (max-width: 375px) {
    .gallery-card:hover .box-img .icon-btn {
        top:25%;
        right: 0px;
        left: unset
    }
}

.gallery-card:hover .shape {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1)
}

.gallery-card:hover .gallery-content {
    bottom: 32px;
    opacity: 1;
    visibility: visible
}

.gallery-card.style2 .box-title {
    font-weight: 400;
    font-size: 18px !important
}

.gallery-card.style2 .shape {
    inset: 24px
}

.gallery-card.style2 .icon-btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #fff
}

.gallery-card.style2 .icon-btn:hover {
    background-color: #fff;
    color: #b22222
}

.gallery-card.style3 .box-img {
    height: 389px
}

.gallery-card.style3 .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-card.style3 .box-title {
    font-weight: 400;
    font-size: 18px !important
}

.gallery-card.style3 .shape {
    inset: 24px
}

.gallery-card.style3 .icon-btn {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #fff
}

.gallery-card.style3 .icon-btn:hover {
    background-color: #fff;
    color: #b22222
}

.gallery-card.style4 .box-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: -webkit-linear-gradient(bottom, rgba(2,0,15,0.6), rgba(2,0,15,0.6));
    background: linear-gradient(0deg, rgba(2,0,15,0.6), rgba(2,0,15,0.6));
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 4
}

.gallery-card.style4 .icon-btn {
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 25px
}

.gallery-card.style4:hover .box-img:before {
    opacity: 1;
    height: 100%;
    visibility: visible
}

.gallery-card.style4:hover .box-img .icon-btn {
    top: 50%;
    right: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.gallery-card.style5 i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 34px;
    z-index: 2
}

.gallery-card.style5:hover i {
    opacity: 1;
    visibility: visible
}

.gallery-box .box-img {
    position: relative;
    z-index: 2
}

.gallery-box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-box .box-img .icon-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-color: #fff;
    color: #fff;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out
}

.gallery-box .box-img .icon-btn:hover {
    background-color: #fff;
    color: #b22222
}

.gallery-box:hover .icon-btn {
    opacity: 1;
    visibility: visible
}

.gallery-slider4 .swiper-wrapper {
    z-index: -1
}

.gallery-slider4 .swiper-slide.swiper-slide-active .gallery-item2 .box-img img {
    -webkit-filter: blur(0px);
    filter: blur(0px)
}

.gallery-slider4 .swiper-slide.swiper-slide-active .gallery-item2 .icon-btn {
    opacity: 1;
    visibility: visible
}

.gallery-slider4 .icon-box {
    margin-top: 60px;
    background: rgba(108,109,113,0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 64px;
    padding: 8px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 150px;
    z-index: 99
}

@media (max-width: 767px) {
    .gallery-slider4 .icon-box {
        gap:50px
    }
}

.our-projects-elite{
    padding:60px 0;
}


  #latest-releases {
    background: var(--black);
    padding: 70px 0 80px;
    
}
.video-section {
    position: relative;
   
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /*z-index: -1;*/
    height:100%;
}

  .tp-contactform-btn button.akubtn {
    border-radius: 50%;
    height: 100px;
    width: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0;
    line-height: 16px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #eee;
    margin-left:auto;
}