* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Inter", sans-serif;
  width: 100%;
  height: 100%;

}
.overflow {
  overflow-x : hidden!important;
  overflow-y : auto!important;
}

/* index section */

/* Animated gradient background */
.animated-bg {
  background: linear-gradient(120deg, #0d1012, #020617, #052e3b, #0d1012);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  position: relative;
  bottom: 85px;
}

/* The Blue Contact Button */
.contact-btn {
  background: var(--color-primary-bg);
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.3);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animate-scroll-about {
  animation: scrollUp 8s linear infinite;
}

.paused {
  animation-play-state: paused;
}

/* The Mask: Creates the fade effect at top and bottom */
.mask-vignette {
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%);
}

/* keyframes को -50% पर सेट करें ताकि दूसरा वाला हिस्सा तुरंत सामने आ जाए */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  /* Gap को ध्यान में रखते हुए 50% पर रुकना */
  100% {
    transform: translateY(-50%);
  }
}

.animate-scroll {
  animation: scrollUp 15s linear infinite;
}

.mask-vignette {
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 15%,
      black 85%,
      transparent 100%);
}

.projects-section {
  padding: 40px 0;
  overflow: hidden;
  background: #fff;
}

.header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
}

.header h2 {
  font-size: 38px;
  font-weight: 700 !important;
  margin-bottom: 10px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
  position: relative;
  padding: 20px 0 80px 0;
  cursor: grab;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container:active {
  cursor: grabbing;
}

.slider-wrapper {
  display: flex;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-2 {
  flex: 0 0 var(--card-width);
  padding: 0 15px;
  box-sizing: border-box;
}

/* Zig-Zag Effect */
.slide-2:nth-child(odd) .card {
  margin-top: 0;
}

.slide-2:nth-child(even) .card {
  margin-top: 70px;
}

.card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #f9f9f9;
}

/* Loader for card images */
.card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 3px solid rgba(0, 105, 200, 0.1);
  border-top: 3px solid #0069C8;
  border-radius: 50%;
  animation: cardLoaderSpin 1s linear infinite;
  z-index: 0;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  position: relative;
  z-index: 1;
  min-height: 200px;
}

@keyframes cardLoaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loader for Industry Images */
.industry-image-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 3px solid rgba(0, 105, 200, 0.1);
  border-top: 3px solid #0069C8;
  border-radius: 50%;
  animation: cardLoaderSpin 1s linear infinite;
  z-index: 0;
}

