@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");

@font-face {
  font-family: "PPSupplyMono";
  src: url("https://assets.codepen.io/7558/PPSupplyMono-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-mono: "PPSupplyMono", monospace;
  --font-sans: "PP Neue Montreal", sans-serif;
  --color-bg: #000;
  --color-text: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  --color-text-light: rgba(255, 255, 255, 0.6);
  --color-accent: #fff;
  --font-size-mono: clamp(10px, 1.2vw, 12px);
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  overflow: hidden;
  color: var(--color-text);
  cursor: pointer;
}

.slider-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* overlay (non-blocking) */
.slider-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;                     /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.65); /* black with 65% opacity (adjust as needed) */
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;        /* allow clicks to pass through */
  z-index: 50;                 /* sits above background but below content */
}

/* when loaded, show the overlay */
.slider-wrapper.loaded::before {
  opacity: 1;
}
.webgl-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Current slide number at middle left - UPDATED: 12px uppercase */
.slide-number {
  position: absolute;
  top: 50%;
  left: var(--spacing-md);
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  z-index: 3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Total slides at middle right - UPDATED: 12px uppercase */
.slide-total {
  position: absolute;
  top: 50%;
  right: var(--spacing-md);
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  z-index: 3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slides-navigation {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  display: none;
  gap: 0;
  z-index: 3;
  pointer-events: all;
}

.slide-nav-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: var(--spacing-sm);
  flex: 1;
  border: none;
  background: none;
}

.slide-progress-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
  border-radius: 1px;
  overflow: hidden;
}

.slide-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.1s ease, opacity 0.3s ease;
  border-radius: 1px;
}

.slide-nav-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  font-weight: 600;
  transition: color 0.3s ease;
}

.slide-nav-item.active .slide-nav-title {
  color: var(--color-text);
}

.help-text {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  z-index: 9999999999;
  color: white;
}

/* Tweakpane Styling */
.tp-dfwv {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 1000 !important;
  max-width: 320px !important;
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
}

.tp-dfwv .tp-btnv_b {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-family: var(--font-mono) !important;
  border-radius: 4px !important;
}

.tp-dfwv .tp-btnv_b:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 600px) {
  .slides-navigation {
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    right: var(--spacing-sm);
  }

  .slide-nav-item {
    padding: 0.75rem;
  }

  .help-text {
    top: var(--spacing-sm);
    left: var(--spacing-sm);
  }

  .slide-number {
    left: var(--spacing-sm);
  }

  .slide-total {
    right: var(--spacing-sm);
  }

  .tp-dfwv {
    top: 10px !important;
    right: 10px !important;
    max-width: 280px !important;
  }
}

/* Preloader styles */
.slider-wrapper {
  opacity: 0;
  transition: opacity 1.5s ease-in;
  pointer-events: none;
}

.slider-wrapper.loaded {
  opacity: 1;
  pointer-events: auto;
}

/* HERO CARD - place in your main stylesheet */
.hero-card {
  position: absolute;
  right: 2.5%;                   /* distance from left of hero */
  bottom: 5%;                 /* distance from bottom of hero */
  width: min(500px, 72vw);      /* responsive width */
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 18px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  color: #fff;
  z-index: 120;                 /* above overlay */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0;
  transform-origin: calc(100% - 10px) calc(100% - 10px); /* anchored near bottom-right */
  will-change: transform, opacity;
  /* start in hidden/off-screen state */
  opacity: 0;
  transform: translate(40px, 40px) scale(0.85) rotate(-2deg);
  transition: transform 500ms cubic-bezier(.2,.9,.25,1), opacity 420ms ease;
}

/* Set transform origin to bottom-right so it pops from that corner */
.hero-card {
  transform-origin: calc(100% - 10px) calc(100% - 10px); /* anchored near bottom-right */
  will-change: transform, opacity;
  /* start in hidden/off-screen state */
  opacity: 0;
  transform: translate(40px, 40px) scale(0.85) rotate(-2deg);
  transition: transform 500ms cubic-bezier(.2,.9,.25,1), opacity 420ms ease;
}

/* Visible state: placed and fully opaque */
.hero-card.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0);
}

/* Make child items initially slightly down and transparent */
.hero-card__item {
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 360ms cubic-bezier(.2,.9,.25,1), opacity 320ms ease, background 160ms ease;
  transition-delay: 0ms; /* base — per-item delays will be applied via nth-child or JS */
}

