:root {
  --bg-color: #ffffff;
  --theme-color: #0e0f11;
  --main-color: #d0ff71;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/common/fonts/InstrumentSerif-Italic.ttf") format("truetype"); /* for .ttf */
  /* OR */
  /* src: url("/fonts/InstrumentSerif-Regular.otf") format("opentype"); */ /* for .otf */
  font-weight: normal;
  font-style: normal;
}

/* --------------- Menu --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 0px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999;
}
.navbar .container {
  background: #fff;
  border-radius: 0 0 15px 15px;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
span {
  display: inline-block;
  /* color: #000; */
}
.navbar .info {
  margin-right: auto;
  gap: 50px;
}
.info .item span {
  color: #000;
}
.menu-icon .icon {
  color: #000;
}
.navbar.nav-scroll {
  padding: 0;
  position: fixed;
  top: -100px;
  padding: 15px 0;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.navbar .logo {
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}
.navbar .navbar-nav {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  margin-left: 15px;
}
.navbar .navbar-nav .nav-link {
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
}
.navbar .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}
.navbar .topnav .butn {
  padding: 7px 20px;
  background: #000;
  color: #fff !important;
  margin-right: 15px;
}

/* --------------- header --------------- */
.header-cst .container-fluid {
  width: 100%;
  padding: 15px;
  margin: 0;
  position: relative;
}
.header-cst .container-fluid:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(50%, var(--theme-color)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    bottom,
    var(--theme-color) 50%,
    transparent
  );
  background-image: -o-linear-gradient(
    bottom,
    var(--theme-color) 50%,
    transparent
  );
  background-image: linear-gradient(
    to top,
    var(--theme-color) 50%,
    transparent
  );
  opacity: 0.98;
}

.header-cst .img {
  height: 500px;
  border-radius: 10px;
}

.header-cst .caption {
  position: relative;
  margin-top: -250px;
  z-index: 4;
}
.header-cst .caption h1 {
  font-size: 28vw;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transform: scaleX(1.5);
  -ms-transform: scaleX(1.5);
  transform: scaleX(1.5);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
}
.header-cst .caption h1.normal {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
/* Mobile Performance Optimizations */
* {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
  }
}

/* --------------- Intro --------------- */
.intro-cst {
  background-color: #fff;
  position: relative;
  margin-top: -200px;
  z-index: 1;
}
/* .related-articles {
  background-color: #fff;
  top: 40px;
  position: relative;

  padding-bottom: 100px;
} */
.related-articles .container {
  max-width: 1600px;
  margin: 0 auto;
}
.intro-crv {
  background-color: #fff;
  position: relative;
  z-index: 1;
  color: #000;
}
.intro-cst .states .item {
  position: relative;
  padding-left: 60px;
}
.intro-cst .states .item:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-cst .states .item:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-cst .states .item span {
  font-size: 16px;
  color: #aaa;
}
.intro-cst .states .item h2 {
  font-size: 140px;
  line-height: 1;
  margin-top: 40px;
}
.intro-cst .states .item .spn-botm {
  margin-left: 10px;
}

/* --------------- Works --------------- */
.work-card .card-item {
  margin-bottom: 30px;
}
.work-card .card-item .img {
  position: relative;
  height: 650px;
  border-radius: 15px;
  overflow: hidden;
}
.work-card .card-item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--theme-color)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    top,
    var(--theme-color),
    transparent
  );
  background-image: -o-linear-gradient(top, var(--theme-color), transparent);
  background-image: linear-gradient(to bottom, var(--theme-color), transparent);
  opacity: 0.6;
}
.work-card .card-item .img .tags {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
}
.work-card .card-item .img .tags a {
  font-size: 12px;
  line-height: 1;
  padding: 7px 12px;
  margin-right: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}
.work-card .card-item h5 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 140px;
  font-family: "Six Caps", sans-serif;
  line-height: 1;
  letter-spacing: normal;
  z-index: 3;
}
.work-card .card-item h5.bottom {
  top: auto;
  bottom: 30px;
}
.work-card .card-item h5.left {
  text-align: left;
  padding-left: 30px;
}
.work-card .card-item h5.right {
  text-align: right;
  padding-right: 30px;
}

