
html, body {
  background: #000000;
  scroll-behavior: auto !important;
  cursor: default;
}
  
::selection {background: #000000; color: #FFFFFF; text-shadow: none;}

:root {
  /* light to dark */
  --main-light-color: #e8e2da;
  --main-dark-color: #000000;

  /* Home About Column CSS */
  --ar-fill-color: #ffffff;   /* Tailwind green-500 */
  --ar-empty-color: #ffffff40;  /* Slate-800 */
  
  --wheel-size: 180px; /* control steering wheel size */
 
  /* stack snap slider  */ 
  --sg0-color-primary-hsl: 250, 84%, 54%;
  --sg0-color-bg-hsl: 0, 0%, 100%;
  --sg0-color-contrast-high-hsl: 230, 7%, 23%;
  --sg0-color-contrast-higher-hsl: 230, 13%, 9%;
  --sg0-color-bg-light-hsl: 0, 0%, 100%;

  /* spacing */
  --sg0-space-sm: 0rem;
  --sg0-space-md: 120px;
  /* stack snap slider  */

  /* Brand Logo Carousel */
  --marquee-item-width: 6rem; /* change to adjust size */
  --marquee-gap: 8rem;
  --marquee-height: calc(var(--marquee-item-width) + 1rem);
  /* Brand Logo Carousel */
} 

/* Define the custom font */
 @font-face {
    font-family: 'porscha';
    src: url('assets/fonts/porscha.ttf') format('truetype'),
         url('assets/fonts/porscha.ttf') format('truetype');
     font-weight: normal;
    font-style: normal;
    font-display: swap;  /* prevents blank text before load  */
  }

  @font-face {
    font-family: 'dmc5';
    src: url('assets/fonts/dmc5.woff2') format('woff2'),
         url('assets/fonts/dmc5.woff2') format('woff2');
     font-weight: normal;
    font-style: normal;
    font-display: swap;  /* prevents blank text before load  */
  }

  /* Custom class you can use anywhere */
  .font-porscha {
    font-family: 'porscha', sans-serif;
  }

  .color-green{
    color: #62b92c;
  }
  .green{
    color: #73e600;
  }
  
.font-dmc5 {
    font-family: 'dmc5', sans-serif;
}

  /* .text-stroke-white { 
    -webkit-text-stroke: 1px white!important;
    color: transparent!important;
    font-weight: lighter!important;
    font-size: 82px!important;
    margin-top: -10px!important; 
  } */


  .bnr-cta{
    background: transparent;
    backdrop-filter: blur(30px) brightness(2.5);
    border-radius: 100px;
  }

  .btn-glass {
    backdrop-filter: blur(50px) brightness(2.5);
    -webkit-backdrop-filter: blur(50px) brightness(2.5);
  }

  .bg-green{
    color: #62ff00!important;
  }

 .container{
  max-width: 1600px!important;
  width: 100%;
 }

   @layer utilities {
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(120px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 2s ease-out forwards;
  }
}
 
.ar-banner-CTA{
    /* background:linear-gradient(180deg, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0.699) 100%) !important; */
    /* background-color: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(20px) brightness(2.5);
    border-radius: 0px;
    padding: 12px 45px;
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-family: 'dmc5';

    /* No border, fixed width */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
} 

.ar-banner-marquee {
    display: inline-flex;
    gap: 1rem;
  }

  .ar-banner-marquee-text {
    white-space: nowrap;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .animate-marquee {
    animation: marquee 2s linear infinite;
  }

  /* Optional: pause scroll on hover for readability */
  .ar-banner-CTA:hover .ar-banner-marquee {
    /* animation-play-state: paused; */
  }

  
 
  /* Hide default cursor inside slider */
 /* Hide system cursor only inside slider */
.mySwiper {
  cursor: none;
}

/* Drag Cursor Circle */
#drag-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  pointer-events: none; 
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none; /* hidden by default */
  text-transform: uppercase;
}

/* Text inside circle */
#drag-cursor span {
  pointer-events: none;
}

 /* ===== WebKit Browsers: Chrome, Edge, Safari ===== */
::-webkit-scrollbar {
  width: 12px; /* width of vertical scrollbar */
  height: 12px; /* height of horizontal scrollbar */
  display: none;
}

::-webkit-scrollbar-track {
  background: transparent; /* show page background behind scrollbar */
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4); /* semi-transparent handle */
  border-radius: 10px;
  border: 3px solid transparent; /* optional spacet around thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}

 .ar-abt-h2{
    font-size: 18px;
    line-height: 1.8;
    font-weight: 100;
    color: #ffffff;
    text-align: right;
    margin-bottom: 32px;
    font-family: 'CadillacGothic-WideRegular', Arial, NanumGothic, sans-serif !important;
    font-weight: 100;
    width: 80%;
    /* padding: 0%; */
    padding-top: 40px;
    letter-spacing: 0px;
    /* font-style: italic; */
 }

 .ar-aboutus-section{
    background: black; 
    text-align: center;
    padding: 10% 0%;
 }


