@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');



/* Design System - Creative Tech Studio */

:root {
  --bg-color: #0a0a0a;
  --text-primary: #f1f1f1;
  --text-secondary: rgba(241, 241, 241, 0.6);
  --accent-color: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: auto !important;
}


body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: "Urbanist", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto !important;
}

.h-90 {
  height: 90% !important;
}

/* Desktop / Mobile Visibility Helpers */
.d-desktop {
  display: block !important;
}
.d-mobile {
  display: none !important;
}

@media (max-width: 991px) {
  .d-desktop {
    display: none !important;
  }
  .d-mobile {
    display: block !important;
  }
}

body.loading {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.section-padding-top {
  padding-top: 100px;
}

.section-padding-bottom {
  padding-bottom: 100px;
}

.section-padding {
  padding: 100px 0;
}

.bottom-blur {
  backdrop-filter: blur(10px);
  bottom: 0;
  flex: none;
  height: 100px;
  left: 0;
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%) add;
  overflow: visible;
  position: fixed;
  right: 0;
  pointer-events: none;
  z-index: 999;
}

.name-container p {
  font-size: 18px;
}

.name-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  /* align-items: flex-start; */

}

.name-container .text {
  font-family: 'Outfit', sans-serif;
  font-size: 10vw;
  letter-spacing: -.01em;
  line-height: 100%;
  margin: 0;
  font-weight: 700;
  width: 100%;
  color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(to right, #ffffff, #ffffff) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;

  /* border-bottom: 1px solid #2F2B28; */

  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: relative;
  text-align: center;
}

.name-container span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  color: #0D0D0D;

  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  transform-origin: center;
  transition: all cubic-bezier(.1, .5, .5, 1) 0.4s;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-container .text:hover>span {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}




/* Custom Cursor */
.cursor-blob {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-radius 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.cursor-text {
  font-family: "Urbanist", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.preloader-percent {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -5px;
  height: clamp(5rem, 20vw, 15rem);
  overflow: hidden;
}

.digit-col {
  height: clamp(5rem, 20vw, 15rem);
  overflow: hidden;
}

.digit-strip {
  display: flex;
  flex-direction: column;
}

.digit-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(5rem, 20vw, 15rem);
  font-size: clamp(5rem, 20vw, 10rem);
  line-height: 1;
}

.percent-sign {
  font-size: clamp(2rem, 8vw, 6rem);
  margin-left: 10px;
  align-self: flex-end;
  margin-bottom: clamp(1rem, 4vw, 3rem);
}

.preloader-bar {
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  margin-top: 20px;
}

/* Navigation */
.navbar {
  position: sticky;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  border-bottom: 2px solid transparent;
  z-index: 100;
}

.navbar .row {
  width: 100%;
}

.navbar.blur {
  /* border-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #00000036; */
  padding: 20px 0;
  border: 0;
}

.logo img {
  width: 230px;
}

.menu-list {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 30px;
  margin-bottom: 0;
  isolation: isolate;
}

.menu-list li {
  list-style: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #0000006b;
  padding: 7px 20px 4px 0px;
  border-radius: 200px;
  transition: all 0.5s ease-in-out;
}

/* 
nav .menu-list li:hover {
  padding: 8px 6px;
}

nav .menu-list li:hover a {
  background-color: #F5F5F5;
  color: #0D0D0D !important;
  padding: 6px 19px;
  border-radius: 200px;
} */

.menu-list li a {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  mix-blend-mode: difference;
  -webkit-font-smoothing: antialiased;
  transition: color 200ms ease, mix-blend-mode 200ms ease;
  transition: all 0.5s ease-in-out;
}

.humburger-btn {
  color: #F5F5F5;
  border: 0;
  /* -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); */
  /* background: #ededed14; */
  height: max-content;
  padding: 8px 20px;
  border-radius: 200px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.humburger-btn span {
  transition: color 200ms ease, mix-blend-mode 200ms ease;
  transition: all 0.5s ease-in-out;
}

.humburger-btn:hover {
  padding: 8px 6px;
  transition: all 0.5s ease-in-out;
}

.humburger-btn:hover span {
  background-color: #F5F5F5;
  color: #0D0D0D;
  padding: 6px 19px;
  border-radius: 200px;
}

.humburger-btn img {
  width: 22px;
  margin-right: 4px;
  mix-blend-mode: difference;
}


.logo {
  color: #fff;
  text-decoration: none;
  padding: 2px 10px;

}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  /* gap: 40px; */
}

.nav-item {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #fff;
}


.offcanvas .menu-list {
  flex-direction: column;
  align-items: start;
}

.offcanvas {
  width: 100% !important;
  height: 100vh !important;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background: rgba(10, 10, 10, 0.9) !important;
  border-left: none !important;
  z-index: 99999;
  overflow-y: auto;
  overflow-x: hidden;
  /* Remove Slide, Add Fade (Handled by GSAP) */
  transform: none !important;
  opacity: 0;
  visibility: hidden;
}

/* .offcanvas.show state is handled by visibility in CSS but opacity in GSAP */
.offcanvas.show {
  visibility: visible;
}

/* Custom Scrollbar for Offcanvas */
.offcanvas::-webkit-scrollbar {
  width: 4px;
}

.offcanvas::-webkit-scrollbar-track {
  background: transparent;
}

.offcanvas::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.offcanvas::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.offcanvas-header {
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.menu-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 10px 25px;
  border-radius: 200px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s var(--transition-expo);
  cursor: pointer;
}

.menu-close-btn:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.offcanvas-body {
  padding: 0 !important;
  height: 100%;
  overflow: hidden;
}

.menu-content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Left: Info Side */
.menu-info-side {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 6%;
}

.menu-branding {
  max-width: 300px;
}

.branding-logo .small-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 5px;
}

.branding-logo h1 {
  font-size: 60px;
  margin: 0;
  line-height: 1;
  letter-spacing: -2px;
}

.menu-contact-info {
  margin-top: 60px;
}

.menu-contact-info h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.contact-block {
  margin-bottom: 20px;
}

.contact-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-block a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--accent-color);
}