/* CTA Container */
.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px;
  position: relative;
  background: white;
  border-radius: 20px;

  /* 1. Transparent border area */
  border: 2px solid transparent;

  /* 2. Double background: Inner white and Outer Gradient */
  background-image: linear-gradient(white, white),
    linear-gradient(90deg, #0069c8, #82b8dc, #0069c8);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  /* 3. Shine Animation Apply */
  animation: borderGlow 3s ease-in-out infinite;

  /* Layout */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Bright & Dim (Blink) Animation */
@keyframes borderGlow {

  0%,
  100% {
    filter: brightness(100%) drop-shadow(0 0 2px rgba(0, 105, 200, 0.2));
  }

  50% {
    filter: brightness(150%) drop-shadow(0 0 10px rgba(0, 105, 200, 0.6));
  }
}

.cta-text {
  color: #33395d;
  font-size: 1.5rem;
  font-weight: 600;
}

/* The Button */
.cta-button {
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
  background-color: #0052a3;
  color: #fff;
  transform: scale(1.05);
}


.main-container {
  width: 100%;
  min-height: 100vh;
  background-color: #0d1012;
  /* Exact dark base */
  padding: 10px 10px !important;
  position: relative;

  /* Dual glow layers jo move hongi */
  background-image: radial-gradient(circle at 80% 20%,
      rgba(7, 162, 187, 0.25) 0%,
      rgba(13, 16, 18, 0) 50%),
    radial-gradient(circle at 20% 80%,
      rgba(7, 162, 187, 0.15) 0%,
      rgba(13, 16, 18, 0) 50%);

  background-size: 150% 150%;
  /* Animation movement ke liye thoda space */

  /* Animation: Name | Duration | Timing-Function | Iteration | Direction */
  animation: infiniteShine 4s ease-in-out infinite alternate;
  margin-top: 40px !important;
}

@keyframes infiniteShine {
  0% {
    background-position: 0% 0%;
    filter: brightness(0.8) saturate(1);
  }

  50% {
    /* Brightness badhegi lekin contrast bhi rahega taaki grey na dikhe */
    background-position: 50% 50%;
    filter: brightness(1.2) saturate(1.5) contrast(1.1);
  }

  100% {
    background-position: 100% 100%;
    filter: brightness(0.8) saturate(1);
  }
}

:root {
  --vibe-speed: 30s;
  --vibe-bg: #ffffff;
}

.vibe-tech-section {
  position: relative;
  width: 100%;
  padding: 0 10px;
  background-color: var(--vibe-bg);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* The Pulsing Glow in the center */
.vibe-glow-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(0, 212, 255, 0.25) 0%,
      rgba(0, 212, 255, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: vibePulse 4s ease-in-out infinite;
}

@keyframes vibePulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.vibe-container {
  width: 100%;
  max-width: 1400px;
  z-index: 2;
  position: relative;
}

.vibe-header {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px !important;
  padding: 0 10px!important;
}
.vibe-header-2 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px !important;
  padding: 0 10px!important;
}

.vibe-header h2 {
  font-size: 38px !important;
  font-weight: 700;
  color: #111;
  font-family: Inter, sans serif;
}
.vibe-header-2 h2 {
  font-size: 38px !important;
  font-weight: 700;
  color: #111;
  font-family: Inter, sans serif;
}

.vibe-header p {
  color: #666;
  font-size: 18px !important;
  font-family: Inter, sans serif;
}
.vibe-header-2 p {
  color: #666;
  font-size: 18px !important;
  font-family: Inter, sans serif;
}


/* Side fades */
.vibe-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

.vibe-row {
  width: 100%;
  overflow: hidden;
}

.vibe-track {
  display: flex;
  width: max-content;
  animation: vibeScroll var(--vibe-speed) linear infinite;
}

/* Direction reversal */
.vibe-row[data-vibe-direction="rtl"] .vibe-track {
  animation-direction: reverse;
}

.vibe-item {
  background: white;
  padding: 15px 30px;
  margin: 0 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.vibe-item img {
  height: 35px;
  width: auto;
}

.vibe-item span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Stack Slider CSS */
.stack-slider-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 0px 0px;
    perspective: 1500px;
    overflow: hidden;
}

.stack-card-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.stack-card {
    position: absolute;
    width: 90%; /* Mobile base width */
    max-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    overflow: hidden;
    cursor: pointer;
    transform-origin: center bottom;
    background-color: #000;
}

@media (min-width: 768px) {
    .stack-card {
        width: 65%;
        max-width: 1400px;
        height: 70vh;
        max-height: 700px;
        min-height: 500px;
    }
}

.stack-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    z-index: 1;
}

.stack-card-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.stack-card.active .stack-card-content {
    transform: translateY(0);
    opacity: 1;
}

.stack-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stack-card p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
}

/* Stack Positions */
.stack-card.active {
    z-index: 10;
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
    border: 4px solid #0069C8;
}

.stack-card.next {
    z-index: 5;
    transform: translate3d(18%, 0, -120px) scale(0.9);
    opacity: 0.9;
    filter: brightness(0.6) blur(0.5px);
}

.stack-card.prev {
    z-index: 5;
    transform: translate3d(-18%, 0, -120px) scale(0.9);
    opacity: 0.9;
    filter: brightness(0.6) blur(0.5px);
}

.stack-card.next-2 {
    z-index: 2;
    transform: translate3d(36%, 0, -240px) scale(0.8);
    opacity: 0.7;
    filter: brightness(0.4) blur(1px);
}

.stack-card.prev-2 {
    z-index: 2;
    transform: translate3d(-36%, 0, -240px) scale(0.8);
    opacity: 0.7;
    filter: brightness(0.4) blur(1px);
}