/* When parent has .is-visible we animate children in with stagger */
.hero-card.is-visible .hero-card__item {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Stagger delay using nth-child (2x2 grid so item order 1..4) */
.hero-card.is-visible .hero-card__item:nth-child(1) { transition-delay: 120ms; }
.hero-card.is-visible .hero-card__item:nth-child(2) { transition-delay: 180ms; }
.hero-card.is-visible .hero-card__item:nth-child(3) { transition-delay: 240ms; }
.hero-card.is-visible .hero-card__item:nth-child(4) { transition-delay: 300ms; }

/* Title and CTA pop slightly after items */
.hero-card__title {
  opacity: 0;
  transform: translateY(6px);
  transition: transform 360ms ease, opacity 360ms ease;
  transition-delay: 60ms;
}
.hero-card.is-visible .hero-card__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms;
}

.hero-card__cta {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: transform 380ms cubic-bezier(.2,.9,.25,1), opacity 360ms ease;
  transition-delay: 360ms;
}
.hero-card.is-visible .hero-card__cta {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 420ms;
}

/* Accent pop for the button hover */
.btn {
  transform-origin: center;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background: rgba(0, 0, 0, 1);
  transform: translateY(-2px);
}

/* ANGLE ICONS */
.btn-angle {
  position: absolute;
  width: 16px;
  height: 16px;
  color: currentColor;
  opacity: 0.9;
  transition: transform 0.4s cubic-bezier(.25,.9,.25,1), opacity 0.3s ease;
  pointer-events: none;
}

/* Position icons slightly outside button corners */
.btn-angle.tl { top: -10px; left: -20px; transform: translate(-4px, -4px); }
.btn-angle.tr { top: -10px; right: -20px; transform: translate(4px, -4px); }
.btn-angle.bl { bottom: -10px; left: -20px; transform: translate(-4px, 4px); }
.btn-angle.br { bottom: -10px; right: -20px; transform: translate(4px, 4px); }

.btn-angle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* Flip the icons inward */
.btn-angle.tl svg {
  transform: rotate(180deg); /* Invert top-left corner */
}

.btn-angle.tr svg {
  transform: rotate(180deg); /* Invert top-right corner */
}

.btn-angle.bl svg {
  transform: rotate(180deg);  /* Invert bottom-left corner */
}

.btn-angle.br svg {
  transform: rotate(180deg);   /* Default position (inward already) */
}

.btn:hover .btn-angle.tl { transform: translate(0, 0); }
.btn:hover .btn-angle.tr { transform: translate(0, 0); }
.btn:hover .btn-angle.bl { transform: translate(0, 0); }
.btn:hover .btn-angle.br { transform: translate(0, 0); }

.btn:hover .btn-angle svg {
  transform: scale(1.1) rotate(var(--rotate));
}
/* Animate inward (towards button center) on hover */
/* .btn:hover .btn-angle.tl { transform: translate(3px, 3px); }
.btn:hover .btn-angle.tr { transform: translate(-3px, 3px); }
.btn:hover .btn-angle.bl { transform: translate(3px, -3px); }
.btn:hover .btn-angle.br { transform: translate(-3px, -3px); } */

/* Optional subtle opacity change */
.btn:hover .btn-angle { opacity: 1; }

/* Small-screen tweak */
@media (max-width: 480px) {
  .btn-angle { opacity: 0.7; transform: scale(0.9); }
  .btn:hover .btn-angle { transform: scale(1); }
}

/* Make sure z-index keeps card above overlay */
.hero-card { z-index: 120; }
.slider-wrapper::before { z-index: 50; }

/* Show when loaded (add .loaded to parent or toggle) */
.slider-wrapper.loaded .hero-card {
  opacity: 1;
  transform: translateY(0);
}

/* Title */
.hero-card__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  color: #fff;
}

/* 2x2 grid */
.hero-card__grid {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex-direction: column;
}

/* Each item */
.hero-card__item {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #161616;
  padding: 8px;
  border-radius: 8px;
  transition: transform 160ms ease, background 160ms ease;
  cursor: pointer;
}

/* hover focus states */
.hero-card__item:hover,
.hero-card__item:focus-within {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 1);
}

/* thumbnail image */
.hero-card__thumb {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  display: block;
  background: #111;
}