.social-mini-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.social-mini-links a {
  font-size: 14px;
}

/* Center: Image Side */
.menu-image-center {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-image-container {
  width: 100%;
  max-width: 400px;
  height: 75%;
  border-radius: 200px 30px 30px 30px;
  /* Asymmetrical rounded corner from ref */
  overflow: hidden;
  position: relative;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--transition-expo);
}

.menu-image-container.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* Right: Nav Side */
.menu-nav-side {
  flex: 1.2;
  display: flex;
  align-items: center;
  padding-right: 6%;
  justify-content: flex-end;
}

.offcanvas .menu-list {
  gap: 10px;
  align-items: flex-end;
  text-align: right;
}

.offcanvas .menu-list li a {
  font-family: 'Playfair Display', serif;
  /* Serif for menu items */
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: none;
}

.offcanvas .menu-list li a:hover {
  font-style: italic;
}

.offcanvas .menu-list li a::after {
  text-align: right;
  text-transform: none;
}

.offcanvas .menu-list li {
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  display: block;
}

.side-block-hidden {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
}

.offcanvas .menu-list li a {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  display: block;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.offcanvas .menu-list li a .reveal-span {
  display: block;
  will-change: transform;
}

.offcanvas .menu-list li a span {
  display: block;
  transition: transform 0.6s var(--transition-expo);
}

.offcanvas .menu-list li a::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--accent-color);
  transition: transform 0.6s var(--transition-expo);
  font-style: italic;
  font-weight: 900;
  width: 100%;
}

.offcanvas .menu-list li a:hover span {
  transform: translateY(-110%);

}

.offcanvas .menu-list li a:hover::after {
  transform: translateY(-110%);
}

/* Sub-menu Styles */
.sub-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 0;
  text-align: left;
  transition: all 0.5s var(--transition-expo);
  list-style: none;
  opacity: 0;
}

.sub-menu.active {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
  margin-bottom: 15px;
}

.sub-menu li {
  margin-bottom: 10px;
}

.sub-menu li a {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.sub-menu li a:hover {
  color: var(--accent-color) !important;
}

.menu-dropdown-toggle i {
  font-size: 0.8rem;
  margin-left: 10px;
  transition: transform 0.4s var(--transition-expo);
  vertical-align: middle;
}

.menu-item-has-children.active .menu-dropdown-toggle i {
  transform: rotate(180deg);
}

.menu-item-has-children.active .reveal-span span {
  color: var(--accent-color);
}


.menu-item-bar {
  display: flex;
  align-items: center;
}

.scroll-percent {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-left: 12px;
  min-width: 40px;
  text-align: right;
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  transition: all 0.3s var(--transition-smooth);
}

.scroll-percent.is-top-btn {
  opacity: 1;
  color: var(--accent-color);
  cursor: pointer;
  transform: scale(1.1);
  text-align: center;
}

.sound-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #f5f5f5;
  text-decoration: none !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #0000006b;
  padding: 8px 20px 5px 20px;
  border-radius: 200px;
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--transition-smooth);
  opacity: 0.6;
  text-transform: uppercase;
}