/* Mobile Adjustments for Stack */
@media (max-width: 768px) {
    .stack-card.next {
        transform: translate3d(40px, 0, -80px) scale(0.9);
    }
    .stack-card.prev {
        transform: translate3d(-40px, 0, -80px) scale(0.9);
    }
    .stack-card.next-2 {
        transform: translate3d(80px, 0, -160px) scale(0.8);
    }
    .stack-card.prev-2 {
        transform: translate3d(-80px, 0, -160px) scale(0.8);
    }
}

/* Tablet Adjustments for Stack Slider */
@media (min-width: 768px) and (max-width: 1024px) {
    .stack-card {
        width: 58%;
        height: 426px;
    }
    .stack-card.next {
        transform: translate3d(30%, 0, -100px) scale(0.4);
    }
    .stack-card.prev {
        transform: translate3d(-30%, 0, -100px) scale(0.4);
    }
    .stack-card.next-2 {
        transform: translate3d(55%, 0, -200px) scale(0.8);
    }
    .stack-card.prev-2 {
        transform: translate3d(-55%, 0, -200px) scale(0.8);
    }
}

/* Industries Sticky Scroll Section */
.industries-scroll-section {
    position: relative;
    height: 250vh; /* Adjusted height */
    background-color: #fff;
    z-index: 10;
}


.industries-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.industries-bg-text {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

.industries-bg-text h2 {
    font-size: 10vw;
    font-family: Inter, sans-serif;
    font-weight: 600;
    color: #E6E6E6;
    line-height: 1;
    margin: 0;
}

.industries-bg-text p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.industries-cards-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px; /* Adjusted gap */
    z-index: 2;
    will-change: transform;
    height: auto;
    padding-top: 350px;
    padding-bottom: 100px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); /* Smooth delay */
}

.industry-card-new {
    width: 35%;
    height: auto;
    min-height: 368px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 5px 10px rgba(0, 0, 0, 0.03);
}

.industry-card-new:hover {
    transform: scale(1.02);
    background: #fff;
}

.industry-card-new.left {
    align-self: flex-start;
    margin-left: 5%;
}

.industry-card-new.right {
    align-self: flex-end;
    margin-right: 5%;
}

.industry-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.industry-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.industry-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--img-scale, 1));
    transition: transform 0.1s linear;
    will-change: transform;
    position: relative;
    z-index: 1;
}

.industry-card-content {
    padding: 10px 10px;
}

.industry-card-content h3 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: Inter, sans-serif;
}

.industry-card-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: Inter, sans-serif;
}

.industry-card-new:hover .industry-card-img {
    transform: scale(1.0) !important;
    transition: transform 0.5s ease;
}

.industry-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #0069C8;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.industry-more-btn:hover {
    background-color: #0052a3;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .industries-scroll-section {
        height: auto !important;
    }
    .industries-sticky-container {
        position: relative !important;
        height: auto !important;
        display: block;
        overflow: visible;
    }
    .industries-bg-text {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-bottom: 30px;
        opacity: 1 !important;
        padding: 0 20px;
        width: 100%;
    }
    .industries-cards-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        overflow-x: auto !important;
        width: 100% !important;
        height: auto !important;
        padding-top: 0 !important;
        padding-bottom: 40px !important;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE 10+ */
        scroll-snap-type: x mandatory;
    }
    .industries-cards-wrapper::-webkit-scrollbar {
        display: none;
    }
    .industry-card-new {
        flex: 0 0 90% !important;
        width: 90% !important;
        margin: 0 !important;
        min-height: 500px;
        scroll-snap-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
        border-radius: 24px !important;
    }
    .industry-card-new.left, .industry-card-new.right {
        align-self: auto !important;
        margin: 0 !important;
    }
    .industry-image-wrapper {
        height: 350px;
    }
    .industry-card-content {
        padding: 15px;
    }
    .industry-card-content h3 {
        font-size: 1.5rem;
    }
    .industries-bg-text h2 {
        font-size: 15vw;
    }
}