.ar-aboutus-stic {
	display: grid;
	place-items: center;
	min-height: 100vh;
	background: hsl(0, 0%, 0%);
	font-family: "SF Pro Text", "SF Pro Icons", "AOS Icons", "Helvetica Neue", Helvetica, Arial, sans-serif, system-ui;
}


  .ar-aboutus-stic::before {
	--line: hsla(0, 0%, 95%, 0.15);
	content: "";
	height: 100vh;
	width: 100%;
	position:absolute;
	background:
		linear-gradient(90deg, var(--line) 1px, transparent 1px 10vmin) 0 -5vmin / 10vmin 10vmin,
		linear-gradient(var(--line) 1px, transparent 1px 10vmin) 0 -5vmin / 10vmin 10vmin;
	mask: linear-gradient(-15deg, transparent 30%, white);
	top: 0;
	z-index: -1;
	transform: translate3d(0, 0, -100vmin);
}

 /* button */
.ad-button{
    display: flex;
    align-self: center;
    align-content: center;
    justify-content: start;
}
.ad-n-button{
    display: flex;
    align-self: center;
    align-content: center;
    justify-content: start;
}

 .ad-wrapper {
    margin: 0;
    /* margin-top: 40px; 
    margin-bottom: -160px; */
    background: #080808;
    display: grid;
    width: fit-content;
    place-items: center;
    border: 10px solid #101010;
    height: fit-content; 
    }

    .ad-btn { 
      position: relative;
      padding: 22px 120px;
      box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
      color: #ffffff;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 4px; 
      overflow: hidden;
      display: inline-block;
      font-family: 'dmc5', sans-serif!important; 
      font-size: 10px;
    }
 

    .ad-btn span {
      position: absolute;
      display: block;
    }

    /* Text layer */
    .ad-btn span:last-of-type {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      z-index: 1;
      color: #ffffff;
      pointer-events: none;
    }

    /* Top border */
    .ad-btn span:nth-child(1) {
      top: 0;
      right: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, #171618, #3bff3b);
      animation: ad-animate1 2s linear infinite;
    }

    @keyframes ad-animate1 {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* Right border */
    .ad-btn span:nth-child(2) {
      top: 0;
      right: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(to bottom, #171618, #3bff3b);
      animation: ad-animate2 2s linear infinite;
      animation-delay: 1s;
    }

    @keyframes ad-animate2 {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(100%); }
    }

    /* Bottom border */
    .ad-btn span:nth-child(3) {
      bottom: 0;
      right: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(to left, #171618, #3bff3b);
      animation: ad-animate3 2s linear infinite;
    }

    @keyframes ad-animate3 {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Left border */
    .ad-btn span:nth-child(4) {
      top: 0;
      left: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(to top, #171618, #3bff3b);
      animation: ad-animate4 2s linear infinite;
      animation-delay: 1s;
    }

    @keyframes ad-animate4 {
      0% { transform: translateY(100%); }
      100% { transform: translateY(-100%); }
    }
 /* button */

 
 
 /* stack snap slider */
*, *::after, *::before {
  box-sizing: border-box;
} 
 
.ar-ind-slider{
  padding:0px;
}
  
@media(min-width: 64rem){
  :root {
    /* spacing */
    --sg0-space-sm: 0rem;
    --sg0-space-md: 120px;
  }
}

.ar-stack-cards {
  padding-bottom: 500px; /* or dynamically based on number of slides */
}

/* component */
.stack-cards {
  --stack-cards-gap: var(--sg0-space-sm);
  --stack-cards-item-ratio: 1/0.5;
}

.stack-cards__item {  
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: var(--sg0-space-md);
  height: 0;
  padding-bottom: calc(100%/(var(--stack-cards-item-ratio)));
  -webkit-transform-origin: center top;
          transform-origin: center top; 
}
.stack-cards__item > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* utility classes */
.sg0-overflow-hidden {
  overflow: hidden;
}

.sg0-shadow-md {
  box-shadow:0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
}

.sg0-radius-lg {
  border-radius: 0.5em;
}

.sg0-bg {
  --sg0-bg-o: 1;
  background-color: hsla(var(--sg0-color-bg-hsl), var(--sg0-bg-o, 1));
}

.sg0-flex-center {
  justify-content: center;
  align-items: center;
}

.sg0-flex {
  display: flex;
}

:where(.sg0-inner-glow) {
  position: relative;
}

.sg0-inner-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
}

.sg0-bg-light {
  --sg0-bg-o: 1;
  background-color: hsla(var(--sg0-color-bg-light-hsl), var(--sg0-bg-o, 1));
}

.ar-stack-gradient{
    padding: 8% 6%;
    /* background: linear-gradient(#62b92c45, transparent); */
    /* border-radius: 16px 16px 0px 0px; */
    /* border: 1px solid #62b92c32; */
    box-shadow: 0px -120px 240px -25px #ffffff15;
    padding-bottom: 0px;
}
.ar-services-h2{
    font-size: 48px;
    line-height: 1.3;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    /* margin-bottom: 32px; */
    font-family: 'alwaysdry-SansRegular', sans-serif!important;
     /* width: 65%; */
     /* padding: 0% 25%; */
    letter-spacing: -2px;
    /* font-style: italic; */
    /* text-transform:uppercase; */
 }

 .ar-snap-Descr{
  color: #dededeb5;
 }

 .ar-snap-p{
  width: 40%;
 }

 .ar-snap-h3{
    text-shadow: 0px 10px 30px #000000bd;
 }
 
 /* stack snap slider */   


 /* product */
/* Custom Featured Section */
.ar-featured-section {
  position: relative;
}

.ar-featured-swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.ar-featured-slide {
  min-height: 400px;
}

.ar-slide-img {
  padding: 20px;
}
.ar-featured-section {
  position: relative;
}

.ar-featured-slider {
  position: relative;
}

.ar-featured-slide {
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.card-swiper {
    margin: 70px auto 0;
    width: 75%;
}

@media only screen and (max-width: 1499px) {
    .card-swiper {
        width:85%;
    }
}

@media only screen and (max-width: 1200px) {
    .card-swiper {
        width:85%;
    }
}

@media only screen and (max-width: 1023px) {
    .card-swiper {
        margin:70px auto 0;
        width: 60%;
    }
}

@media only screen and (max-width: 549px) {
    .card-swiper {
        width:100%;
    }
}

.card-swiper .swiper-slide {
    background-color: #ffffff;
    border-radius: 52px;
    box-shadow: 0 14px 60px -14px #00000040;
    display: flex;
    position: relative;
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide {
        flex-direction:column;
    }
}

.card-swiper .swiper-slide .image-wrap {
    background-color: #ffffff;
    border-radius: 52px;
    display: grid;
    height: 500px;
    place-content: center;
    width:45%;
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide .image-wrap {
        height:360px;
        width: 100%;
    }
}

.card-swiper .swiper-slide .image-wrap img {
    height: 425px;
    object-fit: contain;
    width: auto;
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide .image-wrap img {
        height:200px;
    }
}

@media only screen and (max-width: 549px) {
    .card-swiper .swiper-slide .image-wrap img {
        height:200px;
    }
}

.card-swiper .swiper-slide .text-wrap {
    background-color: #73e600;
    /* border: 6px solid white; */
    border-radius: 52px;
    height: 500px;
    padding: 65px;
    position: relative;
    width: 55%;
}

@media only screen and (max-width: 1200px) {
    .card-swiper .swiper-slide .text-wrap {
        padding:35px;
    }
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide .text-wrap {
        height:500px;
        margin-top: -60px;
        width: 100%;
    }
}

@media only screen and (max-width: 549px) {
    .card-swiper .swiper-slide .text-wrap {
        height:380px;
        padding: 30px;
    }
}

.card-swiper .swiper-slide .text-wrap>.title {
    margin: 10px 0 7px;
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide .text-wrap>.title {
        margin:5px 0 15px;
    }
}

@media only screen and (max-width: 549px) {
    .card-swiper .swiper-slide .text-wrap>.title {
        margin:5px 0 10px;
    }
}

.card-swiper .swiper-slide .text-wrap ul.attributes {
    margin-top: 30px;
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide .text-wrap ul.attributes {
        margin-top:20px;
    }
}

@media only screen and (max-width: 549px) {
    .card-swiper .swiper-slide .text-wrap ul.attributes {
        margin-top:10px;
    }
}

.card-swiper .swiper-slide .text-wrap ul.attributes li {
    border: 1px solid #0e0d1b;
    border-radius: 22px;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 4px 15px;
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide .text-wrap ul.attributes li {
        padding:5px 10px;
    }

    .card-swiper .swiper-slide .text-wrap ul.attributes li span {
        font-size: 10px;
    }
}

.card-swiper .swiper-slide .text-wrap .description {
    isolation: isolate;
    max-width: 450px;
    will-change: transform;
}

.card-swiper .swiper-slide .text-wrap .description p {
    display: block;
    margin-top: 20px;
}

@media only screen and (max-width: 549px) {
    .card-swiper .swiper-slide .text-wrap .description p {
        -webkit-box-orient:vertical;
        -webkit-line-clamp: 5;
        display: block;
        margin-top: 10px;
        max-height: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }
}

.card-swiper .swiper-slide .text-wrap .bottom-wrap {
    align-items: center;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0 35px 0 60px;
    position: absolute;
    width: 100%;
}

@media only screen and (max-width: 1200px) {
    .card-swiper .swiper-slide .text-wrap .bottom-wrap {
        padding:0 35px 0 30px;
    }
}

@media only screen and (max-width: 549px) {
    .card-swiper .swiper-slide .text-wrap .bottom-wrap {
        padding:0 35px 0 30px;
    }
}

.card-swiper .swiper-slide .text-wrap .bottom-wrap .index {
    font-size: 124px;
    margin-left: auto;
}

@media only screen and (max-width: 1023px) {
    .card-swiper .swiper-slide .text-wrap .bottom-wrap .index {
        font-size:72px;
    }
}

.card-swiper .swiper-slide:nth-child(2n+2) .text-wrap {
    background-color: #000000;
    /* border: 6px solid #73e600; */
}

.card-swiper .swiper-slide:nth-child(2n+2) .text-wrap .color-purple,.card-swiper .swiper-slide:nth-child(2n+2) .text-wrap .index {
    color: #fff;
}
.small-cta {
    align-items: center;
    display: flex;
;
}
.small-cta span {
    color: #0e0d1b;
    margin-left: 20px;
}
.small-cta div {
    background-color: #0e0d1b;
    border: 1px solid #0e0d1b;
    border-radius: 100%;
    box-sizing: content-box;
    padding: 18px;
    -webkit-transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
    -moz-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -ms-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -o-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
}
 
.small-cta:hover div {
    background-color: transparent;
    border: 1px solid #0e0d1b;
    -webkit-transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
    -moz-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -ms-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -o-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
}

.small-cta:hover svg {
    transform: rotate(45deg);
    -webkit-transition: -webkit- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    -moz-transition: -moz- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    -ms-transition: -ms- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    -o-transition: -o- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    transition: transform .7s 
cubic-bezier(.19, 1, .22, 1) .3s;
}

.small-cta:hover svg line, .small-cta:hover svg path 
 {
    stroke: #0e0d1b;
    -webkit-transition: stroke .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
    -moz-transition: stroke .7s cubic-bezier(.19,1,.22,1) 0s;
    -ms-transition: stroke .7s cubic-bezier(.19,1,.22,1) 0s;
    -o-transition: stroke .7s cubic-bezier(.19,1,.22,1) 0s;
    transition: stroke .7s 
cubic-bezier(.19, 1, .22, 1) 
 }


 .small-cta2 {
    align-items: center;
    display: flex;
;
}
.small-cta2 span {
    color: #73e600;
    margin-left: 20px;
}
.small-cta2 div {
    background-color: #73e600;
    border: 1px solid #73e600;
    border-radius: 100%;
    box-sizing: content-box;
    padding: 18px;
    -webkit-transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
    -moz-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -ms-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -o-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
}
 
.small-cta2:hover div {
    background-color: transparent;
    border: 1px solid #73e600;
    -webkit-transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
    -moz-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -ms-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    -o-transition: all .7s cubic-bezier(.19,1,.22,1) 0s;
    transition: all .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
}

.small-cta2:hover svg {
    transform: rotate(45deg);
    -webkit-transition: -webkit- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    -moz-transition: -moz- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    -ms-transition: -ms- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    -o-transition: -o- transform .7s cubic-bezier(.19,1,.22,1) .3s;
    transition: transform .7s 
cubic-bezier(.19, 1, .22, 1) .3s;
}

.small-cta2:hover svg line, .small-cta2:hover svg path 
 {
    stroke: #73e600;
    -webkit-transition: stroke .7s 
cubic-bezier(.19, 1, .22, 1) 0s;
    -moz-transition: stroke .7s cubic-bezier(.19,1,.22,1) 0s;
    -ms-transition: stroke .7s cubic-bezier(.19,1,.22,1) 0s;
    -o-transition: stroke .7s cubic-bezier(.19,1,.22,1) 0s;
    transition: stroke .7s 
cubic-bezier(.19, 1, .22, 1) 
 }
 /* product */
 

 /* presence */
.ar-worldwide-h2{
    font-size: 62px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffffff;
    text-align: left; 
    font-family: 'alwaysdry-SansRegular', sans-serif!important; 
    letter-spacing: 1px;
    font-style: italic; 
    mix-blend-mode: difference;
 }
 /* presence */

/* Marquee Scroll Animation */
    @keyframes ar-foot-mq-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .ar-foot-mq-section {
      position: relative;
    }

    .ar-foot-mq-track {
      display: flex;
      white-space: nowrap;
    }

    .ar-foot-mq-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      font-size: 144px;
      color: #73e600;
      font-style: italic; 
    }

    .ar-foot-mq-item span{
       font-family: 'alexisv3expandital', sans-serif!important;
        letter-spacing: 1px;
    }

    /* Optional: pause on hover */
    .ar-foot-mq-section:hover .ar-foot-mq-track {
      animation-play-state: paused;
    }

    .ar-foot-link-div{
    border-top: 1px solid #ffffff25;
    border-bottom: 1px solid #ffffff25;
    margin: 0%;
    padding: 8% 0% 4% 0%;
}

.ar-foot-text{ 
    font-size: 46px;
    color: white;
    width: 85%;
    line-height: 1.2em;
    letter-spacing: 1px;
}

.ar-foot-btn{
    letter-spacing: 3px; 
    width: fit-content;
}

.ar-foot-link{
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.8px; 
}

.ar-foot-link:hover{
    color: #73e600; 
}

.ar-foot-left{
    width: 75%;
}

.ar-foot-copyright{
  color: #fff;
  font-size: 12px;
  /* padding-left: 6%; */
}

.ar-foot-developed{
  color: #fff;
}

.ar-foot-btn{
  color: #fff;
}
 

/* presence worldwide */
 .intro {
  position: relative;
  height: 90vh;
  background-color: #000;
  color: #fff;
  
  .visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.5));
    }
  }
  
  .bg-img {
    will-change: transform filter;
    filter: brightness(50%);
  }
}