.sound-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.sound-link.active {
  opacity: 1;
  color: var(--accent-color);
}

/* Hero Section */
.hero-section {
  height: 100dvh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-section {
    display: none;
  }
}

#gl-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 10%;
}

.hero-title-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3rem, 15vw, 12rem);
  line-height: 0.9;
  letter-spacing: -4px;
}

.hero-title .accent {
  color: var(--accent-color);
}

.reveal {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-meta {
  max-width: 500px;
  margin-top: 40px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--accent-color);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-scroll-indicator {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: none;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}

/* Intro Section */
.intro-section {
  padding: 200px 0;
}

.section-label {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.large-text {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 1000px;
}

.large-text .highlight {
  color: #fff;
  font-weight: 800;
}

.short-title h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.short-title i {
  /* font-weight: 300; */
  rotate: 45deg;
  font-size: 20px;
}

.theme-title h1 {
  font-family: "Outfit", sans-serif;
  /* font-family: "harpagan", sans-serif; */
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

.dynamic-text-clone>div {
  display: inline-block;
  filter: blur(8px);
  opacity: 0.5;
}

/* Horizontal Showcase */
.horizontal-section {
  position: relative;
  z-index: 10;
}


.horizontal-sticky {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.horizontal-container {
  display: flex;
  padding-left: 10%;
  gap: 15rem;
  will-change: transform;
}

.showcase-card {
  flex-shrink: 0;
  width: clamp(300px, 40vw, 600px);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.showcase-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(-10%);
}

.card-info {
  margin-top: 30px;
}

.card-title {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.card-cat {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Services Section - Premium Layout */
.services-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  z-index: 10;
  overflow: hidden;
}

.services-video-container {
  position: absolute;
  left: 10%;
  top: 160px;
  width: 420px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  background: #111;
  transform: translateY(-50%) scale(0.9);
  transition: opacity 0.6s var(--transition-expo), visibility 0.6s var(--transition-expo);
}

.services-video-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.services-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-list-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item {
  position: relative;
  padding: 1.2rem 0;
  cursor: pointer;
  z-index: 1;
  /* Below video container (5) */
  transition: opacity 0.4s var(--transition-smooth);
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #656565;
  transition: color 1s var(--transition-smooth), transform 1s var(--transition-smooth);

}

.service-tag {
  font-size: 0.9rem;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s var(--transition-expo);
  pointer-events: none;
  position: absolute;
  margin-left: 40px;
  text-align: center;
  top: 50px;
}

/* Hover States */
.service-item:hover {
  z-index: 10;
  /* Higher than video container (5) */
}

.service-item:hover .service-title {
  color: var(--text-primary);
  transform: scale(1.03);
}

.service-item:hover .service-tag {
  opacity: 1;
  transform: translateX(0);
}

.services-list-wrapper:hover .service-item:not(:hover) {
  opacity: 0.2;
}

/* Footer */
.footer {
  min-height: 90vh;
  margin: 20px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 100;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

#waveCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

.footer .container {
  width: 100%;
}

.footer-top {
  margin-bottom: 80px;
}

.footer-cta {
  font-size: 60px;
  line-height: 0.85;
  padding: 15px 0 15px 0;
}

.mail-link {
  /* font-size: clamp(1.5rem, 3vw, 2.5rem); */
  color: var(--accent-color);
  text-decoration: none;
  /* font-weight: 500; */
  display: inline-block;
  /* margin-bottom: 100px; */
  position: relative;
}

.mail-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition-expo);
}

.mail-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 30px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color);
}


.d-mobile {
  display: none;
}

/* Responsive */


@media (min-width: 768px) {
  .md-h-90 {
    height: 90% !important;
  }
}

@media (max-width: 768px) {
  .d-desktop {
    display: none !important;
  }

  .d-mobile {
    display: block !important;
  }

  .container {
    padding: 0 20px;
  }

  .horizontal-container {
    gap: 8rem;
  }

  .offcanvas {
    width: 100% !important;
  }
}

/* --- Impact Timeline --- */
.impact-timeline {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
}


.impact-sticky {
  position: relative;
  height: 100%;
  width: 100%;
}

.impact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.5;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.impact-tabs {
  display: flex;
  gap: 15px;
}

.impact-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.4;
  padding: 5px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.impact-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.impact-tab-btn.active {
  opacity: 1;
}

.impact-tab-btn.active::after {
  width: 100%;
}

.impact-tab-btn:hover {
  opacity: 0.8;
}

.impact-pagination {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 200;
  color: var(--text-primary);
}

.impact-pagination .current-idx {
  font-weight: 600;
}

.impact-pagination .divider {
  margin: 0 10px;
  opacity: 0.3;
}

.impact-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.year-mask {
  height: 100px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.year-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}

.year-item {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 100px;
  letter-spacing: -1px;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.impact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-content-box {
  max-width: 450px;
}

.impact-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.impact-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9f9f9f;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.impact-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.7;
  font-weight: 300;
}

.next-impact-btn {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s var(--transition-expo);
  z-index: 20;
}

.next-impact-btn:hover {
  background: white;
  color: black;
  transform: translateX(-50%) translateY(-5px);
}

/* Reveal Gallery Section */
.reveal-gallery {
  position: relative;
  z-index: 99;
  overflow: hidden;
  margin-top: -100px;
}

.reveal-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reveal-typography {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}


.reveal-word {
  font-size: clamp(3rem, 10vw, 15rem);
  font-weight: 800;
  font-family: 'Outfit', serif;
  color: var(--text-primary);
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1;
}

.reveal-word span {
  display: inline-block;
  overflow: hidden;
}

.reveal-char {
  display: inline-block;
  will-change: transform;
}


.reveal-image-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25vw;
  height: 50vh;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}


.reveal-img-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  opacity: 1;
  transform: scale(0);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  will-change: transform, opacity;
}



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

