
    /* === GLOBAL LAYOUT === */
html {
  height: 100%;
  scroll-padding-top: 325px; /* adjust to the total height of your top-bar + navbar */
  scroll-behavior: smooth; /* optional for smooth scrolling */
}
body {
  height: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
body {
  padding-top: 120px; /* 40px top-bar + 80px navbar */
}


/* === CIRCUIT PATH BACKGROUND === */
svg.circuit-path {
  position: fixed;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  z-index: -9;
  opacity: 0.75;
  height: 200%;
  width: auto;
}
.path {
  animation: draw 10s infinite;
  animation-timing-function: linear;
}
.path-01 {
  animation-delay: 0s;
}
.path-02 {
  animation-delay: 1s;
}
.path-03 {
  animation-delay: 2s;
}
.path-04 {
  animation-delay: 3s;
}
.path-05 {
  animation-delay: 4s;
}

@media screen and (min-width: 768px) {
  svg.circuit-path {
    height: auto;
    width: 200%;
  }
}

/* hero container	*/
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-top: 25px;
  }
}

@keyframes draw {
  0% {
  }
  100% {
    stroke-dashoffset: 0;
    stroke-opacity: 10;
  }
}

/* === DRAW ANIMATION === */
@keyframes draw {
  0%   { stroke-dashoffset: 3000; stroke-opacity: 0.4; }
  100% { stroke-dashoffset: 0; stroke-opacity: 0.8; }
}

/* === TYPEWRITER === */
.typewriter::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: #0ea5e9;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* === MARQUEE === */
@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 25s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}

.top-bar {
  position: fixed; /* instead of relative */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1f1f1f;
  color: #fff;
  font-size: 0.85rem;
  padding: 0;
  height: 40px;
  z-index: 1000;
}


.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .socials a {
  color: #fff;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.top-bar .socials a:hover {
  color: #0ea5e9;
}


.navbar {
  position: fixed; /* keep it always at the top */
  top: 40px; /* adjust so it’s right below top-bar */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  height: 75px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: -10px; /* shift left by 10px */
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  transform: translateX(-90px); /* moves Services, About, Contact 10px to the left */
}


.navbar-item a {
  position: relative;
  color: #1f2937;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.navbar-item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #0ea5e9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-item a:hover {
  color: #0ea5e9;
  
}

.navbar-item a:hover::after {
  transform: scaleX(1);
}

/* === CTA Button === */
.navbar-cta {
  background-color: #06b6d4;
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-cta:hover {
  background-color: #0ea5e9;
  transform: scale(1.05);
}

/* === DROPDOWN === */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  display: flex;
  gap: 1rem;

  background-color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;

  width: clamp(600px, 75%, 1000px); /* <= THIS MAKES IT SCALE */
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* === CARD STYLING === */
.dropdown-card {
  position: relative;
  width: 240px;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.dropdown-card:hover {
  transform: scale(1.03);
}

/* Image stays full size inside the card */
.card-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay shows title, rises on hover */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.55); /* grey translucent */
  color: #fff;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: height 0.4s ease;
  overflow: hidden;
}

/* Overlay expands to full on hover */
.dropdown-card:hover .card-overlay {
  height: 100%;
}
/* Show options on hover */
.dropdown-card:hover .card-options {
  opacity: 1;
  max-height: 300px;
}
/* Title always visible in half overlay */
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  z-index: 2;
}
/* Hide options by default */
.card-options {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

/* No underline on links by default */
.card-options a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-options a:hover {
  color: #cce7ff;
}

/* Animated underline ONLY for active effect or selected state */
.card-options a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00e5ff;
  transition: width 0.3s;
}

.card-options a:hover::after {
  width: 100%;
}

/* Hover effect: overlay expands upward */
.dropdown-card:hover .card-overlay {
  height: 100%;
}

/* Show list when hovered */
.dropdown-card:hover .card-options {
  opacity: 1;
  max-height: 200px;
}