/* meta text */
.hero-card__meta {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  /* line-height: 1; */
}
.hero-card__name {  
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.hero-card__role {
  margin-top: 5px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

/* CTA wrapper */
.hero-card__cta {
  margin: 30px 20px 20px 20px;
  display: flex;
  justify-content: center;
}

/* Button - simple style, adapt to your theme */
/* ensure the button is positioned for absolute children */
.btn {
  position: absolute;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  color: white;
  overflow: visible; /* allow icons to sit outside the button box */
}
.btn-cta{
    position: relative !important;
    background: #262525;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 2px;
    width: 90%;
    text-align: center;
    justify-content: center;
    outline: 1px white solid; outline-offset: -5px; 
}
/* icon common styles */
.btn-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  display: inline-block;
  pointer-events: none;          /* icons do not block clicks */
  color: rgba(255,255,255,0.85); /* icon color */
  transition: transform 420ms cubic-bezier(.2,.9,.25,1), opacity 320ms ease;
  opacity: 1;
  transform-origin: center;
  will-change: transform, opacity;
}

/* corner placement */
/* tweak offsets (-12px) so icons sit outside the button box — adjust to taste */
.btn-icon.tl { top: -12px; left: -12px; }
.btn-icon.tr { top: -12px; right: -12px; }
.btn-icon.bl { bottom: -12px; left: -12px; }
.btn-icon.br { bottom: -12px; right: -12px; }

/* initial transforms: facing AWAY from button (outwards)
   and slightly pushed out from the button using translate */
.btn-icon.tl { transform: translate(-6px, -6px) rotate(-135deg) scale(1); }
.btn-icon.tr { transform: translate(6px, -6px) rotate(-45deg)  scale(1); }
.btn-icon.bl { transform: translate(-6px, 6px)  rotate(135deg)  scale(1); }
.btn-icon.br { transform: translate(6px, 6px)   rotate(45deg)   scale(1); }

/* Hover (or focus) state: icons move towards the button (translate toward center)
   and rotate to point INTO the button */
.btn:hover .btn-icon.tl,
.btn:focus .btn-icon.tl {
  transform: translate(6px, 6px) rotate(45deg) scale(1.05);
}
.btn:hover .btn-icon.tr,
.btn:focus .btn-icon.tr {
  transform: translate(-6px, 6px) rotate(135deg) scale(1.05);
}
.btn:hover .btn-icon.bl,
.btn:focus .btn-icon.bl {
  transform: translate(6px, -6px) rotate(-45deg) scale(1.05);
}
.btn:hover .btn-icon.br,
.btn:focus .btn-icon.br {
  transform: translate(-6px, -6px) rotate(-135deg) scale(1.05);
}

/* small bounce on hover end for polish (optional) */
.btn:hover .btn-icon,
.btn:focus .btn-icon {
  transition-timing-function: cubic-bezier(.15,.9,.25,1);
}

/* reduce icon visibility on very small screens */
@media (max-width: 420px) {
  .btn-icon { opacity: 0.75; transform: translate(0,0) scale(0.95); }
  .btn:hover .btn-icon { transform: translate(0,0) rotate(0) scale(1); }
}


/* Responsive adjustments */
@media (max-width: 880px) {
  .hero-card {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 20px;
    padding: 12px;
    background: white;
    z-index: 9999999999;
  }
  .hero-card__thumb {
    width: 60px;
    height: 44px;
  }
  .btn {
    position: absolute;
    right: 6px;
}
}
@media (max-width: 520px) {
  .hero-card__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-card__thumb {       
      width: 70px;
        height: 100px;
        object-fit: cover; }
  .hero-card__title { font-size: 13px; }
  .btn { padding: 12px 12px; font-size: 12px; }
}
 .btn {
    position: absolute;
    right: 0px !important; 
}

.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}
.text-white{
    color: black;
}

  .logo{
      position: absolute;
      top: 3%;
      left: 3%;
      color: white;
      z-index: 99999999;
      font-size: 44px;
  }
  .logo-img{
      height: 26px;
      filter: invert(100);
      margin-left: 4px;
  }
@media(max-width: 767px){
  .logo{
    font-size: 30px;
  }
  .logo-img{
    height: 22px;
  }
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
     position: absolute;
    top: 10%;
}
#imageGallery {
  height: 100vh;       /* the gallery takes full screen height */
  overflow-y: auto;    /* scroll inside gallery only */
  padding: 16px;
  scroll-behavior: smooth;
   scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none; 
}