.reveal-side-content {
  position: absolute;
  width: 250px;
  opacity: 0;
  z-index: 15;
}

.reveal-side-content.left {
  left: 10%;
  top: 50%;
  transform: translate(-50px, -50%);
}

.reveal-side-content.right {
  right: 10%;
  top: 50%;
  transform: translate(50px, -50%);
}

.side-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 15px;
}

.side-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.side-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.creation-full-width {
  width: 100%;
  padding: 6px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ededed16;
  border-radius: 16px;
}

.creation-full-card {
  height: 450px;
  width: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.creation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-expo);
}

.creation-full-card:hover .creation-img {
  transform: scale(1.05);
}

.creation-card-info {
  display: flex;
  width: 98%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #00000063;
  border-radius: 16px;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.creation-card-info-name h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
}

.creation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 80px;
}

.offcanvas-backdrop {
  display: none;
}

.creation-grid .grid-full {
  grid-column: span 2;
}

.creation-card-info-pill {
  border: 2px solid #cccccc;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 14px;
}

.creation-card-info-pill:hover {
  background-color: #ffffff;
  border: 2px solid transparent;
  transition: all 0.8s ease-in-out;
  color: black;
}

.container-creation {
  max-width: 1150px !important;
}


.creation-explore-part {
  width: 100%;
  padding: 6px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ededed16;
  border-radius: 16px;
}

@media (min-width: 991px) {
  .creation-explore-part {
    width: 50%;
  }
}

.creation-explore-card {
  background-image: url('/assets/images/panacea-in.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70px;
  width: 100%;
  border-radius: 16px;
  padding: 6px;
}

.creation-explore-card a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 10px 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #00000063;
  border-radius: 16px;
  color: #f1f1f1;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
}