/* Clean links - no underline at all */
.card-options li a {
  color: #ffffff;
  text-decoration: none !important;
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.card-options li a {
  color: #bae6fd;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

/* Hover style - subtle color change, still no underline */
.card-options li a:hover {
  color: #b8e8ff;
}

/* === MOBILE === */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.bar {
  height: 3px;
  width: 25px;
  background: #374151;
  border-radius: 2px;
}

/* === HERO WAVE & ANIMATIONS === */
.waves,
.onde {
  position: relative;
  width: 100%;
  height: 80px;
  margin-bottom: -7px;
  min-height: 50px;
  max-height: 100px;
}
.parallax > use,
.parallaxonde > use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* === FLOATING ICONS === */
@keyframes float {
  0%   { transform: translateY(0px) translateX(0px); }
  25%  { transform: translateY(-20px) translateX(5px); }
  50%  { transform: translateY(-10px) translateX(0px); }
  75%  { transform: translateY(-20px) translateX(-5px); }
  100% { transform: translateY(0px) translateX(0px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-delay { animation: float 5s ease-in-out infinite; }
.animate-float-slow { animation: float 6s ease-in-out infinite; }

/* === SCROLL ARROW === */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
#scrollArrow svg {
  animation: bounce 1.2s infinite;
  color: #3B82F6;
}

/* === SECTION TITLE UNDERLINE === */
.section-title {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 8px;
  color: #0d1b2a;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
  background: #00e5ff;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  box-shadow: 0 0 8px #00e5ff, 0 0 16px #00e5ff;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 2s ease;
}
.section-title.animate-underline::after {
  transform: scaleX(1);
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-bounce-slow {
  animation: bounce-slow 2.5s infinite;
}

.btn-style500 {
  --btn-color: #35ecd4; /* Tailwind's blue-500 for consistency */
  border: 2px solid var(--btn-color);
  color: var(--btn-color);
  background: transparent;
  padding: 1.5rem 2.5rem;            /* Increased padding */
  border-radius: 8px;            /* Slightly more rounded */
  font-size: 1.25rem;            /* Increased font size */
  font-weight: 700;              /* Bolder text */
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  background-repeat: no-repeat;

}

.btn-style500:hover {
  color: #fff;
  transition-delay: 0.2s;
  animation: ani500 0.6s forwards;
  background: 
    radial-gradient(circle, var(--btn-color) 0.2em, transparent 0.3em) 6em 6em / 1em 1em,
    radial-gradient(circle, var(--btn-color) 0.2em, transparent 0.3em) 0 0 / 1em 1em;
}

@keyframes ani500 {
  100% {
    background-size: 2.375em 2.375em, 0.1em 0.1em;
  }
}

/* Remove underline from all links by default */
a {
  text-decoration: none;
}

/* Optional: restore underline on hover if needed */
a:hover {
  text-decoration: none;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 40px;
  height: 40px;
  --c:no-repeat linear-gradient(#ffffff 0 0);
  background: 
    var(--c) 0    0,
    var(--c) 0    100%, 
    var(--c) 50%  0,  
    var(--c) 50%  100%, 
    var(--c) 100% 0, 
    var(--c) 100% 100%;
  background-size: 8px 50%;
  animation: l9-0 2s infinite;
  position: relative;
  overflow: hidden;
}
.loader:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f1f1f1;
  top: calc(50% - 4px);
  left: -8px;
  animation: inherit;
  animation-name: l9-1;
}
@keyframes l9-0 {
 16.67% {background-size:8px 30%, 8px 30%, 8px 50%, 8px 50%, 8px 50%, 8px 50%}
 33.33% {background-size:8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 50%, 8px 50%}
 50%    {background-size:8px 30%, 8px 30%, 8px 30%, 8px 30%, 8px 50%, 8px 50%}
 66.67% {background-size:8px 50%, 8px 50%, 8px 30%, 8px 30%, 8px 50%, 8px 50%}
 83.33% {background-size:8px 50%, 8px 50%, 8px 50%, 8px 50%, 8px 50%, 8px 50%}
}
@keyframes l9-1 {
 20%     {left:0px}
 40%,70% {left:calc(50% - 4px)}
 80%,85% {left:8px;top:calc(50% - 4px)}
 100%    {left:8px;top:-8px}
}

.hero-image-animate {
  position: relative;
  z-index: 0; /* Behind the text */
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInRight 1.2s ease-out 0.3s forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.container {
  position: relative;
  width: 100%;
  height: 600px; /* Ensure enough height */
  margin-top: 60px;
  perspective: 1000px;
}

.cards {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 400px;
  margin-left: -150px;
  margin-top: -200px;
  transform-style: preserve-3d;
  opacity: 0; /* Hidden until animation starts */
}

.cards.animate {
  animation: cards 1.5s ease-in-out forwards;
}

.cards:nth-child(1) {
  z-index: 7;
  background-color: rgba(106, 245, 238, 0.85);
  transform: translateY(-180px) rotateX(65deg) rotateZ(-45deg);
}
.cards:nth-child(2) {
  z-index: 6;
  background-color: rgba(72, 180, 252, 0.85);
  transform: translateY(-150px) rotateX(65deg) rotateZ(-45deg);
}
.cards:nth-child(3) {
  z-index: 5;
  background-color: rgba(116, 94, 217, 0.85);
  transform: translateY(-120px) rotateX(65deg) rotateZ(-45deg);
}
.cards:nth-child(4) {
  z-index: 4;
  background-color: rgba(178, 94, 217, 0.85);
  transform: translateY(-90px) rotateX(65deg) rotateZ(-45deg);
}
.cards:nth-child(5) {
  z-index: 3;
  background-color: rgba(217, 94, 145, 0.85);
  transform: translateY(-60px) rotateX(65deg) rotateZ(-45deg);
}
.cards:nth-child(6) {
  z-index: 2;
  background-color: rgba(217, 94, 114, 0.85);
  transform: translateY(-30px) rotateX(65deg) rotateZ(-45deg);
}
.cards:nth-child(7) {
  z-index: 1;
  background-color: rgba(153, 67, 67, 0.85);
  transform: translateY(0px) rotateX(65deg) rotateZ(-45deg);
}


.cards__title {
  font-size: 24px;
  font-weight: normal;
  color: #fffbe1;
  position: absolute;
  left: 15px;
  bottom: 10px;
  margin: 0;
}


@keyframes cards {
  0% {
    opacity: 0;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  30% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  80% {
    transform: rotateX(65deg) rotateY(0deg) rotateZ(-45deg);
  }
  100% {
    opacity: 1;
  }
}
@keyframes titles {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  80% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.card-info {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease 1s; /* Show after animation */
}

.left-info {
  left: 0;
  text-align: right;
  padding-right: 40px;
}

.right-info {
  right: 0;
  text-align: left;
  padding-left: 40px;
}

.info-text {
  max-width: 200px;
  font-size: 16px;
  color: #fffbe1;
  position: relative;
}

.info-text::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #10fcdc;
}

.left-info .info-text::before {
  right: -45px;
}

.right-info .info-text::before {
  left: -45px;
}

.cards-wrapper {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-info {
  position: absolute;
  top: 0;
  width: 200px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease 2.5s;
}


.cards-wrapper.show-info .card-info {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 1.2s, transform 0.8s ease 1.2s;
}

.left-info {
  left: 0;
  text-align: right;
  padding-right: 20px;
}

.right-info {
  right: 0;
  text-align: left;
  padding-left: 20px;
}

.info-text {
  position: absolute;
  font-size: 16px;
  color: #fffbe1;
  max-width: 200px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}



/* Base number circle */
.info-number {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 9999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Matching circle colors based on data-step (match the cards) */
.info-number[data-step="1"] { background-color: #10fcdc; } /* Idea */
.info-number[data-step="2"] { background-color: #38bdf8; } /* Briefing */
.info-number[data-step="3"] { background-color: rgba(116, 94, 217, 0.85); } /* Analysis */
.info-number[data-step="4"] { background-color: rgba(178, 94, 217, 0.85); } /* Design */
.info-number[data-step="5"] { background-color: rgba(217, 94, 145, 0.85); } /* Code */
.info-number[data-step="6"] { background-color: rgba(217, 94, 114, 0.85); } /* Review */
.info-number[data-step="7"] { background-color: rgba(153, 67, 67, 0.85); } /* Launch */

/* Align number + text better */
.info-text {
  display: flex;
  align-items: center;
  gap: 10px;
}





/* Example top positions matching card stack spacing */
.info-text[data-for="1"] { top: 5%; }
.info-text[data-for="2"] { top: 15%; }
.info-text[data-for="3"] { top: 25%; }
.info-text[data-for="4"] { top: 35%; }
.info-text[data-for="5"] { top: 45%; }
.info-text[data-for="6"] { top: 55%; }
.info-text[data-for="7"] { top: 65%; }

.bridge-line {
  position: absolute;
  height: 2px;
  background: #10fcdc;
  top: 50%;
}

/* LEFT SIDE CONNECTIONS */
.left-info .bridge-line[data-step="1"] {
  left: 236px;
  width: 200px;
  transform: translateY(43px) rotate(25deg); /* angle to card */
}
.left-info .bridge-line[data-step="3"] {
  left: 245px;
  width: 200px;
  transform: translateY(10px) rotate(6deg);
}
.left-info .bridge-line[data-step="5"] {
  left: 244px;
  width: 252px;
  transform: translateY(-4px) rotate(-2deg);
}
.left-info .bridge-line[data-step="7"] {
  left: 240px;
  width: 250px;
  transform: translateY(-34px) rotate(-16deg);
}

/* RIGHT SIDE CONNECTIONS */
.right-info .bridge-line[data-step="2"] {
  left: -85px;
  width: 100px;
  transform: translateY(-1px) rotate(-15deg);
}
.right-info .bridge-line[data-step="4"] {
  left: -85px;
  width: 110px;
  transform: translateY(-1px) rotate(-10deg);
}
.right-info .bridge-line[data-step="6"] {
  left: -85px;
  width: 120px;
  transform: translateY(-1px) rotate(-5deg);
}

@media (max-width: 1024px) {
  .bridge-line {
    display: none; /* Optional: hide for small screens */
  }
}


/* Responsive for tablets/smaller devices */
@media (max-width: 768px) {
  .cards {
    width: 220px;
    height: 300px;
    margin-left: -110px;
    margin-top: -150px;
  }

  .cards__title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .cards {
    width: 180px;
    height: 250px;
    margin-left: -90px;
    margin-top: -125px;
  }

  .cards__title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
    height: auto;
  }

  .card-info {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .info-text {
    position: relative;
    margin: 15px auto;
    top: auto !important;
  }

  .info-text::before {
    display: none;
  }

  .left-info,
  .right-info {
    left: unset;
    right: unset;
    padding: 0;
    text-align: center;
  }
  .info-text .line,
  .info-text .circle {
    display: none;
  }

  .info-text {
    padding: 0;
  }
}



#stackSection {
  background-color: #213e5c;
  background-image: url("img/black-paper.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}
#stackSectionMobile {
  background-color: #213e5c;
  background-image: url("img/black-paper.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

#nicecard {
  background-color: #00060762;
  background-image: url("img/office.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

#techs {
  background-color: #4e4e4e;
background-image: url("https://www.transparenttextures.com/patterns/old-wall.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

#pricingPlans {
 background-color: #000000;
  background-image: url("img/black-paper.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.dropdown-mega-menu {
  transition: all 0.3s ease;
}

.dropdown-mega-menu:hover,
.group:hover .dropdown-mega-menu {
  opacity: 1;
  pointer-events: auto;
}


.hamburger {
  padding: 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
}
.hamburger--spin.is-active .hamburger-inner::before {
  transform: rotate(-90deg) translateX(0);
  opacity: 0;
}
.hamburger--spin.is-active .hamburger-inner::after {
  transform: rotate(-90deg) translateX(0);
}

  .perspective-container {
    perspective: 1800px;
  }
  .perspective {
    transform-style: preserve-3d;
  }


/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #10fcdc #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #10fcdc;
    border-radius: 10px;
    border: 3px dotted #ffffff;
  }

  /* ======= Swivel cars ============ */

/* Specific to services swiper */
.services-swiper {
  perspective: 1200px;
  overflow: visible !important;
}

.services-swiper .swiper-slide {
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.7s ease-in-out;
}

/* Responsive improvement */
@media (max-width: 768px) {
  .services-swiper .swiper-slide {
    height: 420px;
  }

  #dragHint {
    transform: scale(0.9);
  }
}
.swiper-wrapper {
  z-index: 0; /* keep it below the card */
}

.swiper-slide {
  z-index: 10; /* allow card content to sit above */
}
.service-slide a {
  position: relative;
  z-index: 50; /* way above Swiper’s slides */
}



/*Modal window*/

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out forwards;
}

#weBuild {
background-color: #446f97;
background-image: url("https://www.transparenttextures.com/patterns/dark-denim.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}