:root {
  --accent-teal: #008080;
  --smooth-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-container {
  height: 300vh;
  /* Keeps height for desktop scroll effect */
  position: relative;
  background: #fff;
}

.sticky-box {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: visible;
}

.header-title {
  font-size: clamp(1.8rem, 5vw, 38px);
  font-weight: 800;
  text-align: center;
}

/* Progress Bar - Centered and Responsive */
.progress-line-track {
  width: 90%;
  height: 3px;
  background: #f2f2f2;
  margin: 20px 0 40px 0;
  position: relative;
  border-radius: 10px;
}

.progress-line-fill {
  width: 0%;
  height: 100%;
  background: #121111;
  border-radius: 10px;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.step-inner {
  opacity: 0.09;
  transform: translateY(50px);
  transition: all 1s var(--smooth-ease);
}

.step-mask.is-active .step {
  opacity: 1;
  transform: translateY(0);
}

.step-mask.is-active .step-inner {
  opacity: 1;
  transform: translateY(0);
}

.big-number {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  color: transparent !important;
  -webkit-text-stroke: 2px #121111 !important;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

:root {
  --primary-blue: #00d2ff;
  --bg-dark: #0a0e14;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-gray: #a0a0a0;
  --item-height: 320px;
  /* Fixed height per item */
}

.header-section {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 60px;
}

.header-section h1 {
  font-size: 38px;
  font-weight: 600;
}

.header-section span {
  color: var(--text-gray);
}

.content-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  align-items: flex-start;
}

/* Sidebar Navigation */
.side-menu {
  flex: 1;
  max-width: 300px;
  position: sticky;
  top: 120px; /* Adjusts based on your header height */
  height: fit-content;
}

.side-menu ul {
  list-style: none;
}

.side-menu li {
  padding: 15px 0;
  color: #B8B6B6 !important;
  cursor: pointer;
  font-size: 20px !important;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.side-menu li.active {
  color: #fff !important;
  font-weight: bold;
  padding-left: 10px;
}

.menu-arrow {
  width: 20px;
  margin-right: 10px;
  display: none;
}

.padding-left {
  padding-left: 20px;
}

@keyframes arrowSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.side-menu li.active .menu-arrow {
  display: block;
  animation: arrowSlideIn 0.4s ease-out forwards;
}

/* Right Content Display */
.content-display {
  flex: 2;
  height: auto !important;
  overflow: visible !important;
  background: transparent;
  border-radius: 15px;
  padding: 10px;
  position: relative;
}

.content-display::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.service-card2 {
  height: var(--item-height);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 25px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-badge {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(130, 184, 220, 0.1);
    color: #fff;
    border: 1px solid rgba(130, 184, 220, 0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card2 h3 {
  color: #fff !important;
  margin-bottom: 8px;
  font-size: 22px !important;
}

.service-card2 p {
  font-size: 1rem;
  color: #fff !important;
  line-height: 1.8;
}

/* Service Card Link Animation */
.service-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
    height: 24px;
}

.service-link .icon-box {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.service-link .arrow-icon-card {
    width: 24px;
    height: auto;
}

.service-link .link-text {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.service-link:hover .icon-box {
    transform: translateX(85px);
    opacity: 1;
}

.service-link:hover .link-text {
    opacity: 1;
    transform: translateX(0);
}

/* contact section popup modal start */
:root {
  --primary-blue: #0071c5;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --border-color: #e0e0e0;
  --bg-dark: #050a12;
  /* Matching the image background */
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
  /* Essential for mobile spacing */
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Card */
.modal-card {
  background: white;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-card .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #333;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

.modal-card h2 {
  font-size: 30px !important;
  font-weight: 800 !important;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.subtitle {
  color: #121111 !important;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Form Styling */
.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #002d5b;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

input,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

input:focus,
textarea:focus {
  border-color: var(--primary-blue);
}

.icon {
  position: absolute;
  right: 15px;
  opacity: 0.4;
}

.icon img {
  width: 30px !important;
  height: 30px !important;
}

textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  background: var(--primary-blue);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  border-top: 5px solid #82B8DC !important;
}

.submit-btn:hover {
  background: #005fa3;
}

/* contact section popup modal end */


/* END-TO-END DIGITAL SECTION STARTS */
:root {
  --text-color: #000000;
  --box-bg: #F3F3F3;
}

.scroll-section {
  height: 200vh;
  /* This determines how long the scroll effect lasts */
  background: #ffffff;
  position: relative;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.main-title {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-color);
  z-index: 2;
}

.sticky-container p {
  font-size: 20px;
}

/* Notification Boxes Styling */
.notification-box {
  position: absolute;
  padding: 12px 20px;
  background: #0069C8;
  color: #fff !important;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  
  /* --- Updated 3D Shadow with Background Color Tone --- */
  /* Logic: x-offset, y-offset, blur, spread, color */
box-shadow: 0 4px 12px rgba(0, 105, 200, 0.2), 
              0 2px 4px rgba(0, 0, 0, 0.1);
              
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  z-index: 3;
}

.notification-box.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Exact placements from the video */
.box-1 {
  top: 10%;
  left: 10%;
}

.box-2 {
  top: 20%;
  right: 10%;
}

.box-3 {
  bottom: 25%;
  left: 10%;
}

.box-4 {
  bottom: 14%;
  right: 4%;
}

.box-5 {
  bottom: 1.5%;
  text-align: center;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .sticky-container p {
    text-align: center;
    font-size: 14px;
    padding: 0 10px;
  }

  .notification-box {
    font-size: 0.8rem;
    position: relative;
    margin: 10px;
  }
  .vibe-header h2 {
    font-size: 35px!important;
}
}

@media (max-width: 768px) {

  /* Section height normal */
  .scroll-section {
    height: auto;
  }

  /* Remove sticky behavior */
  .sticky-container {
    position: relative;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  /* Title center & responsive */
  .main-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 10px;
    margin-top: 20px;
  }

  /* Boxes stacked in one column */
  .notification-box {
    position: relative;
    /* remove absolute */
    opacity: 1;
    /* always visible */
    order: -1; /* bring to top */
    transform: none;
    /* remove scale animation */
    width: 90%;
    max-width: 420px;
    margin: 12px auto;
        /* center */
    white-space: normal;
    text-align: center;
  }

.main-title {
    order: -1; /* Place the section title after the first two boxes */
  }

  .notification-box:nth-child(2),
  .notification-box:nth-child(3) {
    order: -2; /* bring even higher */
  }

  /* Remove desktop positioning */
    /* Remove desktop positioning */
  .box-1,
  .box-2,
  .box-3,
  .box-4,
  .box-5 {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

}


/* END-TO-END DIGITAL SECTION ENDS */


/* RESULTS AND IMPACT SECTION STARTS */
.results-section {
  background-color: #ffffff;
  overflow-x: hidden;
}

.results-section h2 {
  color: #000;
  letter-spacing: -1px;
}

.results-section h4 {
  font-size: 1.25rem;
  color: #000;
  line-height: 1.4;
  font-weight: 600!important;
}

.content-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

hr {
  border-top: 1px solid #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .results-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .results-section h2 {
    font-size: 2rem;
  }

  /* Adds a bit of space between stacked columns on mobile */
  .col-12 {
    margin-bottom: 20px;
  }
}

/* RESULTS AND IMPACT SECTION ENDS */




/* ===============================
   MARQUEE SECTION STARTS
================================ */

.marquee-section {
    padding-bottom: 50px;
    margin-bottom: 0px;
    overflow: hidden;
    background: #fff;
}

.marquee-section .marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 60%, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%, black 60%, transparent 100%);
}

/* Track */
.marquee-section .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

/* Text */
.marquee-section .marquee-text {
    font-size: 58px;
    font-weight: 600;
    color: #0069C8;
    white-space: nowrap;
    padding-right: 60px;
}

/* Stroke text */
.marquee-section .text-stroke-black {
    color: transparent;
    -webkit-text-stroke: 2px #0069C8;
}

/* ANIMATION (REAL INFINITE) */

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

    100% {
        transform: translateX(-50%);
    }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .marquee-section .marquee-text {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .marquee-section .marquee-text {
        font-size: 30px;
        margin-top: 20px!important;
    }

    .marquee-section {
        padding: 0px 0;
    }
    .big-number {
      font-size: 3rem!important;
    }
}

@media (max-width: 480px) {
    .marquee-section .marquee-text {
        font-size: 28px;
    }

}

/* ===============================
   MARQUEE SECTION ENDS
================================ */

/* Hide scrollbar for Finance & Banking section image list */
#card-scroll-container::-webkit-scrollbar {
    display: none;
}

#card-scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


/* Container to mimic the black/white background in your image */
.banner-container {
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: 17px!important;
    left: 0;
    transform: translateY(50%);
    z-index: 10;
}

/* The Main Blue Box */
.blue-box {
    background-color: #0070c0;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 50px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    
    /* Overflow hidden ko hata dena chahiye agar border thoda bahar nikalna ho, 
       par yahan border-radius ke liye rakha ja sakta hai */
    overflow: hidden; 
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    /* --- Border Settings --- */
    border-top: none; /* Top border hatane ke liye */
    border-bottom: 5px solid #82B8DC; /* Niche ka border */
    border-left: 5px solid #82B8DC;   /* Left ka border */
    border-right: 5px solid #82B8DC;  /* Right ka border */
}

.content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 500px;
    line-height: 1.4;
    color: #fff!important;
}

.action {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* White Button */
.btn-work {
    background-color: white;
    color: #0070c0;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-work:hover {
    background-color: #f0f0f0;
}

/* Character/Icon Styling */
.illustration img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes the icon white if needed */
}

.banner-gif-wrapper {
    position: relative;
}

    /* Fix for Why Cubemoons / Blue Box on Laptops (125% - 150% scaling) */
    @media (min-width: 992px) and (max-width: 1500px) {
        .blue-box {
            padding: 20px 25px;
            max-width: 95%;
            gap: 15px;
        }
        .content h2 {
            font-size: 1.2rem !important;
            max-width: 380px;
        }
        .btn-work {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        .illustration img {
            height: 45px;
        }
    }

.banner-gif {
    width: 60px;
    height: auto;
}

/* consultant section start */
:root {
            --primary-blue: #0070f3;
            --text-dark: #1a1a1a;
            --bg-light: #ffffff;
        }



        .consultant-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            background-color: #fff;
            margin-top: 40px;
            overflow-x: hidden;
        }

        .headline-container {
            max-width: 900px;
            position: relative;
        }

        /* Responsive Headline */
        .headline {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--text-dark);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 40px;
        }

        .headline-icon {
            height: 0.9em;
            width: auto;
            vertical-align: middle;
            display: inline-block;
        }

        /* The Animated Icon Space */
        .animated-icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            vertical-align: middle;
            position: relative;
            margin: 0 10px;
        }

        .floating-icon {
            color: var(--primary-blue);
            font-size: 0.8em;
            position: absolute;
            opacity: 0; /* Managed by GSAP */
        }

        /* Eye & Sparkle Icons (Static-ish) */
        .eye-icon { font-size: 0.7em; margin-right: 10px; vertical-align: middle; }
        .sparkle { color: #ffd700; font-size: 0.5em; }

        /* Button Styling */
        .cta-button {
            background-color: var(--primary-blue);
            color: white;
            padding: 14px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 112, 243, 0.2);
            border-top: 4px solid #82B8DC;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 112, 243, 0.3);
        }

        .arrow-circle {
            background: rgba(255, 255, 255, 0.2);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* consultant section end */

/* hero section 3d cube start */
        /* UI Overlay Styles */
        #ui-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            pointer-events: none;
            z-index: 20;
            display: flex;
            justify-content: space-between;
            padding: 5%;
            box-sizing: border-box;
            flex-wrap: wrap;
        }

        .hero-title-container {
            position: absolute; 
            top: 130px; 
            left: 50%; 
            transform: translateX(-50%); 
            width: 100%; 
            text-align: center; 
            z-index: 21; 
            padding: 0 20px; 
            pointer-events: auto;
        }

        .hero-title-container h1 {
            color: #fff; 
            font-size: clamp(20px, 5vw, 48px); 
            font-weight: 700; 
            margin: 0; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            font-family: 'Inter', sans-serif;
        }

        .desc-left {
            color: #fff;
            width: 30%;
            text-align: left;
            z-index: 20;
            pointer-events: auto;
        }

        .desc-right {
            color: #fff;
            width: 20%;
            text-align: right;
            font-family: Inter,sans-serif;
            margin-bottom: 40px;
            font-weight: 200!important;
        }

        .desc-right h3 {
            font-weight: 200!important;
        }

        .desc-left h4 {
            font-size: 24px;
            font-family: "Inter", "sans-serif";
            margin: 0 0 15px 0;
            line-height: 1.4;
            font-weight: 200 !important;
            margin-top: 150px;
        }

        /* Responsive Design for Mobile */
        @media (max-width: 768px) {
            #ui-overlay {
                display: flex !important;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none; /* For Firefox */
                flex-wrap: nowrap;
                align-items: flex-start;
                padding: 130px 0 0 0;
                height: auto;
                gap: 0;
                pointer-events: auto !important;
            }
            #ui-overlay::-webkit-scrollbar {
                display: none; /* For Chrome, Safari, and Opera */
            }

            .hero-title-container {
                position: static;
                transform: none;
                flex: 0 0 100%;
                scroll-snap-align: center;
                text-align: center;
                margin: 0;
            }
            .hero-title-container h1 { font-size: 28px; line-height: 1.3; }
            .desc-left, .desc-right {
                display: block !important;
                flex: 0 0 100%;
                scroll-snap-align: center;
                width: 100%;
                text-align: center;
                padding: 0 20px;
                opacity: 1;
                animation: none;
                margin: 0;
            }
            .desc-left h4 { font-size: 16px; line-height: 1.3!important; margin-top: 0 !important; margin-bottom: 0 !important; }
            .desc-right h3 { font-size: 16px !important; line-height: 1.3!important; margin-top: 0 !important; margin-bottom: 0 !important; }

        }

        /* Tablet & Small Laptop (768px - 1024px) */
        @media (min-width: 768px) and (max-width: 1024px) {
            #ui-overlay {
                padding: 120px 20px 40px 20px;
            }
            .hero-title-container {
                top: 100px;
            }
            .hero-title-container h1 {
                font-size: 36px;
            }
            .desc-left, .desc-right {
                display: block !important;
                width: 28%;
            }
            .desc-left h4 {
                font-size: 16px;
                font-weight: 200!important;
            }
            .desc-right h3 {
                font-size: 14px !important;
                font-weight: 200!important;
            }
        }

        .desc-left {
            color: #fff;
            width: 35%;
            align-self: center;
            font-family: Inter,sans-serif;
            font-weight: 400!important;
        }

        .desc-right {
            color: #fff;
            width: 25%;
            align-self: flex-end;
            text-align: right;
            font-family: Inter, sans-serif;
            margin-bottom: 40px;
            font-weight: 200!important;
            align-self: flex-end;
        }

        .desc-right h3 {
            font-weight: 200!important;
        }

    /* Fix for Laptop with 150% scaling (approx 1280px width) and smaller desktops */
    @media (min-width: 1025px) and (max-width: 1550px) {
        .hero-title-container {
            top: 100px;
        }
        .hero-title-container h1 {
            font-size: 36px;
        }
        .desc-left h4 {
            margin-top: 80px;
            font-size: 18px;
        }
        .desc-right h3 {
            font-size: 14px !important;
        }
        .desc-right {
            margin-bottom: 130px;
        }
        #ui-overlay {
            padding: 100px 30px 30px 30px;
        }

        /* Stack Slider Fixes */
        .stack-slider-section {
            height: auto;
            min-height: 80vh;
            padding: 60px 0;
        }
        .stack-card {
            height: 60vh;
            min-height: 450px;
        }

        /* Industries Fixes */
        .industries-cards-wrapper {
            padding-top: 220px;
            gap: 60px;
        }
        .industries-bg-text {
            top: 120px;
        }
        .industries-bg-text h2 {
            font-size: 6rem;
        }
        .industry-card-new {
            min-height: 400px;
        }

        /* End to End Fixes */
        .main-title {
            font-size: 3rem;
        }
        .notification-box {
            transform: scale(0.9);
        }
        .box-1 { top: 12%; left: 5%; }
        .box-2 { top: 18%; right: 5%; }
        .box-3 { bottom: 22%; left: 5%; }
        .box-4 { bottom: 12%; right: 2%; }

        /* Spacing Fixes */

        .consultant-section {
            margin-top: 40px;
        }

        /* Core Services Section Fixes */
        .header-section {
            margin-bottom: 40px;
        }
        .header-section h1 {
            font-size: 2.5rem;
        }
        .content-wrapper {
            gap: 30px;
        }
        .side-menu {
            max-width: 240px;
            top: 100px;
        }
        .side-menu li {
            font-size: 16px !important;
            padding: 12px 0;
        }
        .service-card2 {
            height: auto;
            min-height: 280px;
            padding: 15px;
            margin-bottom: 20px;
        }
        .service-badge {
            font-size: 10px;
            padding: 6px 10px;
        }
        .service-card2 h3 {
            font-size: 18px !important;
        }
        .service-card2 p {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Real Products / Projects Section Fixes */
        .projects-section {
            padding: 50px 0;
        }
        .header h2 {
            font-size: 2.2rem;
        }
        .slide-2 {
            flex: 0 0 300px; /* Smaller width for laptop to prevent image cut */
        }
        .slide-2:nth-child(even) .card {
            margin-top: 40px; /* Reduced zig-zag offset */
        }
        .carousel-container {
            padding-bottom: 50px;
        }
        
        /* Laptop Height Fix for Cube */
        .hero-bg, .hero-canvas {
            height: 100vh !important;
            min-height: 800px;
        }
        .hero-next-section {
            margin-top: calc(100vh + 20px) !important;
        }
    }

    /* Fix for short height screens (Landscape or High Scaling) */
    @media (min-width: 1025px) and (max-height: 800px) {
        .hero-title-container {
            top: 80px;
        }
        .desc-left h4 {
            margin-top: 50px;
        }
        .industries-cards-wrapper {
            padding-top: 220px;
        }
    }
/* hero section 3d cube end */

/* ===============================
   GLOBAL 3D CUBE PRELOADER
================================ */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 32, 44, 0.9) 0%, rgba(13, 16, 18, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    z-index: 999999; /* Ensure it's on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-cube-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer Orbit Ring */
.loader-cube-wrapper::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(0, 105, 200, 0.1);
    border-top: 2px solid #0069C8;
    border-bottom: 2px solid #0069C8;
    border-radius: 50%;
    animation: orbit1 2s linear infinite;
    box-shadow: 0 0 10px rgba(0, 105, 200, 0.3);
}