.creation-explore-card a span {
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.creation-explore-card a i {
  transition: all 0.5s ease-in-out;
}

.creation-explore-card a:hover {
  padding: 10px 10px;
}

.creation-explore-card a:hover span {
  background-color: #F5F5F5;
  color: #0D0D0D;
  padding: 6px 18px;
  border-radius: 200px;
}

.creation-explore-card a:hover i {
  transform: translateX(4px);
  color: #F5F5F5;
}

.scrolling-text-container {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}

.scrolling-text-inner {
  display: flex;
  white-space: nowrap;
  gap: 0;
  will-change: transform;
}

.scrolling-text-inner span {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
  padding-right: 2rem;
  display: inline-block;
}

.skills-marquee-section {
  padding-bottom: 100px;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.skills-marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.skills-marquee-inner {
  display: flex;
  gap: 50px;
  padding: 20px 0;
  will-change: transform;
}

.skill-pill {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: max-content;
}

.skill-logo img {
  width: 4rem;
}

.skill-logo {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.skill-name {
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Premium Hover Effect */
.skill-pill:hover .skill-logo {
  color: var(--accent-color);
  z-index: 5;
  /* Transform removed here, handled by JS mousemove */
}

.skill-pill:hover .skill-name {
  color: rgba(255, 255, 255, 0.4);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  transform: scale(0.95);
}

#scrollingText {
  text-transform: uppercase;
}

.footer-middle-left-list {
  padding: 0;
}

.footer-middle-right-list {
  padding: 0;
}

.footer-middle-left-list li {
  list-style: none;
  padding-left: 0;
}

.footer-middle-left-list li a {
  text-decoration: none;
  color: #FFFFFF;
}

.footer-middle-right-list li {
  list-style: none;
  padding-left: 0;
}

.footer-middle-right-list li a {
  text-decoration: none;
  color: #FFFFFF;
}

.back-to-top-wrapper {
  position: relative;
  display: inline-block;
  margin: 20px 0 20px;
}

.back-to-top {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  cursor: pointer;
  letter-spacing: 4px;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  z-index: 5;
  text-transform: uppercase;
}

.back-to-top:hover {
  color: var(--accent-color);
  letter-spacing: 8px;
}

.back-to-top-preview {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translate(-50%, 20px) scale(0.9) rotate(-2deg);
  width: 320px;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #111;
  z-index: 10;
}

.back-to-top-wrapper:hover .back-to-top-preview {
  opacity: 1;
  transform: translate(-50%, 0) scale(1) rotate(0deg);
}

.back-to-top-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .section-padding {
    padding: 30px 0;
  }

  .interactive-grid {
    grid-template-columns: 1fr;
  }

  .humburger-btn:hover {
    padding: 0;
    /* transition: all 0.5s ease-in-out; */
  }

  .humburger-btn:hover span {
    background-color: transparent;
    color: #F5F5F5;
    padding: 0;
    border-radius: 0;
  }

  .impact-timeline {
    height: auto;
    min-height: 100vh;
    /* padding: 80px 0; */
    overflow: visible;
  }

  .impact-sticky {
    position: relative;
  }

  .impact-left,
  .impact-center,
  .impact-right {
    text-align: center;
    margin-bottom: 40px;
  }

  .impact-left {
    order: 1;
  }

  .impact-center {
    order: 2;
  }

  .impact-right {
    order: 3;
    align-items: center;
  }

  .year-mask {
    height: 70px;
  }

  .year-item {
    font-size: 2.2rem;
    line-height: 70px;
  }

  .next-impact-btn {
    position: relative;
    bottom: 0;
    margin-top: 40px;
  }

  .hero-section {
    display: flex !important;
  }

  /* .reveal-gallery {
    display: none !important;
  } */

  .reveal-image-stack {
    width: 80vw;
    height: 25vh;
    /* Reduced height to make space */
  }

  .reveal-typography {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .reveal-word {
    font-size: 15vw;
    margin: 0;
    line-height: 0.9;
  }

  .gallery-scroll-indicator {
    display: flex;
  }

  .reveal-side-content {
    display: block;
    width: 85vw;
    text-align: center;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 30;
  }

  .reveal-side-content.left {
    top: 18%;
    /* Pushed further up */
  }

  .reveal-side-content.right {
    top: auto;
    bottom: 18%;
    /* Pushed further down */
  }

  .side-title {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .side-desc {
    font-size: 0.75rem;
    /* Slightly smaller to fit */
    max-width: 75%;
    margin: 0 auto;
    line-height: 1.4;
  }

  .theme-title h1 {
    font-size: 50px;
  }

  .humburger-btn {
    border: 0;
    /* -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    background: transparent; */
    padding: 0;
  }

  .logo img {
    width: 100%;
  }

  .humburger-text {
    display: none;
  }

  .services-section {
    padding: 80px 20px;
    height: auto;
    min-height: auto;
  }

  .services-video-container {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 250px;
    margin-bottom: 40px;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .services-video-container.active {
    display: block;
    transform: none;
  }

  .service-title {
    font-size: 3.5rem;
    text-align: center;
    justify-content: center;
  }

  .service-tag {
    display: none;
  }
}


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

  .creation-grid .grid-full {
    grid-column: span 1;
  }

  .creation-full-card {
    height: 350px;
  }

  .creation-card-info {
    width: 90%;
    bottom: -20px;
  }

  .creation-card-info-name h1 {
    font-size: 20px;
  }
}



.creation-card-info {
  z-index: 102;
  /* Ensure text is above the effect */
}

/* --- Impact Mobile Stacking Cards --- */
@media (max-width: 991px) {
  .impact-mobile-container {
    padding: 20px 0;
  }

  .impact-mobile-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
  }

  .impact-mobile-card {
    position: sticky;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
    transform-origin: top center;
  }

  .impact-mobile-card-year {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
    line-height: 1;
  }

  .impact-mobile-card-full-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
  }

  .impact-mobile-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    line-height: 1.2;
  }

  .impact-mobile-card-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .impact-mobile-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
  }
}