#imageGallery img {
  opacity: 0;
   width: 14%;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
   break-inside: avoid;
  -webkit-column-break-inside: avoid;
  transform: translateY(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

#imageGallery img.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery img:hover {
  box-shadow: 20px 20px 40px rgba(0,0,0,0.35);
  filter: brightness(1.1);
  scale: 1.03;
}
/* .header{
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

#imageGallery::-webkit-scrollbar {
  display: none;
}
#imageGallery {
  scrollbar-width: none;
}
#imageGallery {
  -ms-overflow-style: none;
}
#imageGallery::-webkit-scrollbar {
  display: none;             /* Chrome/Safari */
}

/* Card wrapper */
#imageGallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 19.5%;               /* adjust as needed */
  margin-bottom: 16px;
}

/* Image (keep your existing hover zoom/shadow if you want) */
#imageGallery .gallery-item img {
  display: block;
  width: 93.5%;
  height: auto;
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
}
#imageGallery .gallery-item:hover img {
  transform: scale(1.04);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
}

/* Slide-up overlay */
.gallery-item__overlay {
 position: absolute;
  inset: 0;                     /* top/right/bottom/left: 0 */
  background: linear-gradient(0deg,
              rgba(0,0,0,0.85) 0%,
              rgba(0,0,0,0.40) 50%,
              rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
  border-radius: inherit;       /* match rounded corners */
  pointer-events: none; 
}

/* show on hover */
#imageGallery .gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
/* Title text */
.gallery-item__title {
  font: 600 15px/1.3 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .2px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 12px;
}
/* Centered button container */
.gallery-item__content {
  position: absolute;
  bottom: 5%; /* moves slightly above bottom initially */
  left: 50%;
  transform: translate(-50%, 30px); /* hidden down */
  text-align: center;
  opacity: 0;
  z-index: 9999999999;
  transition: transform .35s ease, opacity .35s ease;
}

/* Move to center on hover */
#imageGallery .gallery-item:hover .gallery-item__content {
  transform: translate(-50%, 0);
  opacity: 1;
 scale: 1.03;
}
/* Button */
.gallery-item__btn {
  align-self: flex-start;
  background: #e4e3e3;
  color: #000;
  border: none;
  padding: 10px 20px;
  margin-bottom: 2%;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.gallery-item__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,255,255,.25);
  background: #000000;
  color: #ecebeb;
}

@media(max-width: 767px){
  #imageGallery .gallery-item {
    width: 50%;
    justify-items: anchor-center;
}
.gallery {
    top: 8%;
}
#imageGallery{
  padding: 10px;
}
#imageGallery .gallery-item{
  margin-bottom: 0px;
}
#imageGallery .gallery-item img {
  width: 94%;
  margin: 6px;
}
.gallery-item__title{
  font-size: 14px;
}
.gallery-item__btn{
  font-size: 14px;
  padding: 8px 12px;
}
.gallery-item__content{
  width: 100%;
  min-width: 100%
}


}
.menu-btn-home{
  position: absolute;
  top: 3% !important;
  right: 2.2% !important;
  z-index: 99999999;
  background: none;
  border: none;
}
.menu-btn-home span{
  font-size: 32px;
  color: white;
}

.we-are-text{
  color: #FDFAF7; font-size: 32px; font-family: General Sans; font-weight: 400; word-wrap: break-word;
}
.we-are-text2{
  color: white; font-size: 120px; font-family: General Sans; font-weight: 500; line-height: 120px; word-wrap: break-word;
}
.banner-text{
  position: absolute;
  bottom: 2%;
  z-index: 9999999999999;
  left: 3%;
}
@media(max-width: 767px){

.menu-btn-home span{
  display: none;
}
.menu-btn-home {
    position: absolute;
    top: 1.5% !important;
    right: 2% !important;
    z-index: 99999999;
    background: none;
    border: none;
}
.menu-btn-home svg{
  width: 30px !important;
}
.banner-text {
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 20%;
    text-align: center;
    right: 0;
}
.we-are-text2 {
    color: white;
    font-size: 84px;
    font-family: General Sans;
    font-weight: 500;
    line-height: 80px;
    word-wrap: break-word;
}
.we-are-text{
  font-size: 26px;
}
}