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

html {
  scroll-behavior: smooth;
}


html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  /* overflow: hidden; */
  background-color: #fff;
  color: white;
}

body.no-scroll {
  overflow: hidden;
}

/* .main-content{height: 100vh;} */

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.counter {
  font-size: 5rem;
  font-weight: bolder;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
  background-color: #fff;
}

/* Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.1) rotate(-80deg); /* GSAP animates to scale(1), rotate(0) */
  transform-origin: center;
  opacity: 0;
  z-index: 0;
}

/* Text overlay */
.overlay-content {
  position: relative;
  z-index: 1;
  /* text-align: center; */
  top: 15%;
  left: 6%;
  transform: translateY(-50%);
  color: white;
}

.main-title {
  font-size: 3rem;
  opacity: 0;
  transform: translateY(40px);
}

.subtitle {
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
}


.main-content {
  background-color:#171717;
  min-height: 100dvh; /* 👈 Better than 100vh */
  width: 100vw;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

video::-webkit-media-controls {
  display: none !important;
}


.bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #171717;
  /* border-top-left-radius: 48px;
  border-top-right-radius: 48px; */
  opacity: 0;
  transform: translateY(50px);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.ball-container {
  position: absolute;
  top: -50px; /* aligns with curve */
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* Remove background */
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  /* Optional: add border if you want an outline around ball */
  /* border: 4px solid white; */
}

.ball-video {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}





/* second section */

.image-grid-section {
  position: relative;
  height: 100vh;
  top: -100px;
  background: #171717;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.center-text {
  font-size: 240px;
  font-weight: 800;
  color: #c8c8c8;
  z-index: 2;
  position: relative;
  pointer-events: none;
  text-shadow: #1a1a1a 1px 0 40px;
  position: relative;
  top: 12%;
}

.image-grid {
  position: relative;
  /* width: 600px; */
  /* height: 600px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* .image-grid img {
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
} */

.image-grid img {
  position: absolute;
  /* width: 120px; */
  transition: transform 0.2s ease;
}


.i1 { top: 50%; left: 50%; }
.i2 { top: 50%; right: 50%; }
.i3 { bottom: 50%; left: 50%; }
.i4 { bottom: 50%; right: 50%; }
.i5 { top: 78%; left: 50%;}
.i6 { bottom: 13%; right: 100%; }




/* third section */

.quality-section {
  position: relative;
  background-color: #171717;
  color: white;
  text-align: center;
  padding: 100px 20px 0px;
  font-family: 'Helvetica Neue', sans-serif;
  z-index: 2;
  /* border-bottom: 1px solid #999; */
}

.content-wrapper {
  max-width: 1000px;
  margin: auto;
}

.subheading {
  font-size: 40px;
  color: #909090;
  /* line-height: 1.5; */
  margin-bottom: 10px;
  font-weight: bold;
}

.main-heading {
  font-size: 120px;
  font-weight: bold;
  /* margin: 0 0 60px; */
  /* text-transform: lowercase; */
  color: #d0d0d0;
  margin-top: -25px;
}

.image-container img {
  max-width: 100%;
  width: 700px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}


/* fouth section */

/* .hover-grid {
  position: relative;
  display: flex;
  background: #fff;
  border-top: 1px solid #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
}

.col {
  width: 50%;
  padding: 60px 30px;
  position: relative;
  border-right: 1px solid #2e2e2e;
  overflow: hidden;
  transition: all 0.3s ease;
}

.col:last-child {
  border-right: none;
}

.info {
  text-align: center;
  color: #aaa;
  margin-bottom: 30px;
}

.info .number {
  font-size: 18px;
  margin-bottom: 10px;
}

.info .desc {
  font-size: 14px;
  max-width: 300px;
  margin: 0 auto;
  color: #ccc;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  transition: transform 0.6s ease;
  transform-origin: center center;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.text-overlay span {
  font-size: 14px;
  color: #ccc;
}

.text-overlay h2 {
  font-size: 28px;
  margin: 5px 0;
}

.text-overlay p {
  font-size: 14px;
  color: #aaa;
}


.hover-grid:hover .image-container img,
.hover-grid:hover .text-overlay {
  transform: scale(0.7);
  opacity: 0.5;
}

.col:hover .image-container img,
.col:hover .text-overlay {
  transform: scale(1.05);
  opacity: 1;
} */




.hover-grid {
  position: relative;
  display: flex;
  height: 120vh;
  background-color: #171717;
  color: #fff;
  font-family: sans-serif;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Center border between columns */
.col.left {
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.info {
  text-align: center;
  margin-bottom: 30px;
}

.number {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.desc {
  font-size: 16px;
  color: #ccc;
  line-height: 1.4;
}

.image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0.92); /* Zoomed-out default */
  transition: transform 0.6s ease;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92); /* Zoomed-out default */
  text-align: center;
  transition: transform 0.6s ease;
}

.text-overlay span {
  font-size: 14px;
  display: block;
  color: #aaa;
}

.text-overlay h2 {
  font-size: 40px;
  margin: 10px 0;
  font-weight: bold;
}

.text-overlay p {
  font-size: 16px;
  color: #999;
}

/* 🟢 Hover Logic - Zoom IN only the hovered column */
.hover-grid .col:hover .image-container {
  transform: scale(1);
}

.hover-grid .col:hover .text-overlay {
  transform: translate(-50%, -50%) scale(1);
}


.col.left {
  border-right: 1px solid rgb(221 221 221); /* Mid vertical border */
  border-bottom: 1px solid rgb(221 221 221); /* Bottom horizontal border */
}
.col.right {
  border-bottom: 1px solid rgb(221 221 221); /* Bottom horizontal border */
}




/* fivth section number */


/* .number-section {
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.big-number {
  font-size: 20vw;
  font-weight: bold;
  color: #222;
  line-height: 1;
  font-family: 'Helvetica Neue', sans-serif;
  transform: scale(1) rotate(0deg);
} */


.number-section {
  height: 100vh;
  background: #171717;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.big-number {
  font-size: 12vw;
  color: #fff;
  font-weight: bold;
  transform: scale(1) rotate(0deg);
  transition: transform 0.3s ease;
}



/* slider */

.slider-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  gap: 4vw;
  transform-style: preserve-3d;
  will-change: transform;
}

.slide {
  width: 400px;
  height: 500px;
  background: #fff;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}


/* carosiel */

.project_carousel {
  padding: 60px 0;
  background: #111;
}

.my-3d-carousel .owl-item {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.my-3d-carousel .item {
  transform: scale(0.8) rotateX(6deg) rotateY(-10deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  perspective: 1200px;
  opacity: 0.6;
  transform-style: preserve-3d;
}

.my-3d-carousel .owl-item.center .item {
  transform: scale(1.1) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  opacity: 1;
  z-index: 3;
}


.my-3d-carousel .item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.my-3d-carousel .item:hover {
  transform: scale(1.05) rotateZ(-5deg);
  z-index: 2;
}

.owl-theme .owl-nav.disabled+.owl-dots{display: none;}

.project_carousel{background-color: #171717;position: relative;height: 100vh;vertical-align: middle;}
.my-3d-carousel{position: absolute;top: 30%;}

/* ---------------------------------------------- */
.carosuel_text{background-color: #171717;position: relative;}
.carosuel_text p{font-size: 35px;color: white;    width: 33%;
  margin: auto;padding-top: 140px;}

.carosuel_text span{color:  #ff992a;font-size: 16px;line-height: 50px;}
.cccc{background-color: #171717;overflow: hidden;margin-top: -20%;position: relative;}

#carouselWrapper2 {
  width: 115%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  perspective: 8000px;
  position: relative;
  padding: 4rem 0;
  background: #171717;
  scroll-behavior: smooth;
  transform: rotate(5deg);
  margin-left: -7%;
}

#carouselTrack2 {
  display: flex;
  gap: 40px;
  will-change: transform;
  cursor: grab;
  user-select: none;
  pointer-events: auto;
  transform-style: preserve-3d;
  will-change: transform;
  /* transform: translateZ(845px) rotateZ(6deg) rotateY(-161.7deg); */
}

.carouselSlide2 {
  flex: 0 0 auto;
  width: 33.5rem;
  height: 28.5rem;
  pointer-events: none;
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1rem;
  background: #111;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.carouselSlide2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  pointer-events: none;
}

#carouselTrack2 .carouselSlide2 {
  transform-style: preserve-3d;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.poppr-slide {
  transform: translateZ(845px) rotateZ(6deg) rotateY(-184.85deg);
}

#popprCarouselTrack {
  display: flex;
  gap: 40px;
  will-change: transform;
  cursor: grab;
  user-select: none;
  pointer-events: auto;
  margin-top: 2.5rem;
  padding-bottom: 6rem;
  justify-content: center;
  perspective: 2000px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.poppr-slide {
  flex: 0 0 auto;
  width: 33.5rem;
  height: 28.5rem;
  padding: 1.75rem;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
  pointer-events: none;
}


.image-hover-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
}

.image-hover-box img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.hover-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Allow hover to pass through */
}

.image-hover-box:hover .hover-text {
  opacity: 1;
  pointer-events: auto;
}




.loader img{width: 10%;}




/* header */


/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 100;
  opacity: 1;             /* fade in after loader */
  transform: translateY(-12px);
  pointer-events: none;   /* enabled after fade in */
}

.site-header .logo img {
  /* height: 36px; */
  width: 10%;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.menu-toggle { pointer-events: auto; 
  /* width:44px; height:44px;  */
  padding: 40px;
  border:0; background:#ff992a; cursor:pointer; position:relative;border-radius: 50px; }
.menu-toggle .bar { position:absolute; left:20px; right:10px; height:2px; background:#fff; transform-origin:50% 50%; width: 50%;}
.menu-toggle .b1 { top:30px; }
.menu-toggle .b2 { top:37px; }
.menu-toggle .b3 { top:45px; }
.menu-toggle.is-open .b1 { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .b2 { opacity: 0; }
.menu-toggle.is-open .b3 { transform: translateY(-7px) rotate(-45deg); }

/* subtle glass on light/dark video */
.site-header::before{
  content:""; position:absolute; inset:0;
  backdrop-filter: blur(0px);
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0));
  z-index:-1; border-radius: 0 0 16px 16px;
}

/* ===== Menu Panel ===== */
.menu-overlay{
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; z-index: 98;
}

.menu-panel{
  position: fixed; top: 0; 
  /* right: 0;  */
  height: 100vh; 
  /* width: clamp(300px, 35vw, 520px); */
  width: 55%;
  background: #0f0f0f; color: #fff; z-index: 99;
  transform: translateX(100%);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

.menu-inner{ padding: 96px 40px 40px; display: flex; flex-direction: column; height: 100%; }
.menu-links{ list-style: none; margin: 0 0 32px; padding: 0; }
.menu-links li{ margin: 0 0 14px; }
.menu-links a{
  color: #ddd; text-decoration: none; font-size: clamp(30px, 3vw, 50px);
  letter-spacing:.5px; transition: color .2s ease;
}
.menu-links a:hover{ color: #fff; }

.menu-meta{ margin-top: auto; color: #aaa; }
.menu-cta{
  display:inline-block; margin-top: 14px; padding: 10px 16px; border:1px solid #444; border-radius: 999px;
  color:#fff; text-decoration:none; transition: background .2s ease, border-color .2s ease;
}
.menu-cta:hover{ background:#1b1b1b; border-color:#666; }

/* Lock scroll when menu open */
body.menu-open { overflow: hidden; }

/* Responsive tweak */
@media (max-width: 640px){
  .site-header{ padding: 0 14px; }
  .menu-panel{ width: min(92vw, 420px); }
}



/* footer */

.footer_container{display: flex;justify-content: space-between;align-items: center;}
.footer{background-color: #191919;padding: 70px 0px;position: relative;}
.footer .middle_footer {width: 20%;margin: auto;}
.footer .middle_footer img{width: -webkit-fill-available;padding: 60px;}
.footer .container{width: 1400px;margin: auto;}
.footer .left_footer, .middle_footer, .right_footer{width: 33.3%;}
.footer .left_footer h3{font-size: 52px;line-height: 60px;}
.footer .right_footer{text-align: right;}
.footer .right_footer h3{font-size: 30px;font-weight: 300;    line-height: 42px;}
.footer .right_footer h4{font-size: 22px;font-weight: 400;    line-height: 42px;}
.footer .right_footer p{padding-bottom: 20px;color: #ff992a;}
.footer .left_footer p{padding-bottom: 20px;color: #ff992a;}

.bottom_footer .container{width: 1400px;margin: auto;}
.bottom_footer{background-color: #191919;position: relative;}
.footer_nav{display: flex;gap: 15px;}
.menu_and_social{display: flex;align-items: center;justify-content: space-between;border-top: 1px solid #666;padding: 30px 0;}
.menu_and_social .footer_menu a{color: white;
  text-decoration: none;font-size: 15px;}
.footer_social{display: flex;align-items: center;gap: 15px;font-size: 18px;}