/* --- Featured Works (scroll-driven showcase) --- */

.featured-showcase-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  background-color: var(--bg-color, #0a0a0a);
  isolation: isolate;
  z-index: 1;
  clear: both;
}

.featured-pin-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.featured-section {
  --bg-dark: #0a0a0a;
  --accent-gold: #ccff00;
  --accent-gold-rgb: 204, 255, 0;
  --text-main: #f1f1f1;
  --text-muted: rgba(241, 241, 241, 0.6);
  --font-sans: "Inter", sans-serif;
  --font-display: "Outfit", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);

  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* background-color: var(--bg-dark); */
}

.featured-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  pointer-events: none;
}

.project-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, #050505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  will-change: transform, clip-path;
  pointer-events: auto;
}

.project-image-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.02);
  /* background-color: #111; */
  overflow: hidden;
  will-change: transform;
}

.project-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
  will-change: transform, filter;
}

.project-image-overlay {
  display: none;
}

.project-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 10%;
  /* background-color: var(--bg-dark); */
  /* border-left: 1px solid rgba(255, 255, 255, 0.04); */
  visibility: hidden;
  opacity: 0;
  pointer-events: auto;
}

.project-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  margin-bottom: 40px;
}

.project-header-bar .works-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-main);
  opacity: 0.8;
}

.project-header-bar .header-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.project-header-bar .handle-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.project-counter {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-main);
  opacity: 0.9;
  margin-bottom: 24px;
}

.project-title-container {
  overflow: hidden;
  margin-bottom: 8px;
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  text-transform: uppercase;
}

.project-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 24px;
}

.project-desc-container {
  overflow: hidden;
  margin-bottom: 40px;
}

.project-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.project-link-container {
  overflow: hidden;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #F5F5F5;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 200px;
  line-height: 1;
  transition: all 0.5s ease-in-out;
  background: transparent;
  border: none;
}

.project-link span {
  transition: all 0.5s ease-in-out;
  display: inline-block;
}

.project-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #F5F5F5;
  stroke-width: 1.5px;
  transition: all 0.5s ease-in-out;
}

.project-link:hover {
  padding: 8px 6px;
}

.project-link:hover span {
  background-color: #F5F5F5;
  color: #0D0D0D;
  padding: 6px 19px;
  border-radius: 200px;
}

.project-link:hover svg {
  transform: translateX(4px);
  stroke: #F5F5F5;
}

.slides-progress-container {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1px;
  overflow: hidden;
  z-index: 5;
}

.slides-progress-bar {
  width: 100%;
  height: 0%;
  background-color: var(--accent-gold);
  position: absolute;
  top: 0;
  left: 0;
  will-change: height;
}