.title {
  position: relative;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer {
  height: 50vh;
  background-color: darken(#4ea59f, 30%);
  color: #fff;
} */

.slide-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.intro, .slide, footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  backdrop-filter: blur(10px) brightness(0.5);
  will-change: transform;
 
  
  
  .bg-img {
    width: 120%;
    height: 120%;
    left: -10%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.slide-title {
  position: relative;
}

.slide-progress {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.25);
}

.progress-thumb {
  display: block;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: scaleX(0);
  transform-origin: left;
}
/* presence worldwide */

/* noise bg */ 
/* .ar-prod-bg{
  background:#fff;
}
.noiseBG{
  mix-blend-mode:multiply;
  background-image:url(https://static.tumblr.com/rxfwyqf/20Zlzzth8/noise.png);
  opacity:1; 
  width: 100%;
  height: 100%;
} */ 
/* noise bg */

.ad-worldwide-p {
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 1.4;
}
 

/* our presence animated pin*/
 

.box {
  width: 400px;
  height: auto;
  display: block;
  margin: auto;
  margin-top: 20px;
  background: none;
  animation: updown 1s ease 0.2s infinite;
  z-index: 99;
}

.container1 {

}

.circle {
  position: relative;
  background-color: #73e600;
  width: 82px;
  height: 82px;
  margin: auto;
  padding: 0;
  top: 100px;
  border-radius: 50%;
}

.inner {
  position: relative;
  background-color: white;
  width: 40px;
  height: 40px;
  margin: auto;
  padding: 0;
  top: 25px;
  border-radius: 50%;
  z-index: 3;
}

.highlight {
  position: relative;
  width: 79px;
  height: 80px;
  margin: auto;
  padding: 0;
  z-index: 3;
  top: -40px;
  left: 1.4px;
  border-radius: 50%;
  border-top: #ffffff60 5px solid;
  transform: rotate(30deg);
}

.square {
  position: relative;
  background-color: #83ff07;
  width: 35px;
  height: 35px;
  margin: auto;
  padding: 0;
  /* bottom: 7px; */
  top: 75px;
  transform: rotate(-45deg);
  z-index: 2;
  border-bottom-left-radius: 8px;
}

.shadow {
  position: relative;
  background-color: black;
  width: 110px;
  height: 20px;
  border-radius: 50%;
  margin: auto;
  padding: 0;
  top: -100px;
  opacity: 0.20;
  z-index: 0;
  animation: shadow 1s ease 0.2s infinite;
}

@keyframes updown {
    0%   {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(8px);
    }
  
    100% {
      transform: translateY(0px);
    }
}

@keyframes shadow {
    0%   {
      transform: scale(1);
      opacity: 0.20;
    }

    50% {
      transform: scale(0.95);
      opacity: 0.28;
    }
  
    100% {
      transform: scale(1);
      opacity: 0.20;
    }
}
/* our presence animated pin*/



/* sidebar menu */
/* .ar-sidebar-main{
    left: 40px;
    border-radius: 40px 40px 60px 60px;
    width: 95%;
    top: 11px;
    height: 80vh;
    background: black;
    padding: 40px 25px; 
} */

.ar-sidebar-main {
  left: 40px;
  top: 11px;
  width: 95%;
  height: 80vh;
  background: linear-gradient(180deg, black, rgba(0, 0, 0, 0.5));
  padding: 40px 25px;
  border-radius: 40px 40px 60px 60px;
  transform-origin: top; /* defines where it expands from */
  transform: scaleY(0); /* collapsed state */
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(100px) brightness(0.5);
}

.ar-sidebar-main.active {
  transform: scaleY(1); /* expands vertically */
  opacity: 1;
  pointer-events: all;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
/* sidebar menu */

/* CTA Banner */

.ar-CTA-bnr-section {
  position: relative; 
}

.ar-CTA-bnr-bg video {
  object-fit: cover;
}

.ar-CTA-bnr-container {
  display: grid;
  align-items: center;
}

.ar-CTA-bnr-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.ar-CTA-bnr-btn {
  transition: all 0.3s ease;
}

.ar-CTA-bnr-title{
  font-family: 'alwaysdry-SansRegular', sans-serif!important;
  font-size: 48px;
  font-style: italic;
  text-decoration: underline;
  font-weight: 900;
  line-height: 1.4em!important;
}

.ar-CTA-bnr-desc{
  font-family: 'GeneralSans-Extralight', sans-serif!important;
  font-size: 16px;
  font-weight: normal;
  width: 80%;
  letter-spacing: 0.4px;
  line-height: 1.4em;
}

.ar-CTA-bnr-contact{
  margin-top:60px!important;
}

.ar-CTA-bnr-icon{
  width: 3.75rem;
  height: 3.75rem;
  padding: 10px;
}

.ar-cta-bnr-info-h4{
    font-size: 14px;
    line-height: 1.2;
    font-weight: 100;
    color: #ffffffad;
    text-align: left; 
    font-family: 'dmc5', sans-serif!important;
     width:100%; 
    letter-spacing: 1.2px; 
    margin-top: 2px;
    margin-bottom: 6px;
    /* text-decoration:underline */
	/* font-style: italic; */
 }

 .ar-cta-bnr-info-p{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 100;
    color: #ffffff;
    text-align: left; 
    font-family: 'alwaysdry-SansRegular', sans-serif!important;
     width:100%; 
    letter-spacing: 0.4px; 
    margin-top: 2px;
    margin-bottom: 6px;
    text-decoration:underline;
	/* font-style: italic; */
 }


 .ar-CTA-bnr-right{
    height: -webkit-fill-available;
    display: flex;
    align-items: end;
}
 
.ar-CTA-bnr-input::placeholder {
  font-family: 'dmc5', sans-serif!important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.6px;
  font-weight: 300;
  transition: color 0.3s ease;
}

/* Input Container */
.ar-CTA-bnr-input-group {
  position: relative;
  width: 100%;
}

/* Input Field */
.ar-CTA-bnr-input {
  width: 100%; 
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  padding: 18px 2px;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* backdrop-filter: blur(20px); */
}

/* Focused / Hovered Input */
.ar-CTA-bnr-input:focus {
  border-color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  border:none;
}

/* Label Styling */
.ar-CTA-bnr-label {
  position: absolute;
  left: 0rem;
  top: 1rem;
  font-family: 'dmc5', sans-serif!important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.6px;
  pointer-events: none;
  transition: all 0.25s ease;
  font-weight: 100;
}

/* Floating Label Animation */
.peer:focus ~ .ar-CTA-bnr-label,
.peer:not(:placeholder-shown) ~ .ar-CTA-bnr-label {
  top: -0.3rem;
  left: 0rem;
  font-size: 11px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0);
  padding: 0rem;
  border-radius: 0rem;
}

/* Placeholder invisible but space kept */
.ar-CTA-bnr-input::placeholder {
  color: transparent;
}

/* Optional – transition smoothness & focus glow */
.ar-CTA-bnr-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  border-bottom:1px solid white;
}

.ar-CTA-bnr-form{
    margin-bottom: -30px;
    backdrop-filter: blur(40px) brightness(0.5);
    padding: 32px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
/* CTA Banner */


/* feed carousel */   
.ar-yt-feed { font-family: system-ui, "Poppins", sans-serif; padding: 40px 0; }
.ar-yt-feed h2 { font-size: 1.25rem; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.ar-yt-carousel { position: relative; overflow: hidden; user-select: none; touch-action: pan-y; padding: 10px 0; }
.ar-yt-track { display: flex; gap: 10px; align-items: center; transform: translate3d(0,0,0); will-change: transform; }

/* Video item card - FIXED sizes to prevent resize */
.ar-yt-item { 
  flex: 0 0 auto !important; 
  position: relative; 
  border-radius: 6px; 
  overflow: hidden; 
  background: #111; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  width: 160px !important;
  height: 90px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  min-height: 90px !important;
  max-height: 90px !important;
}
.ar-yt-item:hover { 
  transform: translateY(-2px); 
}

/* Clickable link container - FIXED 16:9 ratio */
.ar-yt-link { 
  display: block !important; 
  position: relative; 
  width: 160px !important; 
  height: 90px !important; 
  min-width: 160px !important;
  max-width: 160px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  cursor: pointer; 
  overflow: hidden;
  border-radius: 6px;
}

/* Thumbnail image - FIXED to container */
.ar-yt-thumb { 
  display: block; 
  width: 160px !important; 
  height: 90px !important; 
  min-width: 160px !important;
  max-width: 160px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  object-fit: cover; 
  transition: filter 0.2s ease; 
}
.ar-yt-link:hover .ar-yt-thumb { 
  filter: brightness(0.8); 
}

/* Play button - centered */
.ar-yt-play-btn { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 2;
  opacity: 0.9; 
  transition: opacity 0.2s ease, transform 0.2s ease; 
  pointer-events: none;
}
.ar-yt-play-btn svg { width: 36px !important; height: 25px !important; }
.ar-yt-link:hover .ar-yt-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }

/* Navigation buttons */
.ar-yt-btn { 
  cursor: pointer; 
  border: none; 
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.7);
  transition: background 0.2s ease;
}
.ar-yt-btn:hover { background: rgba(98, 185, 44, 0.9); }

/* Dragging state */
.ar-yt-carousel.dragging { cursor: grabbing; }
.ar-yt-carousel.dragging .ar-yt-link { pointer-events: none; }

/* Tablet - FIXED sizes */
@media (max-width: 992px) {
  .ar-yt-item { width: 140px !important; height: 79px !important; min-width: 140px !important; max-width: 140px !important; min-height: 79px !important; max-height: 79px !important; }
  .ar-yt-link { width: 140px !important; height: 79px !important; min-width: 140px !important; max-width: 140px !important; min-height: 79px !important; max-height: 79px !important; }
  .ar-yt-thumb { width: 140px !important; height: 79px !important; min-width: 140px !important; max-width: 140px !important; min-height: 79px !important; max-height: 79px !important; }
  .ar-yt-play-btn svg { width: 32px !important; height: 22px !important; }
}
/* Mobile - FIXED sizes */
@media (max-width: 768px) {
  .ar-yt-feed { padding: 20px 0; }
  .ar-yt-feed h2 { font-size: 0.9rem; margin-bottom: 0.75rem; }
  .ar-yt-item { width: 120px !important; height: 68px !important; min-width: 120px !important; max-width: 120px !important; min-height: 68px !important; max-height: 68px !important; }
  .ar-yt-link { width: 120px !important; height: 68px !important; min-width: 120px !important; max-width: 120px !important; min-height: 68px !important; max-height: 68px !important; }
  .ar-yt-thumb { width: 120px !important; height: 68px !important; min-width: 120px !important; max-width: 120px !important; min-height: 68px !important; max-height: 68px !important; }
  .ar-yt-play-btn svg { width: 28px !important; height: 20px !important; }
  .ar-yt-btn { width: 24px; height: 24px; font-size: 0.65rem; }
  .ar-yt-track { gap: 8px; }
}
/* Small Mobile - FIXED sizes */
@media (max-width: 480px) {
  .ar-yt-item { width: 100px !important; height: 56px !important; min-width: 100px !important; max-width: 100px !important; min-height: 56px !important; max-height: 56px !important; }
  .ar-yt-link { width: 100px !important; height: 56px !important; min-width: 100px !important; max-width: 100px !important; min-height: 56px !important; max-height: 56px !important; }
  .ar-yt-thumb { width: 100px !important; height: 56px !important; min-width: 100px !important; max-width: 100px !important; min-height: 56px !important; max-height: 56px !important; }
  .ar-yt-play-btn svg { width: 24px !important; height: 17px !important; }
  .ar-yt-track { gap: 6px; }
}
/* feed carousel */


/* documentation */

.ar-d-section.is--hero {
    position: relative;
    overflow: hidden;
    height: 70vh;
}

.ar-d-video-overlay {
    background: linear-gradient(360deg, black, transparent 65%);
}

.ar-doc-title{
  font-family: 'alwaysdry-SansRegular', sans-serif!important;
  font-size: 44px;
  text-decoration:underline;
  font-weight: 900;
  font-style: italic;
  margin-bottom:10px;  
}

.ar-doc-date{
  font-family: 'GeneralSans-Light', sans-serif!important;
  font-size: 24px; 
  font-weight: 200; 
  margin-bottom:60px;  
}

.ar-doc-cont-h{
  font-family: 'dmc5', sans-serif!important;
  font-size: 28px; 
  font-weight: 200; 
  margin-top: 80px;
  margin-bottom:4px;  
}

.ar-doc-cont-p{
  font-family: 'GeneralSans-Light', sans-serif!important;
  font-size: 22px; 
  font-weight: 200;  
  line-height: 1.3em;
  letter-spacing: 0.4px;
}

.ar-doc-section li{
  font-family: 'GeneralSans-Light', sans-serif!important;
  font-size: 22px; 
  font-weight: 200;  
  line-height: 1.4em;
}


/* brand Logo Carousel */ 
/* container */
.review-marquee-section{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:1rem;
  overflow:visible;
  padding:4rem 0;
}

/* each row */
.review-marquee-wrap{
  position:relative;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  /* tracks are dynamically created by JS; but set baseline layout */
}

/* The track that will be animated (created by JS) */
.review-marquee-track{
  display:inline-flex;
  align-items:center;
  will-change: transform;
  /* prevents subpixel blurriness on some browsers */
  transform-style: preserve-3d;
}

/* item */
.review-marquee-item{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: var(--marquee-item-width);
  height: var(--marquee-item-width);
  margin-right: var(--marquee-gap);
  background: #fff; /* optional box bg — remove if you want transparent */
  border-radius: 6px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  overflow:hidden;
}

/* last item spacing fix (JS duplicates items so spacing naturally repeats) */
.review-marquee-item img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  pointer-events:none;
  -webkit-user-drag: none;
  user-select: none;
}