/* --------------- Services --------------- */
.services-cst {
  position: relative;
  z-index: 3;
}
.services-cst .img-patern {
  position: absolute;
  bottom: 10%;
  left: -15%;
  width: 30%;
  -webkit-filter: invert(1);
  filter: invert(1);
  opacity: 0.07;
  z-index: -1;
}
.services-cst .item {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.services-cst .item > div {
  width: 100%;
}
.services-cst .item h6 {
  font-size: 18px;
}
.services-cst .item .title {
  text-align: center;
  position: relative;
}
.services-cst .item .title h2 {
  font-size: 90px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -4px;
}
.services-cst .item .title .list {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.services-cst .item .title .list span {
  padding: 7px 12px;
  background: var(--main-color);
  border-radius: 30px;
  position: absolute;
  font-size: 14px;
  color: var(--theme-color);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.services-cst .item .title .list span:nth-of-type(1) {
  top: 0;
  left: 15%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.services-cst .item .title .list span:nth-of-type(2) {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.services-cst .item .title .list span:nth-of-type(3) {
  bottom: 0;
  right: 15%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.services-cst .item .title .list span:nth-of-type(4) {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(50%);
  -ms-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.services-cst .item p {
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.services-cst .item .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: inline-block;
}
.services-cst .item .icon img {
  width: 30px;
}
.services-cst .item:hover .title .list {
  opacity: 1;
}
.services-cst .item:hover .title .list span {
  opacity: 1;
}

.numbers-dm .item h2 {
  font-size: 120px;
  font-weight: 200;
}
.numbers-dm .item h2 span {
  font-size: 50px;
}

.numbers-dm .item h6 {
  font-size: 18px;
}

/* --------------- Clients --------------- */
.brand-ds .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.brand-ds .item:after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.brand-ds .item .text-center {
  width: 100%;
}
.brand-ds .item .img {
  width: 50px;
  margin: auto;
  opacity: 0.25;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.brand-ds .item p {
  margin-top: 30px;
}
.brand-ds .item:nth-of-type(3) .img,
.brand-ds .item:nth-of-type(4) .img {
  width: 70px;
}
.brand-ds .item:hover {
  z-index: 4;
}
.brand-ds .item:hover:after {
  border-color: var(--main-color);
}
.brand-ds .item:hover .img {
  opacity: 1;
}

.clients-ds .item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 80px;
  height: 100%;
  padding: 50px 30px;
}
.clients-ds .item .text-center {
  width: 100%;
}
.clients-ds .item .img {
  max-width: 100px;
  margin: auto;
}
.clients-ds .item p {
  margin-top: 30px;
}

/* --------------- Testimonials --------------- */
.testimonials-ds .qoute-icon {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.testimonials-ds .qoute-icon .text {
  width: 240px;
}
.testimonials-ds .qoute-icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100px;
}

.testimonials-ds .item .info .img-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-ds .item .info .info-text {
  padding-left: 20px;
}
.testimonials-ds .item .info .info-text p {
  font-size: 14px;
  color: #bbbbbb;
  margin-top: 5px;
}

.testimonials-ds .swiper {
  position: relative;
}
.testimonials-ds .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto !important;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials-ds .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 7px;
  background: #bbbbbb;
}
.testimonials-ds
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
}

/* --------------- Awards --------------- */
.awards-sa .item-title {
  padding: 0 15px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.awards-sa .item-title > div {
  padding: 0;
}
.awards-sa .item-title h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.awards-sa .item-line {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 3;
}
.awards-sa .item-line > div {
  padding: 0;
}
.awards-sa .item-line > div:last-of-type {
  text-align: right;
}
.awards-sa .item-line:hover:after {
  height: 100%;
}
.awards-sa .item-line:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: -1;
}
.awards-sa .item-line .honors h6 {
  font-size: 14px;
}
.awards-sa .item-line .project-date span {
  font-size: 14px;
  opacity: 0.7;
}

/* --------------- Blogs --------------- */
.blog-sa .item .img {
  height: 470px;
  border-radius: 15px;
}

.blog-sa .item .cont .info a {
  font-size: 14px;
}

.blog-sa .item .cont .info .date {
  opacity: 0.5;
  margin-left: 5px;
}

/* --------------- Contact --------------- */
.team-cst .thecontainer {
  width: 200vw;
  padding-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.team-cst .panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.team-cst .panel:nth-of-type(even) .item {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
.team-cst .panel .item {
  width: 25vw;
  position: relative;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.team-cst .panel .item .img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-cst .panel .item .cont {
  margin-top: 30px;
}
.team-cst .panel .item .cont h5 {
  font-size: 24px;
  font-weight: 500;
}
.team-cst .panel .item .cont span {
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
}
.team-cst .panel .item:hover .img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/* --------------- footer --------------- */
.footer-sa .call-action h2 {
  font-size: 22vw;
  line-height: 1;
}

.footer-sa .logo {
  width: 160px;
}

.footer-sa .contact-info .item {
  margin-bottom: 50px;
}
.footer-sa .contact-info .item span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-sa .contact-info .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.footer-sa .contact-info .social-icon a:hover {
  border-color: #fff;
}

.footer-sa .sub-footer .copy p {
  font-size: 14px;
}
.footer-sa .sub-footer .copy p a {
  color: #fff;
}

.footer-sa .sub-footer .links {
  width: 100%;
}
.footer-sa .sub-footer .links a {
  font-size: 14px;
}
.footer-sa .sub-footer .links .active {
  color: #fff;
}

body {
  /* font-family: "Inter", sans-serif; */
  font-family: "Inter Display", "Inter Display Placeholder", sans-serif;

  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  background-color: #000;
     transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: 64px;
  letter-spacing: -0.01em;
  line-height: 0.91em;
}

h2 {
  font-size: 46px;
  line-height: 0.91em;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 40px;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 36px;
  /* letter-spacing: -2px; */
}

h5 {
  font-size: 28px;
  letter-spacing: -1px;
}

h6 {
  font-size: 22px;
}

.sub-bg {
  background: var(--bg-color);
}

.light-bg {
  background: #fff;
  color: #0e0f11;
}
.light-bg .butn.butn-bord {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.light-bg .butn.butn-bord img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.light-bg .butn.butn-bord:hover {
  background: var(--main-color);
  color: #212121;
}

.sub-color {
  color: #a4a4a4;
}

.sub-head {
  font-size: 20px;
}

.title-font {
  font-family: "Six Caps", sans-serif;
  letter-spacing: normal;
}

p {
  font-size: 16px;
  font-weight: 400;
  /* color: #a4a4a4; */
  color: #666;
  margin: 0;
}

.sec-head .sub-head {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  font-weight: 300;
}
.sec-head .sub-head:after {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

.text-indent {
  text-indent: 20%;
}

.loader-wrap svg {
  fill: #1d1d1d;
}

.crv-butn span {
  background: var(--main-color);
  color: #0e0f11;
}

.crv-butn .text {
  line-height: 40px;
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px;
  border-radius: 30px;
  position: relative;
}
.crv-butn .text:after {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--main-color);
  position: absolute;
  top: 5px;
  right: -15px;
  z-index: -1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.crv-butn .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-left: -10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.crv-butn .icon img {
  width: 15px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.crv-butn:hover .text:after {
  border-radius: 50%;
  top: calc(50% - 5px);
  right: 0;
  height: 10px;
}

.crv-butn:hover .icon {
  margin-left: 5px;
}
.crv-butn:hover .icon img {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.butn.butn-bord {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.butn.butn-bord:hover {
  background: #fff;
  color: #212121;
}

.icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.butn .icon {
  width: 18px;
}

.butn:hover .icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0);
}

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .team-cst .thecontainer {
    width: 100%;
    min-height: auto;
    display: block;
    padding-top: 80px;
  }
  .team-cst .panel {
    display: block;
    padding: 0 15px !important;
  }
  .team-cst .panel .item {
    width: 100%;
    margin-top: 50px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}

@media screen and (max-width: 768px) {
  .work-card .card-item .img {
    height: 500px;
  }
  .work-card .card-item h5 {
    font-size: 80px;
  }
  .services-cst .item .title h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .services-cst .item .title .list {
    display: none;
  }
  .services-cst .item .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .services-cst .item .icon img {
    width: 25px;
  }
  .testimonials-ds .qoute-icon .text {
    width: 180px;
  }
  .testimonials-ds .qoute-icon .icon {
    width: 80px;
  }
  .testimonials-ds .item h4 {
    font-size: 25px;
    letter-spacing: normal;
  }
}

/* Main navigation */
/* .top-nav {
      display: flex;
      justify-content: space-between;
      padding: 1rem 2rem;
      font-size: 0.85rem;
      position: fixed;
      width: 100%;
      z-index: 100;
      box-sizing: border-box;
    }

    .top-nav a {
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 500;
      font-size: 11.5px;
      letter-spacing: 0.5px;
    } */
/* Top Navigation */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  position: fixed;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.top-nav-scrolled {
  backdrop-filter: blur(10px);
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Optional: subtle background to support blur */
}

.top-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  position: relative;
}

.logo {
  font-size: 24px !important;
  font-weight: bold;
}

.desktop-only {
  position: relative;
}

/* Mobile toggler */
.mobile-toggler {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.toggler-icon {
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 2px 0;
}

/* Hover Menu Styles */
.menu {
  position: absolute;
  top: 100%;
  left: -100px;
  right: -100px;
  color: #fff;
  transition: opacity 0.4s ease 0s;
  opacity: 0;
  pointer-events: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 1.2);
  backdrop-filter: blur(6px);
  margin-top: 10px;
  min-width: 387px;
}

.desktop-only:hover .menu {
  opacity: 1;
  pointer-events: auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.g-col-2 {
  grid-column: span 1;
}

.menu-link a {
  font-size: 11px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
}

.menu-link a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-item {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Button Styles */
.btn {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  transform: translateZ(0);
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.21) inset;
  border-radius: 5px;
  backdrop-filter: blur(6px);
  transition: background-color 0.4s, transform 0.4s;
}

.btn.xsm {
  padding: 11px 16px;
  font-size: 14px;
  height: 38px;
}

.btn.ghost {
  background: rgba(17, 17, 17, 0.59);
}

.btn strong {
  overflow: hidden;
  display: block;
  line-height: 1;
  font-weight: 700;
}

.btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  top: 0;
  transition: transform 0.4s;
}

.btn span:after {
  color: #fff;
  transition: all 0.3s;
  position: absolute;
  mix-blend-mode: difference;
  top: 100%;
  left: 0;
  content: attr(data-hover);
  transform: translateY(0);
}

.btn:hover span {
  transform: translateY(-100%);
}

.btn:hover span:after {
  transform: translateY(-100%);
}

.button-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transform-origin: top;
  background: linear-gradient(135deg, #4772ff 0%, #003cff 100%);
  transition: transform 0.4s ease;
}

.btn:hover .button-fill {
  transform: translateY(0%);
}

/* Video Container */
.menu-item-last {
  padding: 10px 15px 15px 15px;
  border-bottom: none;
}

.project-image-container {
  position: relative;
  margin: auto 0;
  max-height: 100%;
  height: 100%;
  transform-origin: center;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  transition: transform 0.3s ease;
}

.menu-item-last:hover .showreel-video {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  z-index: 1;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  padding: 15px;
}

.play-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.play-icon {
  width: 16px;
  height: 18px;
  fill: white;
}

/* Clutch Logo */
.clutch-logo {
  width: 156px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-toggler {
    display: flex;
  }
}

/* Main content container */
.container-design {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main name display */
.name-container {
  padding-top: 6vh;
  padding-left: 1rem;
  text-align: center;
  padding-right: 1rem;
  width: 100%;
}

.name {
  font-size: clamp(3rem, 10.2vw, 12.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.85;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Tagline section */
.tagline-container {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 30vh;
  position: relative;
  z-index: 10;
}

.tagline-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.tagline {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tagline-italic {
  font-style: italic;
  font-weight: 400 !important;
  letter-spacing: -0.01em;
  font-family: "Instrument Serif", serif;
}

/* Footer information */
.footer-info {
  display: flex;
  margin-top: 1.5rem;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Wave animation container */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

/* Base wave image */
.wave-base {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  object-position: bottom center;


  z-index: 1;
  display: block;
}

/* Ensure wave stretches across full width on all devices */
@media (max-width: 1023px) {
  .wave-base {
 
    min-width: 100%;
    width: 100vw;
    left: 0;
    right: 0;
  }
}

/* For very small screens, ensure no gaps */
@media (max-width: 767px) {
  .wave-base {

    width: 100vw;
    min-width: 100vw;
    transform: translateX(0);
    margin: 0;
    padding: 0;
  }
}

/* Extra small screens */
/* @media (max-width: 480px) {
  .wave-base {
    height: 100%;
    width: 100vw;
    object-fit: fill;
    object-position: bottom;
        position: absolute;
    bottom: 0px;
    left: 0;
    z-index: -1;
    top: 20px !important;
  }
} */

/* Ensure no overflow issues */
/* @media (max-width: 320px) {
  .wave-base {
    min-width: 100vw;
    width: 100vw;
    object-fit: fill;
  }
} */

#canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (min-width: 1600px) {
  .tagline-container {
    padding-left: 15rem;
    margin-top: 25vh;
    top: 250px;
  }
}
/* Desktop styles */
@media (min-width: 1024px) {
  .footer-info {
    width: 450px;
    justify-content: space-between;
  }

  .wave-container {
    height: 100vh;
    margin-top: -100px;
    position: relative;
  }
}

/* Tablet styles */
@media (max-width: 1023px) and (min-width: 768px) {
  .name-container {
    padding-top: 8vh;
  }

  .tagline-container {
    padding-left: 4rem;
    margin-top: 20vh;
  }

  .wave-container {
    height: 75vh;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .name-container {
    padding-top: 7vh;
    /* padding-left: 1rem;
    padding-right: 1rem; */
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .name {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.9;
  }

  .tagline-container {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 15vh;
  }

  .tagline {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    line-height: 1.3;
  }

  .footer-info {
    gap: 1rem;
    /* font-size: 0.8rem; */
    font-size: 14px;
  }
  /* 
  .wave-container {
    height: 40vh;
  } */
}

/* Small mobile styles */
@media (max-width: 480px) {
  .name-container {
    padding-top: 11vh;
  }

  .tagline-container {
    margin-top: 10vh;
  }

  .tagline br {
    display: none;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .name {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  /* .wave-container {
    height: 30vh;
  } */
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .name-container {
    padding-top: 17vh;
  }

  .tagline-container {
    margin-top: 5vh;
  }

  /* .wave-container {
    height: 150vh;
  } */
}
/* .accordian-con{
  position: relative;
  z-index: -1;
} */
.wave-transition {
  position: relative;
}
/* FIXED Wave animation container */
.wave-container-1 {
  position: absolute;
  transform: rotate(180deg);
  left: 0;
  width: 100vw; /* Use viewport width instead of 100% */
  height: 70vh;
}

/* FIXED Base wave image */
.wave-base1 {
  position: absolute;
  top: 150px;
  left: 50%; /* Center horizontally */

  width: 100vw; /* Use viewport width */
  min-width: 100vw; /* Ensure minimum width */
  height: 100%;

  object-position: center bottom;
  z-index: 1;
  display: block;
}

/* Alternative approach using viewBox manipulation */
.wave-base1-alt {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  display: block;
}

/* Container for demonstration */
.demo-container {
  position: relative;
  height: 100vh;
  width: 100%;
}

.content {
  position: relative;
  z-index: 10;
  padding: 20px;
  color: white;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .wave-base1 {
    width: 100vw;
    min-width: 100vw;
  }
}

@media (max-width: 767px) {
  .wave-base1 {
    width: 100vw;
    min-width: 100vw;
    left: 50%;
    /* transform: translateX(-50%); */
  }

  .wave-container-1 {
    width: 100vw;
    left: 0;
  }
}

@media (max-width: 480px) {
  .wave-base1 {
    height: 100%;
    width: 100vw;
    min-width: 100vw;
  
    object-position: center bottom;
  }
}

@media (max-width: 320px) {
  .wave-base1 {
    width: 100vw;
    min-width: 100vw;
  }
}

/* Alternative solution using inline SVG */
.wave-svg-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  transform: rotate(180deg);
  overflow: hidden;
}

.wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Canvas for Paper.js wave */
canvas[resize] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen; /* Blending mode for canvas with base image */
  filter: blur(30px); /* Add blur effect - adjust pixel value as needed */
  /* z-index: 2; */
}
#waveCanvas {
  position: absolute;
  bottom: 200px;
  left: 0;
  width: 100% !important;
  height: 100%;
  mix-blend-mode: screen; /* Blending mode for canvas with base image */
  filter: blur(10px); /* Add blur effect - adjust pixel value as needed */
}
#waveCanvas1 {
  position: absolute;
  bottom: 200px;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen; /* Blending mode for canvas with base image */
  filter: blur(10px); /* Add blur effect - adjust pixel value as needed */
}
#waveCanvas2 {
  position: absolute;
  bottom: 200px;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen; /* Blending mode for canvas with base image */
  filter: blur(10px); /* Add blur effect - adjust pixel value as needed */
}
/* Controls container */
#gui_container {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  opacity: 0.8;
  transform: scale(0.8);
  display: none;
  transform-origin: top right;
}

/* GUI styling */
.dg .slider-fg {
  background: #fd0000 !important;
}

.dg .c input[type="text"] {
  background: #303030;
  color: #fff;
}

.dg .c select {
  background: #303030;
  color: #fff;
}

.dg .cr.function:hover,
.dg .cr.boolean:hover {
  background: #111;
}

/* Mobile specific styles */
.logo {
  font-weight: 700;
}

.mobile-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.toggler-icon {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Mobile sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #121212;
  z-index: 200;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
}

.sidebar.active {
  left: 0;
}

.sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2rem;
}

.sidebar-links a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Desktop nav items to be hidden on mobile */
.desktop-only {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-toggler {
    display: block;
  }

  .top-nav {
    justify-content: space-between;
  }

  .name {
    font-size: 9.5vw;
  }

  .tagline-container {
    /* padding-left: 2rem; */
    padding-left: 1rem;
    margin-top: 35vh;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .footer-info div {
    margin-bottom: 0.5rem;
  }
}
/* Responsive adjustments */
/* @media (max-width: 768px) {
  .name {
    font-size: 10vw;
    padding: 10px;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .footer-info {
    flex-direction: row;
  }

  .footer-info div {
    margin-bottom: 0.5rem;
  }
} */
/* Main content */
.main-content {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  position: relative;
}

.about-section {
  margin-bottom: 4rem;
  display: flex;
  padding: 0 2rem;
  justify-content: space-between;
  max-width: 800px;
}
.about-right-inner {
  display: flex;
  flex-direction: column;
}
.about-section h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-section p {
  max-width: 300px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.learn-more-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid #ff5500;
  border-radius: 50px;
  color: #ff5500;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #ff5500;
  color: #131313;
}

/* Orange blur effect */
.orange-blur {
  position: absolute;
  width: 600px;
  height: 200px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 85, 0, 0.6) 0%,
    rgba(255, 85, 0, 0) 70%
  );
  top: 20%;
  right: 0;
  transform: rotate(-15deg);
  filter: blur(80px);
  z-index: 1;
  opacity: 0.7;
}

/* Big title */
.big-title {
  position: relative;
  z-index: 2;
  padding-left: 2rem;
  margin-top: 2rem;
}

.title-top {
  font-size: 6rem;
  font-weight: 600;
  color: #f5f5f5;
  line-height: 1;
  /* letter-spacing: -2px; */
  font-family: "Six Caps", sans-serif;
}

.title-bottom {
  font-size: 14rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -5px;
  position: relative;
  display: flex;
  align-items: center;
}

.museum-text {
  position: relative;
  color: white;
}

.museum-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/800/300");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.2;
}

.museum-letter {
  color: #ff5500;
  position: relative;
  display: inline-block;
}

.mu-images {
  position: relative;
  height: 100%;
  display: inline-flex;
  overflow: hidden;
}

/* Footer */
.footer-banner {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}

.contact-info,
.location-info {
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info p,
.location-info p {
  color: #999;
}

.language-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-controls span {
  font-size: 0.8rem;
  color: #999;
  cursor: pointer;
}

.language-controls span.active {
  color: white;
}

/* Vertical line on left */
.vertical-line {
  display: none;
}

/* Vertical scrollbar on right */
.scrollbar {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  width: 1px;
  background-color: #2a2a2a;
  z-index: 10;
}

.scrollbar::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 50px;
  background-color: white;
  left: -1px;
  top: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
  .title-top {
    font-size: 4rem;
  }

  .title-bottom {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }

  .title-top {
    font-size: 3rem;
  }

  .title-bottom {
    font-size: 6rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
  }

  .vertical-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .title-top {
    font-size: 2rem;
  }

  .title-bottom {
    font-size: 4rem;
  }
}
/* .intro-cst .text-u{
          width: 100%;
          font-size: 160px !important;
          color: #000;
         } */

.main-title {
  /* font-size: 12.8vw; */
  font-size: 340px;
  font-weight: 700;
  line-height: 0.8em;
  /* margin-top: -280px; */
  margin-top: 280px;
  margin-bottom: auto;
  /* color: #000; */
  color: #fff;
  position: relative;
  z-index: 1;
  transition: color 2s ease;
}

.footer-four {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2em;
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-four .footer-light-title {
  color: #fff;
  transition: color 2s ease;
}
.footer-four div {
  flex: 1;
  text-align: center;
  color: #fff;
}

.footer-four div:first-child {
  text-align: left;
}

.footer-four div:last-child {
  text-align: right;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 17.5vw;
    margin-bottom: 30px;
    margin-top: 310px;
    position: relative;
    z-index: 1000;
    text-align: center;
  }

  .footer-four {
    /* font-size: 0.7rem; */
    font-size: 9px;
  }
}
.sec-head {
  color: #fff;
  position: relative;
  z-index: 1;
}
.sec-head span {
  color: #fff;
}
@media (min-width: 992px) {
  .min-vh-lg-400 {
    min-height: 400vh;
  }
}
@media (min-width: 992px) {
  .position-lg-sticky {
    position: sticky;
  }
}

@media (min-width: 992px) {
  .min-vh-lg-100 {
    min-height: 100vh;
  }
}
.z-2 {
  z-index: 2;
}

.inset-0 {
  inset: 0;
}
.pe-none {
  pointer-events: none !important;
}
.lead {
  line-height: 1.35;
  margin-bottom: calc(1.2875rem + 0.475vw);
}

@media (min-width: 1200px) {
  .pb-xl-5 {
    padding-bottom: 2rem !important;
  }
}
.text-uppercase {
  text-transform: uppercase !important;
}
.mb-5 {
  margin-bottom: 2rem !important;
}
.lead {
  font-size: calc(1.26875rem + 0.2375vw);
  font-weight: 300;
}
@media (min-width: 992px) {
  .mouse-pos-list-image {
    width: calc(100px + 10vw);
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -52%);
    display: block;
    left: 55%;
    overflow: hidden;
    left: 0%;
    will-change: opacity;
    pointer-events: none;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s, filter 0.4s;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .mouse-pos-list-image::before {
    display: block;
    content: "";
    padding-top: 160%;
  }
}
@media (min-width: 992px) {
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .mouse-pos-list-image .float-image-wrap {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
    display: block;
    will-change: transform;
    padding-bottom: 160%;
    overflow: hidden;
    background-color: #000;
  }
}
@media (min-width: 992px) {
  .mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner.visible {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner {
    width: 0;
  }
}
@media (min-width: 992px) {
  .mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner {
    position: absolute;
    top: 0;
    width: 100%;
    display: block;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .mouse-pos-list-image .mouse-pos-list-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner:before {
    display: block;
    content: "";
    padding-top: 160%;
  }
}
.ratio::before {
  display: block;
  padding-top: 144%;
  content: "";
}
@media (min-width: 992px) {
  .mouse-pos-list-image-inner img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.the-num {
  min-width: calc(20px + 7vw);
  flex-shrink: 0;
}

.lead {
  line-height: 1.35;
  margin-bottom: calc(1.2875rem + 0.475vw);
}
@media (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .align-self-md-end {
    align-self: flex-end !important;
  }
}
.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.position-relative {
  position: relative !important;
}
@media (min-width: 768px) {
  .list-pills-hover > li .head span {
    display: inline-block;
    position: relative;
    padding: 0px 0;
    transform-origin: left bottom;
    transition: opacity 0.4s ease, scale 0.4s;
  }
}
@media (min-width: 768px) {
  .pills {
    pointer-events: none;
    position: absolute;
    inset: -100px -80px;
    display: grid;
    grid-template-columns: repeat(40, 1fr);
    grid-template-rows: repeat(40, 1fr);
    gap: 5px;
  }
}

@media (min-width: 768px) {
  .pills li:nth-child(1) {
    background-color: #ebacac;
  }
}

@media (min-width: 768px) {
  .pills > li {
    font-size: 15px;
    padding: 10px 30px;
    color: #09060d;
    position: absolute;
    transform: scale(0.7);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition-delay: 0s;
  }
}
.pills > li {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 99px;
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  background-size: 100%;
  display: inline-block;
}
@media (min-width: 768px) {
  .list-pills-hover > li:hover {
    z-index: 1;
  }
}

@media (min-width: 768px) {
  .list-pills-hover > li {
    margin-bottom: 0;
  }
}
.list-pills-hover > li {
  position: relative;
  margin-bottom: 60px;
}
.visible {
  visibility: visible !important;
}
.portfolio-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
  margin-bottom: 60px;
}

.portfolio-header h3 {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
}

.works-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.works-title {
  font-size: 80px;
  font-weight: 500;
  color: #000;
}

.project-section {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.project-info {
  width: 50%;
  padding-right: 30px;
}

.project-meta {
  margin-bottom: 20px;
}

.project-meta p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 5px;
}

.project-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.1;
  color: #000;
}

.project-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: all 0.3s ease;
}

.project-link svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.project-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.project-link:hover svg {
  transform: translateX(3px);
}

.project-image {
  width: 50%;
  height: 450px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 5px;
  position: relative;
}
.slider-navigation span {
  color: #000;
}
.slider-progress {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  margin: 0 20px;
  align-self: center;
}

.slider-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33.33%;
  background: #000;
  transition: width 0.5s ease;
}

.slider-btn {
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.slider-btn svg {
  fill: #000;
}
.slider-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stroke-text-container {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.stroke-text {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 90px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  line-height: 1;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: flex;
}

.counter {
  font-size: 14px;
  margin-right: 20px;
  align-self: center;
}

@media (max-width: 768px) {
  .works-title {
    font-size: 50px;
  }

  .project-section {
    flex-direction: column;
  }

  .project-info,
  .project-image {
    width: 100%;
  }

  .project-info {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .stroke-text {
    font-size: 60px;
  }
}
/* elementor css */

.widget-heading[data-style*="borderedHeading"].borderedHeading
  .subtitle:before {
  width: 100%;
}

.widget-heading[data-style*="borderedHeading"] .subtitle:before {
  width: 0;
  transition: width 1.25s ease-out;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.subtitle:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1px solid;
  bottom: 0;
  right: 0;
}

.editor-active p,
.sidebar p,
.content-wrapper p,
.header p,
.footer p,
.top-bar p {
  line-height: 1.875em;
  margin: 1.875em 0;
}

.subtitle:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 20px;
  border-right: 1px solid;
  right: 0;
  bottom: 0;
}

.widget-heading[data-style*="borderedHeading"].borderedHeading .subtitle-text {
  opacity: 1;
  transform: translateY(0);
}

.widget-heading[data-style*="borderedHeading"] .subtitle-text {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s 1.25s linear, transform 0.3s 1.25s linear;
}

.subtitle {
  text-align: left;
  color: #968e8b;
  border-color: #b9a39c;
}

.widget:not(:last-child) {
  margin-bottom: 20px;
}

.column-gap-default > .row > .column > .widget-wrap {
  padding: 10px;
}

.widget-wrap {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
}

.Timeline_timeline {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;
}

.container-timeline {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: calc(1800px + 15%);
  overflow: hidden;
}
.Timeline_headings {
  position: relative;
  display: flex;
  flex-direction: column;
  /* padding: 2rem; */
  text-align: center;
  width: 100%;
  z-index: 2;
}
.Timeline_headings h2 {
  margin-bottom: 15px;
}
.Timeline_heading {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.Timeline_subheading {
  font-size: 1.2rem;
  font-weight: 400;
  /* margin-bottom: 2rem; */
  margin-bottom: 4rem;
  opacity: 0.8;
}

.Timeline_scroller {
  position: relative;
  width: 100%;
  height: 100vh; /* ensures the pinned section has a clear viewport height */
  overflow: hidden;
}

.StaggeredItems_grid {
  width: 100%;
}

.Timeline_inner {
  position: relative;
  display: flex;
  flex-direction: row;
  padding-left: 2rem;
  padding-bottom: 2rem;
  width: max-content;
  will-change: transform;
  /* Remove transition as GSAP will handle it */
}

.Timeline_block {
  width: 60vw;
  transform: translateY(1.5rem);
  gap: 4%;
  /* padding: 2vw 3vw 2vw 2vw; */
  margin-right: 3.125rem;
  display: flex;
  flex-direction: row;
  /* background-color: #efefef; */
  align-items: flex-start;
  border-top-right-radius: 7.5rem;
  flex-shrink: 0; /* Prevent shrinking */
}

.Timeline_image {
  width: 26%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
}

.Timeline_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.Timeline_blockContent {
  flex-grow: 1;
}

.Timeline_blockHeading {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #000;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.Timeline_duration {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  border-radius: 7px;
  border: 1px solid #000;
  padding: 0.4em 0.7em;
  transform: translateY(0.3em);
}

.Timeline_blockText {
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 1.5rem;
}

.Timeline_workInvolved {
  margin-top: 1.5rem;
}

.Timeline_workInvolved p {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.Timeline_workInvolvedList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.Timeline_workInvolvedList span {
  font-size: 1rem;
  line-height: 1;
  border-radius: 7px;
  background-color: #000;
  color: #fff;
  padding: 0.5em 0.6em 0.6em;
  display: inline-block;
}

.Timeline_bottomTimeline {
  display: flex;
  margin-left: 2rem;
  position: relative;
  width: max-content;
}

.Timeline_blockTime {
  width: calc(55vw + 3.125rem);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.Timeline_weekNumber {
  font-size: 0.9rem;
  color: #000;
  background-color: #efefef;
  padding: 0.3em 0.5em;
  line-height: 1;
  border-radius: 7px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.Timeline_bottomTimeline:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #e0e0e0;
  z-index: -1;
}

/* Add some content before and after for scrolling demo */
.content-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-color: #f0f0f0;
}
/* Mobile Responsive Fixes */
@media (min-width: 300px) and (max-width: 399px) {
  /*html, body {*/
  /*  overflow-x: hidden;*/
  /*  position: relative;*/
  /*}*/
  .Timeline_timeline {
    overflow-x: hidden;
    position: relative;
  }
  .Timeline_timeline {
    padding-top: 100px !important;
    padding-bottom: 0px !important;
    overflow: hidden;
    width: 100vw;
  }

  .container-timeline {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100vw; /* Change from calc() to 100vw */
    overflow: hidden;
  }

  .Timeline_scroller {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .Timeline_headings {
    position: relative;
    display: flex;
    margin-top: 0px !important;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem; /* Add padding instead of extending width */
    z-index: 2;
  }

  .Timeline_inner {
    padding-left: 1rem; /* Reduce padding */
    padding-right: 1rem;
  }

  .Timeline_block {
    width: 85vw;
    margin-right: 2rem; /* Reduce margin */
    flex-direction: column;
    padding: 10px !important;
    gap: 0rem !important;
    border-top-right-radius: 3.125rem;
  }

  .Timeline_image img {
    width: 70px !important;
    height: 70px !important;
  }

  .Timeline_heading {
    font-size: 28px !important;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .Timeline_blockHeading {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    font-size: 24px !important;
  }

  .Timeline_blockTime {
    width: calc(85vw + 2rem) !important; /* Match block width */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .Timeline_workInvolvedList span {
    font-size: 14px !important;
    line-height: 1;
    border-radius: 7px;
    background-color: #000;
    color: #fff;
    padding: 0.5em 0.6em 0.6em;
    display: inline-block;
  }

  .Timeline_blockText {
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #000;
    margin-bottom: 0rem !important;
  }
}

@media (min-width: 400px) and (max-width: 850px) {
  /*html, body {*/
  /*  overflow-x: hidden;*/
  /*}*/

  .Timeline_timeline {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .container-timeline {
    max-width: 100vw;
    overflow: hidden;
  }

  .Timeline_scroller {
    overflow: hidden;
  }

  .Timeline_inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .Timeline_block {
    width: 90vw; /* Adjust from 100vw to prevent overflow */
    margin-right: 2rem;
    flex-direction: column;
    padding: 10px !important;
    gap: 1rem;
    border-top-right-radius: 3.125rem;
  }

  .Timeline_blockHeading {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    font-size: 30px !important;
  }

  .Timeline_blockText {
    font-size: 16px;
    line-height: 1.4 !important;
    color: #000;
    margin-bottom: 1.5rem;
  }

  .Timeline_image {
    width: 100%;
    max-width: fit-content;
  }

  .Timeline_workInvolvedList {
    gap: 0.4rem;
  }

  .Timeline_workInvolvedList span {
    font-size: 0.875rem;
  }

  .Timeline_blockTime {
    width: calc(90vw + 2rem); /* Match block width */
  }
}
/* Smooth rendering optimizations */
.Timeline_inner {
  backface-visibility: hidden;
  perspective: 1000px;
}

.Timeline_block {
  transform: translateZ(0);
}

/* Mobile adjustments */
/* @media (max-width: 850px) {
  .Timeline_inner {
    gap: 2rem; 
  }
} */

/* releted articles */
/* .related-articles{
  background-color: #000;
} */
/* Header section */
.related-articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.related-articles-title {
  font-size: 61px;
  font-weight: 600;
  color: #fff;
}

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #fff;
  color: #000 !important;
  border: 1px solid #fff !important;
}

/* Articles grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Article card */
.article-card {
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-image {
  width: 100%;
  border-radius: 1rem;
  height: 330px;
  object-fit: cover;
  display: block;
}

.article-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #fff;
  color: #000;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

.article-title {
  padding: 1.25rem;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-articles-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .related-articles-title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .pt-50px {
    padding-top: 50px !important;
  }
  .pb-50px {
    padding-bottom: 50px !important;
  }
  .pt-100px {
    padding-top: 100px !important;
  }
  .pb-100px {
    padding-bottom: 100px !important;
  }
  .pt-150px {
    padding-top: 150px !important;
  }
  .pb-150px {
    padding-bottom: 150px !important;
  }
}

/* footer css */

.footer {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 326px;
  height: min-content;
  justify-content: center;
  overflow: hidden;
  padding: 0px;
  position: relative;
  width: 100%;
  /* background-color: rgba(0, 0, 0, 0.41); */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.top-section {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: min-content;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 10;
  width: 100%;
}

.logo1 {
  flex: 2 0 0px;
  height: auto;
  position: relative;
  /* white-space: pre-wrap; */
  padding: 15px;
  width: 1px;
  word-break: break-word;
  word-wrap: break-word;
}

.logo1 a {
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.8em;
  text-decoration: none;
  color: #fff;
}

.nav-section {
  flex: 1 0 0px;
  height: auto;
  position: relative;
  padding: 15px;
  /* white-space: pre-wrap; */
  width: 1px;
  word-break: break-word;
  word-wrap: break-word;
}

.nav-section a,
.email-section a,
.bottom-section a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.5;
}

.nav-section a:hover,
.email-section a:hover,
.bottom-section a:hover {
  text-decoration: underline;
}

.email-section {
  flex: 1 0 0px;
  height: auto;
  position: relative;
  /* white-space: pre-wrap; */
  padding: 30px;
  width: 1px;
  word-break: break-word;
  word-wrap: break-word;
}

.bottom-section {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 32px;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 20px;
}

.copyright {
  flex: 2 0 0px;
  height: auto;
  position: relative;
  white-space: pre-wrap;
  width: 1px;
  word-break: break-word;
  word-wrap: break-word;
}

.social {
  flex: 1 0 0px;
  height: auto;
  position: relative;
  /* white-space: pre-wrap; */
  width: 1px;
  word-break: break-word;
  word-wrap: break-word;
}

.empty {
  flex: 1 0 0px;
  height: auto;
  position: relative;
  white-space: pre-wrap;
  width: 1px;
  word-break: break-word;
  word-wrap: break-word;
}
.bottom-section {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 32px;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
  position: relative;
  /* top: -100px; */
  width: 100%;
  /* margin-top: 20px;
  margin-bottom: 60px;  */
  z-index: 5;
}
@media screen and (min-width: 400px) {
  /* Wave Animation Container */
  .wave-container11 {
    display: none;
  }

  /* Base wave image */
  .wave-base11 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
  }
}
/* Wave Animation Container */
.wave-container1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 300px;
  left: 0;
  pointer-events: none;
}

/* Base wave image */
.wave-base1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 1;
}

/* Canvas for Paper.js wave */
#canvas1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  filter: blur(30px);
  /* z-index: 3; */
}

/* Controls container */
#gui_container1 {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  opacity: 0.8;
  transform: scale(0.8);
  display: none !important;
  transform-origin: top right;
}
/* @media (min-width: 768px) {
            .footer {
                padding: 23px 50px 20px;
            }
        }

        @media (min-width: 1200px) {
            .footer {
                padding: 23px 100px 20px;
            }
        } */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #8b0000 0%, #b22222 50%, #dc143c 100%);
  color: white;
  min-height: 100vh;
  position: relative;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="600" cy="400" r="300" fill="url(%23grad1)"/></svg>');
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
  min-height: 80vh;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #000;
}

.content-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
}

.content-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.feature-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.icon-container {
  min-width: 50px;
  flex-shrink: 0;
}

.rotating-icon {
  width: 38px;
  height: 38px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Video Section */
.video-section {
  position: relative;
  z-index: 4;
  margin-top: -100vh;
  min-height: 300vh;
  pointer-events: none;
}

.video-sticky-container {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 0 70px 100px;
}

.video-container {
  position: relative;
  width: 22.2106%;
  aspect-ratio: 16/9;
  max-height: calc(100vh - 80px);
  border-radius: 6px;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  transform-origin: 159.25px 189.578px;
  /* margin-left: calc((100vw - 1200px) / 2); */
}

.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.64) 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.play-button {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.play-icon {
  width: 16px;
  height: 18px;
}

/* Left sidebar */
.showreel-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 10;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform-origin: center;
  pointer-events: none;
}

.year-text {
  position: fixed;
  left: 20px;
  bottom: 60px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  z-index: 5;
  pointer-events: none;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .video-container {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .content-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-section {
    padding: 60px 0 30px;
  }

  .video-container {
    width: 90%;
    max-width: 400px;
    margin-left: 0;
  }

  .video-sticky-container {
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .video-section {
    margin-top: -50vh;
    min-height: 200vh;
  }

  .year-text {
    font-size: 4rem;
  }

  .showreel-sidebar {
    display: none;
  }
}

@media (max-width: 480px) {
  .feature-section {
    flex-direction: column;
    gap: 15px;
  }

  .icon-container {
    align-self: flex-start;
  }
}
.stack-div {
  display: flex;
  flex-direction: column;
}
.stack-div .stack-bg-container .bg1 {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 40%;
  height: 100%;
  aspect-ratio: 1 / 1;
}
.stack-div .stack-bg-container .bg video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  outline: none;
  border: 0;
}

.swiper {
  width: 100%;
  /* height: 100vh; */
  position: relative;
  /* overflow: visible; */
}
.container-carousel {
  max-width: 1600px !important;
  margin: 0 auto;
}
.container-carousel-header {
  max-width: 1800px !important;
  margin: 0 auto;
  padding: 0px 70px 0px 70px;
}
.swiper-slide {
  width: 80vw;
  /* height: 90vh;  */
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: grab;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1 !important;
}
.section-header {
  text-align: left;
  margin-bottom: 80px;
  padding: 0px 70px 0px 70px;
}

.section-title {
  font-size: 61px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #888;
  font-weight: 300;
}

.swiper-slide:active {
  cursor: grabbing;
}

.StatisticsCarousel_swiperSlide__4gGXN {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.StatisticsPanel_panel__C_sZ2 {
  border: 2px solid rgba(0, 0, 0, 0.4);
  width: 100%;
  background: #fff;
  padding: 2rem;
  min-height: 60vh;
  border-radius: 20px 200px 20px 20px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .StatisticsPanel_panel__C_sZ2 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    border-radius: 10px 80px 10px 10px;
    min-height: 400px;
  }
}

.StatisticsPanel_backgroundImage__o9T5M {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.StatisticsPanel_backgroundImage__o9T5M img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.StatisticsPanel_panelWrap__iNrBj {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
  position: relative;
}

.StatisticsPanel_logo__pnjFD img {
  height: 80px;
  width: auto;
  max-width: 200px;
  margin-bottom: 2rem;
  filter: brightness(0);
}

.StatisticsPanel_heading__Xqlyh {
  font-size: 143px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 1rem 0;
  background: linear-gradient(90deg, #633cc9, #3b8392, #cb24cc);
  background-size: 200% 200%;
  animation: rainbow 3s ease-in-out infinite;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

@keyframes rainbow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.StatisticsPanel_description__NM4c_ {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: #333;
}

.Button_button__JJiqJ {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
  border: none;
  text-decoration: none;
}

.Button_inner__fnyH6 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  padding: 14px 24px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid #000;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.Button_inner__fnyH6:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

.Button_buttonArrow__0W9XI {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.Button_inner__fnyH6:hover .Button_buttonArrow__0W9XI {
  transform: translateX(4px);
}

.StatisticsPanel_visual__crBRi {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.StatisticsPanel_visual__crBRi img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .StatisticsPanel_visual__crBRi {
    order: -1;
    height: 200px;
  }
}

/* Navigation */
.navigation {
  position: absolute;
  bottom: -20px;
  right: 80px;
  z-index: 20;
}

.nav-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: auto;
}

.nav-next:hover {
  background: #000;
  border-color: #000;
  transform: translateX(4px);
}
.nav-next:hover svg {
  color: #fff !important;
  transform: translateX(4px);
}

.nav-next.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.nav-next svg {
  width: 24px;
  height: 24px;
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .swiper-slide {
    width: 90vw;
    height: 400px;
  }

  .navigation {
    bottom: 20px;
    right: 20px;
  }
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* home p2 css */

.v-flex-small {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  /* top: -130px; */
  top: -20px;
  padding: 2rem 0;
}

.h-flex-xxsmall {
  display: flex;
  flex-flow: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
}

.about-header_logo {
  object-fit: contain;
  width: auto;
  height: 2rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 62rem;
}
.max-width-xlarge h1 {
  color: #000;
}
/* h1 {
            font-size: 4rem;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 2rem;
        } */

.w-layout-hflex.split-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.max-width-large {
  width: 100%;
  max-width: 40rem;
  margin-bottom: 25px;
}

.text-size-medium {
  /* font-size: 1.25rem; */
  font-size: 16px;
  line-height: 1.5;
}

.split-button-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 100%;
}

.button-text_wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.line-divider {
  background-color: #e5e5e5;
  height: 0.0625rem;
  width: 100%;
  transform-origin: 0%;
}

.line-divider.is-button-text {
  margin-top: 0.75rem;
}

.dont-shrink-grow {
  flex: none;
}

.button-text {
  display: flex;
  /* align-items: center; */
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.button-text:hover {
  transform: translateX(5px);
}

.button-text_icon-wrapper {
  display: flex;
  position: relative;
  width: 20px;
  height: 19px;
}

.button-text_icon,
.button-text_icon.is-second {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.button-text_icon.is-second {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.button-text:hover .button-text_icon {
  opacity: 0;
}

.button-text:hover .button-text_icon.is-second {
  opacity: 1;
  transform: translateX(0);
}

.client-logos {
  display: flex;
  overflow: hidden;
  position: relative;
  margin-top: 4rem;
}

.client-logos:before,
.client-logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* .client-logos:before {
            left: 0;
            background-image: linear-gradient(90deg, #fff, transparent);
        }
        
        .client-logos:after {
            right: 0;
            background-image: linear-gradient(90deg, transparent, #fff);
        }
         */
.client-logo_item {
  flex: 0 0 auto;
  margin-right: 8rem;
}

.client-logo_logo {
  height: 34px;
  width: auto;
  /* opacity: 0.5; */
  transition: opacity 0.3s ease;
}

.client-logo_logo:hover {
  opacity: 0.8;
}

.scrolling-logos {
  display: flex;
  animation: scrollLogos 30s linear infinite;
}

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

/* services css */

.services-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  color: #1b1d1f;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.services-title .line {
  display: block;
  position: relative;
}

.services-title .line:nth-child(2) {
  margin-left: 2em;
}

.services-title .line:nth-child(3) {
  margin-left: 1em;
}

.services-title .line:nth-child(4) {
  margin-left: 3em;
}

.arrow-icon {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.services-title:hover .arrow-icon {
  opacity: 1;
}

.accordian-container {
  padding-top: 150px;
  padding-bottom: 150px;
  transition: background-color 2s ease, color 2s ease;
}

.accordian-container {
  /* background-color: #000; */
  color: #fff;
}

.accordian-container.inverted .main-title {
  color: #fff;
}

.accordian-container.inverted .footer-light-title {
  color: #fff;
}

.e-n-accordion {
  --n-accordion-padding: 24px 0px 0px 0px;
  --n-accordion-item-title-space-between: 16px;
  --n-accordion-title-font-size: 2.5rem;
  padding: var(--n-accordion-padding);
}

.e-n-accordion-item {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: var(--n-accordion-item-title-space-between);
  transition: border-color 2s ease;
}

.accordian-container.inverted .e-n-accordion-item {
  border-bottom-color: #fff;
}

.e-n-accordion-item:not(:last-child) {
  margin-block-end: var(--n-accordion-item-title-space-between);
}

.e-n-accordion-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  border: none;
  margin-top: 50px;
  background: none;
  height: 80px;
  font-weight: 400;
  transition: all 0.3s ease, color 2s ease;
  font-size: 140px;
  line-height: 1.1em;
  color: #fff;
  letter-spacing: -0.02em;
}

.accordian-container.inverted .e-n-accordion-item-title {
  color: #fff;
}

.e-n-accordion-item-title:hover {
  color: inherit;
}

.e-n-accordion-item-title-icon {
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  transition: transform 0.3s ease;
}

.e-n-accordion-item[open] .e-n-accordion-item-title-icon {
  transform: rotate(0deg);
}

.e-n-accordion-item-title-icon svg {
  width: 40px;
  height: 40px;
  transition: fill 0.3s ease;
}

.e-n-accordion-item-title-icon svg path {
  stroke: #fff;
  stroke-width: 1;
  transition: stroke 2s ease;
}

.accordian-container.inverted .e-n-accordion-item-title-icon svg path {
  stroke: #fff;
}

.e-n-accordion-item[open] .e-n-accordion-item-title-icon svg path {
  stroke: #d0d0d0;
}

.e-opened {
  display: none;
}

.e-closed {
  display: flex;
}

.e-n-accordion-item[open] .e-opened {
  display: flex;
}

.e-n-accordion-item[open] .e-closed {
  display: none;
}

.accordion-content {
  padding: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.e-n-accordion-item[open] .accordion-content {
  opacity: 1;
  max-height: 700px;
  padding: 70px 0 40px 0;
}

.content-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.content-title {
  font-size: 109px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: calc(-20em / 1000);
  margin: 0 0 0.54rem;
  transition: color 2s ease;
}

.content-description {
  /* font-size: 1.25rem; */
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  transition: color 2s ease;
}

.accordian-container.inverted .content-description {
  color: #fff;
}

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

.content-image img {
  width: 100%;
  height: 300px;
  border-top-right-radius: 12.5rem;
  object-fit: cover;
  transition: filter 2s ease;
}

.accordian-container.inverted .content-image img {
  filter: invert(1) brightness(0.8);
}

.ServicesPanel_tags__6NQOl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 0.4rem;
}

.ServicesPanel_tag__JYwRk {
  font-size: 1rem;
  /* border: 2px solid rgba(0, 0, 0, 0.3); */
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  padding: 5px 10px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.2s ease, color 2s ease, opacity 0.2s ease,
    border-color 2s ease;
  cursor: pointer;
}

.accordian-container.inverted .ServicesPanel_tag__JYwRk {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

@media (min-width: 769px) {
  .ServicesPanel_tags__6NQOl {
    gap: 0.625rem;
  }

  .ServicesPanel_tag__JYwRk:hover {
    border-color: #000;
    background-color: #000;
    color: #fff;
  }

  .accordian-container.inverted .ServicesPanel_tag__JYwRk:hover {
    border-color: #fff;
    background-color: #fff;
    color: #000;
  }
}

@media (min-width: 850px) {
  .ServicesPanel_tag__JYwRk {
    border: 2px solid #e9e9e9;
    /* font-size: 1.125rem; */
    font-size: 16px;
  }

  .accordian-container.inverted .ServicesPanel_tag__JYwRk {
    border-color: #fff;
  }
}

@media (max-width: 1279px) {
  .e-n-accordion {
    --n-accordion-item-title-space-between: 16px;
    --n-accordion-title-font-size: 2rem;
  }

  .e-n-accordion-item-title {
    /* min-height: 50px;
    font-size: clamp(1.5rem, 6vw, 6rem); */
     min-height: auto !important;
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  .accordion-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* .e-n-accordion-item-title {
    font-size: 1.5rem;
  } */

  /* .main-title {
    font-size: clamp(2rem, 8vw, 4rem);
  } */
}

/* client css */

/* Header Section */
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.header-left {
  flex: 1;
  min-width: 300px;
}

.section-label {
  color: #777777;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.42em;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12em;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.expand-btn {
  color: #eaeaea;
  font-size: 48px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.expand-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Gallery Grid */
.gallery-wrapper {
  padding: 64px 0 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 40px;
}

.gallery-item {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 200px;
  justify-content: center;
}

/* .gallery-item:last-child {
            border-right: 1px solid #EAEAEA;
        } */

.gallery-item:hover {
  background-color: rgba(234, 234, 234, 0.05);
  transform: translateY(-5px);
}

.client-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.gallery-item:hover .client-logo {
  filter: brightness(1);
  transform: scale(1.05);
}

.client-name {
  color: #777777;
  font-size: 12.6px;
  font-weight: 400;
  /* text-align: center; */
  margin: 0;
  padding: 0px 0px 0px 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .client-name {
  opacity: 1;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}
.fade-in:nth-child(6) {
  animation-delay: 0.6s;
}
.fade-in:nth-child(7) {
  animation-delay: 0.7s;
}
.fade-in:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .client-section {
    padding: 60px 15px 0;
  }

  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* margin-bottom: 50px !important; */
    margin-bottom: 25px !important;
  }

  .gallery-item {
    /* border: 1px solid #eaeaea; */
    border-radius: 8px;
    padding: 30px 20px;
    min-height: 150px;
  }

  /* .gallery-item:last-child {
    border-right: 1px solid #eaeaea;
  } */
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 721px) {
  .header-left {
    width: 50%;
  }
}
.gallery-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #eaeaea;
}
.gallery-item img {
  /* height: 30px; */
  width: 100%;
  max-width: 170px;
}

/* notification css */

.subscr-cover-link {
  position: fixed;
  z-index: 50;
  bottom: 20px;
  left: 88%;
  z-index: 999;
  color: #000;
  background: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: translate3d(-50%, 0, 0) scale(1);
  size: clamp(60px, 4.75rem, 76px);
  width: 253.156px;
  height: 50px;
  border-radius: 30px;
  transition: transform 0.25s ease;
  opacity: 0;
  transform: translate3d(-50%, 100px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.subscr-cover-link.show {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

/* .subscr-cover-link:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
                border-radius: 30px;
            transition: transform 0.5s cubic-bezier(0.2, 3, 0.4, 1);
            background: #fff;
            transform: scale(1);
        } */

/* .btn {
  -webkit-appearance: none;
  cursor: pointer;
  user-select: none;
  outline: none;
  margin: 0;
  box-shadow: none;
  border: 0;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font: 500 18px / 1.2 var(--font);
  text-transform: none;
  border-radius: 100px;
  transition-property: color, background, border, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  top: 4px;
  left: 257px;
} */

.subscr-cover-link .btn {
  flex: 0 0 auto;
  height: 76px;
  font-weight: bold;
  font-size: 19px;
  padding: 0 calc(56px + (76px - 44px) / 2) 0 0;
  gap: 0;
  white-space: nowrap;
  transition-delay: 0s, 0s, 0s, 0.5s;
  max-width: calc(100vw - 60px * 2);
  position: relative;
}

.btn-pink {
  background: #fff;
  color: var(--white);
}

.btn:before {
  content: "";
  position: absolute;
  width: 250%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0);
  top: var(--top);
  left: var(--left);
  backface-visibility: hidden;
  transition-property: transform, background, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

.btn-pink:before {
  background: #fff;
}

.btn:hover:before {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.subscr-cover-link .btn > .text {
  flex: 0 0 auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 20px,
    rgba(0, 0, 0, 1) calc(100% - 20px),
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: center;
}

.subscr-cover-link .btn > .text > * {
  flex: 0 0 auto;
  padding: 0 20px;
}

.subscr-cover-link .btn strong {
  font-weight: inherit;
  color: yellow;
  transition: color 0.4s ease;
}

/* .subscr-cover-link .arrow {
            width: 56px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            right: calc((var(--size) - 44px) / 2);
            border-radius: 100px;
            background: var(--white);
            transform: translate3d(0, -50%, 0);
        }

        .subscr-cover-link .arrow svg {
            fill: var(--pink);
            flex: 0 0 auto;
            width: 35%;
            height: auto;
        } */

.btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0;
}

.btn-pink:after {
  border-color: #fff;
}

/* .framer-pacBY .framer-oifhf8 {
    align-content: center;
    align-items: center;
    display: flex
;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: 100vh;
    justify-content: flex-end;
    left: calc(50.00000000000002% - 100% / 2);
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: fixed;
    top: calc(50.00000000000002% - 100vh / 2);
    width: 100%;
    z-index: 7;
}
.framer-pacBY .framer-14gxkuc-container {
    flex: none;
    height: 194px;
    position: relative;
    width: 100%;
    z-index: 9;
} */
/* Bottom fixed backdrop blur effect */
.bottom-blur-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; /* Set your desired height */
  pointer-events: none;
  z-index: 100;
}

.backdrop-blur-effect {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
}

/* Layered blur effect */
.blur-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}

.blur-layer-1 {
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 0) 37.5%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 0) 37.5%
  );
}

.blur-layer-2 {
  backdrop-filter: blur(0.5625px);
  -webkit-backdrop-filter: blur(0.5625px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 0) 50%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 0) 50%
  );
}

.blur-layer-3 {
  backdrop-filter: blur(1.125px);
  -webkit-backdrop-filter: blur(1.125px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 62.5%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 62.5%
  );
}

.blur-layer-4 {
  backdrop-filter: blur(2.25px);
  -webkit-backdrop-filter: blur(2.25px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 0) 75%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 0) 75%
  );
}

.blur-layer-5 {
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0) 87.5%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0) 87.5%
  );
}

.blur-layer-6 {
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
}

.blur-layer-7 {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
}

.blur-layer-8 {
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
}
/* work css */

/* .work-be-section {
            background-color: #000;
        } */

     .headerDiscover {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .discover-section h2 {
            color: #fff;
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 25px;
            letter-spacing: 0px;
        }

        .tagsDis {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .tag {
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-weight: 500;
        }

        .tag.active {
            background: #ffffff;
            color: #000000;
            /* transform: translateY(-2px); */
        }

        .tag:not(.active) {
            color: #939191;
            border: 1px solid #333;
            background: transparent;
        }

        .tag:hover {
            /* transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15); */
            color: #003cff;
        }

        /* Improved tab content transitions */
        .tabs-container {
            position: relative;
            /* min-height: 400px;  */
        }

        .tab-content_01 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
        }

        .tab-content_01.active {
            position: relative;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s;
        }

        .contentDiscover {
            display: grid;
            grid-template-columns: 2fr 1fr 300px;
            gap: 20px;
            margin-top: 50px;
            align-items: stretch;
        }

        .ImageDesign {
            border-radius: 15px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ImageDesign:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .d-grid {
            display: grid;
            gap: 20px;
        }

       

        /* Responsive Design */
        @media (max-width: 768px) {
            .col-md-9 {
                max-width: 95%;
            }

            .headerDiscover {
                flex-direction: column;
                gap: 20px;
            }

            .contentDiscover {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .discover-section h2 {
                font-size: 16px;
                margin-top: 40px !important;
            }

            .tabs-container {
                min-height: 600px;
            }
        }

.main-title-2 {
  /* font-size: 12.8vw; */
  font-size: 335px;
  font-weight: 700;
  line-height: 0.8em;
  /* margin-top: -280px; */
  margin-bottom: auto;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: color 2s ease;
}

.main-title-1 {
  /* font-size: 12.8vw; */
  font-size: 370px;
  font-weight: 700;
  line-height: 0.8em;
  /* margin-top: -280px; */
  margin-bottom: auto;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: color 2s ease;
}
.main-title-3 {
  /* font-size: 12.8vw; */
  font-size: 212px;
  font-weight: 700;
  line-height: 0.8em;
  /* margin-top: -280px; */
  margin-bottom: auto;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: color 2s ease;
}

.footer-four-1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2em;
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-four-1 .footer-light-title-1 {
  color: #fff;
  transition: color 2s ease;
}
.footer-four-1 div {
  flex: 1;
  text-align: center;
  color: #fff;
}

/*  results css */

.featured-portfolio_list {
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}
.featured-portfolio_item {
  z-index: 1;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid transparent;
  grid-template-rows: auto;
  grid-template-columns: 1fr 0.75fr;
  grid-auto-columns: 1fr;
  padding: 1.25rem;
  transition: background-color 0.3s, border-color 0.3s;
  display: grid;
  position: relative;
  background-color: rgba(18, 18, 18, 0.7);
  filter: brightness(0.9);
  height: 550px;
}

/* .featured-portfolio_item:hover {
            background-color: rgba(30, 30, 30, 0.7);
            border-color: rgba(255, 255, 255, 0.1);
             border-radius: .625rem;
        } */

.image-wrapper-16-9 {
  z-index: 1;
  /* aspect-ratio: 16 / 9; */
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.featured-portfolio_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.featured-portfolio_image-hover-wrapper {
  z-index: 1;
  border-radius: 0.25rem;
  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  display: flex;
  position: absolute;
  inset: 0%;
}

/* .featured-portfolio_item:hover .featured-portfolio_image-hover-wrapper {
            opacity: 1;
        }

        .featured-portfolio_item:hover .featured-portfolio_image {
            opacity: 0;
        } */
.featured-portfolio_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}

.featured-portfolio_item:hover .featured-portfolio_video {
  opacity: 1;
}

.featured-portfolio_image-hover {
  aspect-ratio: 16 / 9;
  border-radius: var(--size-radius--xsmall);
  object-fit: contain;
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1.01);
}

.featured-portfolio_item-content {
  grid-row-gap: 1.25rem;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.v-flex-xsmall {
  grid-row-gap: 1.5rem;
}

.featured-portfolio_image-list {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.featured-portfolio_image-small {
  border-radius: 0.25rem;
  width: calc(50% - 0.5rem);
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.text-color-secondary {
  color: #fff;
}

.text-size-large {
  font-size: 1.25rem;
  line-height: 1.25;
}

.featured-portfolio_kpi-wrapper {
  grid-row-gap: 1.25rem;
  flex-flow: column;
  display: flex;
}

.featured-portfolio_kpi {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.featured-portfolio_kpi-number {
  margin-right: 0.5rem;
  font-size: 8rem;
  line-height: 0.8;
  font-weight: 500;
}

.line-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 1rem;
}

.background-wrapper {
  position: absolute;
  /* inset: 0;
            z-index: 0; */
  border-radius: 0.5rem;
  overflow: hidden;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.1)
  );
}

.clickable_wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.clickable_link {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 768px) {
  .featured-portfolio_item {
    grid-template-columns: 1fr;
  }

  /* .hide-tablet {
    display: none;
  } */
}
.line-divider.is-featured-portfolio {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.line-divider.is-button-text {
  margin-top: 0.75rem;
}

.line-divider {
  background-color: #eaeaea;
  transform-origin: 0%;
  width: 100%;
  height: 0.0625rem;
}
/* .button-text_wrapper
 {
    grid-column-gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex
;
} */
/* .button-text {
    z-index: 1;
    grid-column-gap: .375rem;
    color: var(--link-color--link-primary);
    text-align: left;
    background-color: #0000;
    flex: none;
    justify-content: center;
    align-items: center;
    padding: .125rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    display: inline-flex
;
    position: relative;
}
.button-text_icon-wrapper {
    z-index: 1;
    justify-content: flex-end;
    align-items: center;
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.1875rem;
    display: flex
;
    position: relative;
    overflow: hidden;
}
.button-text_icon
 {
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1.1875rem;
    display: flex
;
} */
.w-inline-block {
  max-width: 100%;
  display: flex;
}
.results-be {
  background-color: #000;
}

.testimonials-mp {
  position: relative;
  /* overflow: hidden !important; */
}
.testimonials-mp .gray {
  background: #eeeeee;
  color: #000;
  -webkit-transform: rotate(-7deg);
  -ms-transform: rotate(-7deg);
  transform: rotate(-7deg);
}
.testimonials-mp .colorful {
  background: #003cff;
  -webkit-transform: rotate(2deg) translateY(80px);
  -ms-transform: rotate(2deg) translateY(80px);
  transform: rotate(2deg) translateY(80px);
  z-index: 3;
  color: #fff;
}
.testimonials-mp .darklen {
  background: #fff;
  color: #000;
  -webkit-transform: rotate(2deg) translateY(-50px);
  -ms-transform: rotate(2deg) translateY(-50px);
  transform: rotate(2deg) translateY(-50px);
}
.testimonials-mp .item {
  padding: 40px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 400px;
  width: 400px;
  position: relative;
}
.testimonials-mp .item .info p {
  font-size: 14px;
}
.testimonials-mp .item .info span {
  font-size: 16px;
}
.testimonials-mp .item .info .img-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.fit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

/* faq css */

.offer-features_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-features_image-wrapper {
  z-index: 1;
  aspect-ratio: 1 / 1.23;
  align-self: flex-start;
  width: calc(36% - 2rem);
  position: sticky;
  top: 7rem;
  height: 424px;
}

.offer-features_image {
  z-index: 1;
  object-fit: contain;
  position: absolute;
  inset: 0%;
  width: 100%;
  height: 100%;
  display: none;
}

.offer-features_image.active {
  display: block;
}

.offer-features_list {
  flex: 1;
  list-style-type: none;
}

.offer-features_item {
  z-index: 1;
  border-radius: 0.375rem;
  border: 1.5px solid rgba(248, 248, 248, 0);
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.offer-features_item.active {
  border-color: rgba(248, 248, 248, 0.1);
}

.offer-features_item-head {
  grid-column-gap: 1rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.text-size-xlarge {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 400;
}

/* Make sure background-color !important is removed from .accordion_icon-wrapper 
   so it can be changed by JavaScript */
.accordion_icon-wrapper {
  z-index: 1;
  border-radius: 0.125rem;
  background-color: #333; /* Removed !important */
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  transition: filter 0.3s, background-color 0.3s; /* Added background-color transition */
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Update line color to handle both active and inactive states */
.accordion_icon-line {
  z-index: 2;
  background-color: #fff; /* Default white color */
  width: 12px;
  height: 1.5px;
  margin-top: -0.75px;
  position: relative;
}

/* Make the line dark when active */
.active .accordion_icon-line {
  background-color: #fff !important;
}

.accordion_icon-line.is-second {
  z-index: 1;
  width: 1.5px;
  height: 12px;
  margin-right: -0.75px;
  position: absolute;
  transform: translate(0px, 0px);
  transition: transform 0.3s ease;
}

.active .accordion_icon-line.is-second {
  transform: rotate(90deg);
}

.accordion_icon-background {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  /* background-image: linear-gradient(#f0f0f000, #c5c5c5); */
  position: absolute;
  inset: 0%;
  transition: opacity 0.3s ease;
}

.active .accordion_icon-background {
  opacity: 1;
}

.offer-features_divider {
  background-color: #333 !important; /* Removed the typo 'I' */
  width: calc(100% - 4rem);
  height: 0.0625rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Fixed this rule to make sure it works correctly */
.active .offer-features_divider {
  opacity: 0;
}
.offer-features_item-content {
  text-wrap: pretty;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.active .offer-features_item-content {
  height: auto !important ;
}

.max-width-medium {
  width: 100%;
  max-width: 34rem;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 1.5;
}

.w-richtext p {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.spacer-semimedium {
  height: 2rem;
}

.offer-features_item-background {
  z-index: -1;
  /* background-color: #1a1a1a; */
  opacity: 0;
  pointer-events: none;
  background-image: linear-gradient(#10101080, #101010);
  transition: opacity 0.3s;
  position: absolute;
  inset: 0%;
}

.active .offer-features_item-background {
  opacity: 1;
}

strong {
  font-weight: 700;
}

.offer-features_image-wrapper.is-tablet {
  display: none;
}

/* Plus and minus buttons */
.plus-minus-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  cursor: pointer;
}
/* 
        .plus-minus-btn.minus {
            background-color: #f0f0f0;
        } */

@media (max-width: 991px) {
  .offer-features_image-wrapper {
    display: none;
    width: 100%;
    position: relative;
    top: 0;
  }
}

.startups-priorities {
  position: relative;
  /* height: 300vh;  */
  height: 250vh;
  width: 100%;
  background-color: transparent;
}

.startups-priorities .wrap {
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw;
  z-index: 1; /* Ensure proper stacking context */
}

.startups-priorities .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.startups-priorities .bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  backface-visibility: hidden;
  will-change: opacity;
  opacity: 0; /* Hide videos initially */
  transition: opacity 0.8s ease;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.startups-priorities .inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.startups-priorities .title,
.startups-priorities .list {
  font-weight: 500;
  line-height: 1;
  font-size: clamp(44px, 6.25vw, 100px);
  flex: 0 0 auto;
  width: 50%;
}

.startups-priorities .title {
  text-align: right;
  padding-right: clamp(10px, 1.875rem, 30px);
  margin: 0;
  color: #fff; /* Ensure text is visible */
}

.startups-priorities .list {
  padding-left: clamp(10px, 1.875rem, 30px);
  height: 3em; /* Show multiple items */
  position: relative;
  overflow: visible; /* Allow overflow to show faded items */
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.startups-priorities .list,
.startups-priorities .list li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 52px;
  color: #fff; /* Ensure text is visible */
}

.startups-priorities .list li {
  padding-bottom: 10px;
  opacity: 0.2; /* Faded by default */
  transition: opacity 0.5s ease, transform 0.8s ease;
  position: relative; /* Not absolute */
  transform: translateY(0); /* Start at natural position */
}

.startups-priorities .list li.active {
  opacity: 1; /* Fully visible when active */
}

.startups-priorities .list li.above {
  opacity: 0.2; /* Faded when above */
  transform: translateY(-100%); /* Move above */
}

.startups-priorities .list li.below {
  opacity: 0.2; /* Faded when below */
  transform: translateY(0); /* Natural position */
}

.startups-priorities .text {
  font-weight: normal;
  font-size: clamp(16px, 1.5rem, 24px);
  line-height: 1.5;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 50px;
  display: flex;
  margin-left: -50px;
  justify-content: end;
  margin-bottom: calc(-4.5em - 20px);
  position: relative;
  color: #fff; /* Ensure text is visible */
}
.startups-priorities .text :before {
  content: "";
  position: absolute;
  /* top: 1.5em; */
  top: 1em;
  right: 100%;
  margin-right: clamp(10px, 1.875rem, 30px);
  height: 1px;
  border-radius: 0.5px;
  background: #fff;
  opacity: 0.4;
  transform: translate3d(0, -50%, 0);
  width: clamp(40px, 8.125rem, 130px);
}
.startups-priorities .text div {
  opacity: 0;
  position: absolute;
  font-size: 16px;
  transition: opacity 0.5s ease;
  width: 100%;
  max-width: 800px;
}

.startups-priorities .text div.active {
  opacity: 1;
}

#gui_container11 {
  display: none;
}
:root {
  --darkBg: #0a0a0a;
  --primary-blue: #00218f;
  --text-color: #ffffff;
  --bar-bg: #1f1f1f;
}

.preloader-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  background: #000;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.preloader-wrap.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out;
}

.logo-wrap {
  font-size: clamp(60px, 8vw, 90px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  font-weight: 700;
  display: inline-flex;
  align-items: flex-start;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.logo-wrap img {
  width: clamp(32px, 5vw, 48px);
  height: clamp(32px, 5vw, 48px);
  margin: 0;
  transform: translate(4px, -8px);
}
.preloader-bar-wrap {
  max-width: 418px;
  width: 100%;
  background: #1f1f1f;
  border-radius: 10px;
  height: 6px;
  left: 100px;
  position: relative;
  /* overflow: hidden; */
  /* box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3); */
}
:root {
  --darkBg: #0a0a0a;
  --primary-green: #00218f;
  --text-color: #ffffff;
  --bar-bg: #1f1f1f;
}
.preloader-bar {
  background: linear-gradient(
    90deg,
    #000 0%,
    #000 25%,
    var(--primary-green) 50%,
    #00218f 75%,
    var(--primary-green) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transform: translateX(-100%);
  animation: loadingBar 3s ease-in-out forwards;
  /* Enhanced blue glow effect */
}

/* Additional glow animation */
.preloader-bar::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 25%,
    rgba(0, 33, 143, 0.5) 50%,
    rgba(0, 33, 143, 0.7) 75%,
    rgba(0, 33, 143, 0.5) 100%
  );
  border-radius: 14px;
  z-index: -1;
  filter: blur(8px);
  animation: glowPulse 2s ease-in-out infinite alternate;
}

.loading-text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Main content (hidden initially) */
.main-content {
  display: none;
  padding: 50px;
  text-align: center;
}
.main-content.show {
  display: block;
  animation: fadeIn 0.8s ease-out;
}

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

@keyframes glowPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Responsive design */
@media (max-width: 768px) {
  .preloader-content {
    gap: 20px;
    padding: 20px;
  }

  .logo-wrap {
    font-size: 30px;
  }

  .preloader-bar-wrap {
    width: 45vw;
    height: 6px;
    position: relative;
    left: 70px !important;
  }
}

.body-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.body-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.body-container .body-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: solid 1px;
  left: 50%;
  right: initial;
  border-color: #232323 !important;
  z-index: 1;
}

.body-container .body-line.body-line-l1 {
  margin-left: -584px;
}

.body-container .body-line.body-line-l2 {
  margin-left: -170px;
}

.body-container .body-line.body-line-r1 {
  margin-left: 250px;
}

.body-container .body-line.body-line-r2 {
  margin-left: 640px;
}

/* Benefits Section - Improved */
.startups-benefits {
  position: relative;
  z-index: 3;
  pointer-events: none;
  /* Increased height for ultra-slow scrolling - key change */
  height: 400vh; /* Much longer scroll distance */
}
.startups-benefits .wrap {
  display: flex;
  align-items: center;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

/* Benefits Header */
.startups-benefits-head {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
  align-self: flex-start;
  opacity: calc(
    1 - 1 * var(--percent) * 3
  ); /* Reduced multiplier for slower fade */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  /* overflow: hidden; */
}

.startups-benefits-head .bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 40%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.startups-benefits-head .bg video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  outline: none;
  border: 0;
}

.startups-benefits-head .title {
  position: relative;
  z-index: 2;
  margin: 0 0 20px 0;
  max-width: 7em;
}

.startups-benefits-head .text {
  position: relative;
  z-index: 2;
  font-size: clamp(18px, 1.5vw, 24px);
  max-width: 25em;
  color: #aaa;
}

/* Benefits List */
.startups-benefits .list {
  flex: 0 0 auto;
  display: flex;
  /* Apply a more gradual transform with longer transition */
  transform: translate3d(calc((-90% - 90vw) * var(--percent)), 0, 0) !important;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1); /* Custom easing for smoother motion */
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: all;
}

/* Cards */
.startups-benefits .card {
  transform-origin: 50% 0;
  transform: translate3d(calc(-30% * var(--speed) * var(--percent)), 0, 0)
    rotate(calc(var(--angle) * var(--percent)));
  width: 450px;
  height: 600px;
  padding: 20px;
  border-radius: clamp(22px, 2.5rem, 40px);
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: auto;
  will-change: transform;
}

.startups-benefits .card .inner {
  padding: 50px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  transform: translateZ(0);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.startups-benefits .card .pic {
  flex: 0 0 auto;
  width: clamp(60px, 7.5rem, 120px);
  height: clamp(60px, 7.5rem, 120px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.startups-benefits .card .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.startups-benefits .card-title {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 500;
}

.startups-benefits .card .text {
  color: #fff;
  font-size: 16px;
}

.startups-benefits .card1 {
  --angle: -20deg;
  --speed: 1.2;
  background-color: #161616;
}

.startups-benefits .card2 {
  --angle: 21deg;
  --speed: 1.1;
  margin-left: 60px;

  background-color: #977584;
}

.startups-benefits .card3 {
  --angle: -13deg;
  --speed: 1;
  margin-left: -30px;
  background-color: #3443e0;
}

.startups-benefits .card4 {
  --angle: 11.71deg;
  --speed: 1.2;
  margin-left: 100px;
  background-color: #ea87df;
}

.startups-benefits .card5 {
  --angle: -6.71deg;
  --speed: 1.2;
  margin-left: -25px;
  background-color: #57416b;
}

.startups-benefits .card6 {
  --angle: 9deg;
  --speed: 1.3;
  background-color: #7221a3;
  margin-left: 80px;
}

.pic img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .startups-benefits .wrap {
    flex-direction: column;   
  }

  .startups-benefits .card {
    width: 100%;
    margin-bottom: 20px;
    transform: none !important;
  }

  .startups-benefits-head {
    height: auto;
    padding: 60px 20px;
  }

  .startups-benefits-head .bg {
    /* left: 50%; */
    top: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
  }
}