/* Inner Orbit Ring */
.loader-cube-wrapper::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(95, 168, 255, 0.1);
    border-left: 2px solid #5FA8FF;
    border-right: 2px solid #5FA8FF;
    border-radius: 50%;
    animation: orbit2 2.5s linear infinite reverse;
    box-shadow: 0 0 10px rgba(95, 168, 255, 0.3);
}

.loader-cube {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeSpin 3s infinite linear;
}

.loader-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url('../assets/logo/cubemoons-favicon.svg'); /* Texture Image Path */
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #0069C8; /* Thinner border for better look */
    box-shadow: 0 0 15px rgba(0, 105, 200, 0.5) inset;
    border-radius: 8px;
    backface-visibility: visible;
}

.loader-face:nth-child(1) { transform: rotateY(0deg) translateZ(30px); }
.loader-face:nth-child(2) { transform: rotateY(90deg) translateZ(30px); }
.loader-face:nth-child(3) { transform: rotateY(180deg) translateZ(30px); }
.loader-face:nth-child(4) { transform: rotateY(-90deg) translateZ(30px); }
.loader-face:nth-child(5) { transform: rotateX(90deg) translateZ(30px); }
.loader-face:nth-child(6) { transform: rotateX(-90deg) translateZ(30px); }

@keyframes cubeSpin {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes orbit1 {
    0% { transform: rotateX(60deg) rotateZ(0deg); }
    100% { transform: rotateX(60deg) rotateZ(360deg); }
}

@keyframes orbit2 {
    0% { transform: rotateY(60deg) rotateZ(0deg); }
    100% { transform: rotateY(60deg) rotateZ(360deg); }
}

/* Responsive fix for loader on small mobile screens */
@media (max-width: 480px) {
    .loader-cube-wrapper {
        transform: scale(0.7);
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.section-spacer {
    margin-bottom: 40px !important;
}

.hero-bg {
    height: 90vh;
}
.hero-canvas {
    height: 90vh;
}
.hero-next-section {
    margin-top: calc(90vh + 40px);
}