/* responsive adjustments */
@media (max-width:720px){
  :root { --marquee-item-width: 9.5rem; --marquee-gap: 1rem; }
}
/* Brand Logo Carousel */


/* Home Banner Slider */
/* Overlay Effect */
    .video-overlay {
      background: linear-gradient(360deg, black, transparent);
    }
    /* Fancy navigation styling */
    .swiper-button-next,
    .swiper-button-prev {
      color: #fff;
      background: rgba(0, 0, 0, 0.4);
      padding: 10px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: #62b92c;
      color: #fff;
      transform: scale(1.1);
    }
    .swiper-pagination-bullet {
      background: #ffffff2b;
      opacity: 0.7;
      transition: all 0.3s;
    }
    .swiper-pagination-bullet-active {
      background: #62b92c;
      width: 16px;
      border-radius: 8px;
    }
/* Home Banner Slider */



/* Home About Column CSS */ 
.ar-para{
  font-size: 44px;
  padding: 0px 30px;
  letter-spacing: 0.6px;
  width: 85%;
}

.ar-char {
  display:inline-block;
  background: linear-gradient(
    90deg,
    var(--ar-fill-color) calc(var(--p, 0) * 100%),
    var(--ar-empty-color) calc(var(--p, 0) * 100%)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
} 

 .cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    circle 120px at var(--x, 50%) var(--y, 50%),
    rgba(34, 197, 94, 0.5),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

#map { position: absolute; top: 100%; bottom: 0; width: 100%;z-index: 100; }
/* Home About Column CSS */
 

.ar-foot-links2{
display:none!important; 
}


.ar-foot-comp-prof-btn svg{
  margin-top:-2px;
}

.ar-foot-comp-prof-btn img{
  margin-top:-4px;
}

.ar-mobile-nav-display{
  display:none;
}

.ar-mobile-abt-h2{
display:none!important;
}  

/* Product section Home */
.ar-product-sec{
  background:white!important;
}

.ar-prod-title{
  color: black!important;  
}
.ar-prod-subtitle{
  color:#62b92c!important;
}
.ar-prod-desc{
  color: black!important;
}
.ar-prod-d-color{
  color:#0e0d1b!important;
}
.ar-prod-slide-w{
  width: 883px;
}
/* Product section Home */

.ar-foot-comp-prof-btn img { 
    width: 30px;
}

/* Worldwide Presence Horizontal Mobile Slider */  
.ar-swipslide-display{
  display: none;
}
/* container */
.ar-worldwide-swiper-wrap {
  position: relative;
  width: 100%;
  margin-top: 0px;
  padding: 8px 0;
  box-sizing: border-box;
}

/* overlay halves for left/right click navigation */
.ar-worldwide-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 20;
  cursor: pointer;
  transition: background .15s ease;
}
.ar-worldwide-overlay-left { left: 0; }
.ar-worldwide-overlay-right { right: 0; }
.ar-worldwide-overlay:hover { background: rgba(255,255,255,0.03); }