.creation-list {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .featured-showcase-wrap {
    margin-top: 40px;
  }

  .featured-pin-wrap {
    height: auto;
    overflow: visible;
  }

  .featured-section {
    height: auto;
    overflow: visible;
    padding: 40px 0 80px;
  }

  .featured-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .project-slide {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 100px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .project-slide:last-child {
    margin-bottom: 0;
  }

  .project-image-wrapper {
    position: relative !important;
    height: 45vh !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6% !important;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, #050505 100%) !important;
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }

  .project-image-inner {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    top: 0 !important;
    transform: none !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  }

  .project-content-wrapper {
    width: 100% !important;
    height: auto !important;
    border-left: none !important;
    padding: 40px 6% 0 6% !important;
    background-color: transparent !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .project-header-bar {
    margin-bottom: 30px !important;
  }

  .slides-progress-container {
    display: none;
  }

  /* Responsive Offcanvas Menu for Mobile */
  .offcanvas-header {
    padding: 20px !important;
  }
  
  .menu-content-wrapper {
    flex-direction: column !important;
    overflow-y: auto !important;
    padding-top: 80px; /* Make space for close button and logo */
  }
  
  .menu-image-center {
    display: none !important;
  }
  
  .menu-info-side {
    flex: none !important;
    width: 100% !important;
    padding: 30px 20px !important;
    justify-content: center !important;
    text-align: center !important;
    order: 2 !important;
  }
  
  .menu-branding {
    max-width: 100% !important;
  }
  
  .menu-contact-info {
    margin-top: 30px !important;
  }
  
  .social-mini-links {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  
  .menu-nav-side {
    flex: none !important;
    width: 100% !important;
    padding: 20px !important;
    justify-content: center !important;
    order: 1 !important;
  }
  
  .offcanvas .menu-list {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  
  .offcanvas .menu-list li a {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    padding: 5px 0 !important;
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .project-image-wrapper {
    height: 35vh !important;
    padding: 4% !important;
  }
}

/* ==========================================================================
   About Page Hero Scroll Section Styles (Merged from about.css)
   ========================================================================== */

.about-hero-scroll {
  position: relative;
  height: 420vh;
  /* Provides plenty of scroll height for 180 frames */
  width: 100%;
  background-color: #050505;
  overflow: visible;
}

.about-scroll-sticky {
  position: sticky;
  top: 0;
  left: 4%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Canvas Sizing */
.about-canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
}

#about-canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark radial vignette overlay for contrast and legibility */
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.3) 0%, rgba(5, 5, 5, 0.85) 90%);
  z-index: 2;
  pointer-events: none;
}

/* Paragraph Text Columns Positioning */
.about-paragraphs-container {
  position: relative;
  z-index: 3;
  height: 100%;
  pointer-events: none;
}

.relative-row {
  position: relative;
  height: 100%;
}

.about-text-col {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  will-change: transform, opacity;
}

.about-text-col.left-aligned {
  left: 4%;
}

/* Right-aligned items */
.about-text-col.right-aligned {
  right: 4%;
}

/* Premium Card Design */
.about-card {
  position: relative;
  background: rgba(18, 18, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.75),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  transition: border-color 0.4s var(--transition-smooth, cubic-bezier(0.22, 1, 0.36, 1)),
    background-color 0.4s var(--transition-smooth, cubic-bezier(0.22, 1, 0.36, 1));
}

.about-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(25, 25, 25, 0.6);
}

.about-card-glow {
  /* position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 75% 25%, rgba(204, 255, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s ease; */
}

.about-card:hover .about-card-glow {
  background: radial-gradient(circle at 75% 25%, rgba(204, 255, 0, 0.07) 0%, transparent 65%);
}

.about-number {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #ccff00;
  /* Matching project accent neon green */
  letter-spacing: 4px;
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--text-primary, #f1f1f1);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.about-desc {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary, rgba(241, 241, 241, 0.65));
  line-height: 1.75;
  margin: 0;
}

/* Scroll Journey Indicator */
.about-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.about-scroll-indicator p {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  color: var(--text-primary, #f1f1f1);
}

.indicator-arrow {
  color: #ccff00;
  /* Accent neon green pointer */
  font-size: 13px;
  animation: floatArrow 1.8s infinite ease-in-out;
}

@keyframes floatArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
  .about-scroll-sticky {
    left: 3%;
    width: 94%;
    height: 80vh;
    top: 10vh;
    border-radius: 20px;
  }

  .about-text-col {
    top: 50%;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
  }

  .about-card {
    padding: 30px;
    border-radius: 20px;
  }

  .about-title {
    margin-bottom: 12px;
  }

  .about-desc {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 575px) {
  .about-text-col {
    width: 92%;
  }

  .about-card {
    padding: 25px;
  }
}