/* swiper slide items */
.ar-worldwide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px;
  box-sizing: border-box;
  color: #fff;
  min-height: 320px;
}

/* icon and title */
.ar-worldwide-item i {
  font-size: 26px;
  display: inline-block;
  color: #fff;
  opacity: 0.95;
}
.ar-worldwide-item h3 {
    margin: 0;
    font-size: 20px;
    font-family: 'alwaysdry-SansRegular', sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: none;
    margin-bottom: 14px;
}

/* iframe preview */
.ar-worldwide-item iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 10px;
  display: block;
}

/* pagination dots styling */
.ar-worldwide-pagination {
  position: absolute;
  right: 14px;
  bottom: 8px;
  z-index: 30;
  top: 200px !important;
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.35); opacity: 1; }
.swiper-pagination-bullet-active { background: #fff; }

/* responsiveness & mobile behavior */
@media (max-width: 991px) {
  .ar-worldwide-item { min-height: 300px; padding: 14px; backdrop-filter: blur(40px) brightness(2.5); }
  .ar-worldwide-item iframe { height: 300px; }
  .ar-worldwide-overlay { width: 26%; }
}

@media (max-width: 767px) {
  .ar-worldwide-item { min-height: 220px; padding: 12px; backdrop-filter: blur(40px) brightness(2.5); }
  .ar-worldwide-item iframe { height: 220px; }
  .ar-worldwide-overlay { width: 30%; }
  .ar-worldwide-pagination {
    top: 92% !important;
  }
}

@media (max-width: 479px) {
  .ar-worldwide-item { min-height: 250px; padding: 10px; backdrop-filter: blur(40px) brightness(2.5); }
  .ar-worldwide-item iframe { height: 250px; }
  .ar-worldwide-overlay { width: 36%; }
  .ar-worldwide-pagination {
    top: 92% !important;
  }
}
/* Worldwide Presence Horizontal Mobile Slider */



.ar-circle_mobile-bnr {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -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;
    border-radius: 0px;
}

.ar-stickycircle-mobile{
  display: none!important;
}


.ar-service-btn-mobile{
  display: none!important;
}

.ar-nav-social-p{
  font-size: 24px;
} 