* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Funnel Display', sans-serif;
}
body {
  background: black;
  overflow-x: hidden;
  overflow-y: auto;
}
a {
  color: white;
  text-decoration: none;
}
.chat-link {
  text-decoration: underline;
}
  
.ball {
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #000000 40%, #000000 90%);
   position: fixed; /* instead of fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
  z-index: 0;
  overflow: hidden; /* ✅ crop image inside */
  display: flex;     /* optional: center image */
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 20px #0b0b0b,
    0 0 40px #000000,
    0 0 60px #000000;
  transition: box-shadow 0.3s ease;
  margin-top: 0px;
  opacity: 1; /* Just the base state, no transition here */ 
}
@media (max-width: 768px) {
  .ball {
   position: absolute;
   margin-top: 150px;
   width: 750px;
  height: 750px;
  z-index: 0;
  }
}
.ball-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.3;
  opacity: 1;
}

  /* Navbar Wrapper */
  .navbar {
  background: transparent;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translateY(0); /* start in place */
  transition: transform 0.3s ease; /* smooth animation */
}

.navbar.scrolled::after {
  width: 100%; /* ✅ Animate full width when scrolled */
}
  
  /* Navbar Inner Container */
  .navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0 clamp(5px, 1vw, 40px); /* ✅ narrower side padding */
  }
  
  /* Menus */
  .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    transition: gap 0.3s ease, margin 0.3s ease;
  }
  
  .navbar__left,
  .navbar__right {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .navbar__right {
    justify-content: flex-end;
  }
  .navbar__contact {
    background: rgb(92, 92, 92);
    padding: 20px 30px;
    border-radius: 6px;
  }

  .navbar__center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 30px;
    /*gap: clamp(2px, 4vw, 100px);*/
    padding: 0;
  }
  .navbar__item {
    font-size: clamp(0.8rem, 1.5vw, 2rem);
  }
  #navbar__logo {
    /*font-size: clamp(2rem, 5vw, 8rem);*/
    font-size:40px;
    font-weight: bolder;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    transition: font-size 0.3s ease;
  }
  .logo {
    transform: scale(0.3); /* Shrinks image to 80% size */
    width:20px;
    height:auto;
  }

  
  .navbar__links {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /*
    min-width: clamp(60px, 8vw, 140px);
    height: clamp(30px, 5vw, 50px);
    */
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
    overflow: visible;
    margin-top: -50px;
    
  }

/* CIRCULAR HAMBURBER BUTTON */

.navbar__contact {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .navbar__contact {
    transform: scale(0.7); 
  }
}

.navbar__contact:hover {
  background: #5a5a5a;
}

/* Two lines only: top and bottom */
.navbar__contact::before,
.navbar__contact::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: rgb(0, 0, 0);
  transition: 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__contact::before {
  top: 30px;
}

.navbar__contact::after {
  bottom: 30px;
}
.navbar__email {
  width: 290px;                /* ✅ Fixed width */
  height: 65px;                /* ✅ Fixed height */
  padding: 0 1.5rem;           /* ✅ Padding inside */
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  background-color: rgb(39, 39, 39);
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between; /* or center/left depending on layout */
  gap: 0rem;
  margin-right: 0.5rem;
  position: relative;
  overflow: hidden; /* ensure the circle stays inside */
  z-index: 1;
}

.navbar__inquiry {
  width: 250px;                /* ✅ Fixed width */
  height: 65px;                /* ✅ Fixed height */
  padding: 0 1.5rem;           /* ✅ Padding inside */
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid white;
  border-radius: 999px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between; /* or center/left depending on layout */
  gap: 0rem;
  margin-right: 0.5rem;
  position: relative;
  overflow: hidden; /* ensure the circle stays inside */
  z-index: 1;
}
/*fades out these buttons*/
.navbar__email,
.navbar__inquiry {
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

.navbar__inquiry::before,
.navbar__email::before {
  content: "";
  position: absolute;
  width: 100px; /* smaller than 200% */
  height: 100px;
  top: 50%;
  left: 50%;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--circle-scale, 0));
  z-index: -1;
  transition: transform 0.7s ease; /* fallback */
  color: black;
}

.inquiry-arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
  background-color: #54f3a4;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  color: rgb(0, 0, 0);
}

.navbar__inquiry:hover .inquiry-arrow {
  background-color: white;
}

.navbar__inquiry:hover .arrow-icon {
  color: black;
  transform: translate(2px, -2px);
}

  
  /* ✅ The span inside */
  .link-text {
    position: relative;
    display: inline-block;
  }
  
  .link-text::after {
    content: "";
    position: absolute;
    bottom: -7px; /* Adjust how close the line is to text */
    left: 0;
    height: 1px;
    width: 100%;
    background: rgb(255, 255, 255);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  /* ✅ On hover of the whole link, animate the span underline */
  .navbar__links:hover .link-text::after {
    transform: scaleX(1);
  }
  .link-text::after {
    transform-origin: var(--origin, left);
  }
  
  .navbar__links:hover {
    color: #ffffff;
  }
  
  #navbar__logo:hover {
    opacity: 0.5;
  }

  /* Lock fixed gap on wide screens */
  @media (min-width: 2200px) {
    .navbar__menu--left {
      gap: 150px;
      margin-left: 40px;
    }
  
    .navbar__menu--right {
      gap: 150px;
      margin-right: 40px;
    }
  }
  
  /* MOBILE RESPONSIVE */
  @media screen and (max-width: 960px) {
    .navbar__container {
      justify-content: space-between;
      padding: 0 20px;
    }
    .navbar__inquiry,
  .navbar__email {
    display: none;
  }
   .logo {
    transform: scale(0.2); /* Shrinks image to 80% size */
    width:20px;
    height:auto;
  }
  
    .navbar__menu--left,
    .navbar__menu--right {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #000;
      text-align: center;
      padding: 20px 0;
      gap: 20px;
      z-index: 998; /* ✅ make sure menu is above other elements */
    }
  
    .navbar__menu--left.active,
    .navbar__menu--right.active {
      display: flex; /* ✅ Show menu when active */
    }
  
    
  }







.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ⬅️ align contents to the left */
  justify-content: left;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  z-index: 10000;
  padding-left: 1.5rem; /* ⬅️ spacing from the left edge */
  overflow: hidden; /* Make sure video doesn't spill */
}

.dropdown-menu.open {
  transform: translateY(0);
}

.dropdown-links {
  padding-bottom: 1rem;   /* or 0.75rem for tighter */
  margin: 0;
  line-height: 0.5;
}

.dropdown-links li {
  margin: 0rem 0;
  font-size: clamp(4rem, 6vw, 9rem);
  padding-top: 4rem;
}
@media screen and (max-width: 960px){
.dropdown-links li {
  margin: 0rem 0;
  font-size: clamp(4rem, 6vw, 9rem);
  padding-top: 4rem;
  line-height: 0.1;
}

}

.dropdown-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.dropdown-links a:hover {
  color: #54f3a4;
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}


.dropdown-copyright {
   position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
  opacity: 1; /* Ensure this is present */
}

.dropdown-email {
   position: absolute;
  top: 2rem;
  right: 6rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
  opacity: 1; /* Ensure this is present */
}

.dropdown-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind all dropdown content */
  overflow: hidden;
}

.dropdown-video-bg video {
  width: 100%;
  height: 200%;
  object-fit: cover;
  opacity: 1; /* Optional: make it subtle */
  pointer-events: none;
  z-index: -1;
}

.dropdown-video-bg,
.dropdown-video-bg video {
  pointer-events: none;
}

.dropdown-content {
  position: relative;
  z-index: 1; /* ✅ brings all dropdown content above video */
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100vh;
  will-change: transform, opacity;
  transform: translateZ(0);
}





  
  /* Main Content CSS */
  :root {
    --corner-opacity: 0.15;
  }
  
.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, #54f3a4 4vw, transparent 35vw),
    radial-gradient(circle at top right, #54f3a4 4vw, transparent 35vw);
  opacity: var(--corner-opacity);
  transition: opacity 0.2s ease;
  z-index: 0;
}

  .main {
    height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative; /* Needed for ::before positioning */
    z-index: 0;
    position: relative;
    
  }
  
  .main-inner {
    width: 100%;
    height: 100%;
    padding-inline: clamp(2rem, 8vw, 10rem); /* Side margins */
    padding-block: 5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: 0px;
  }
  
  .section-main {
    scale: 1.1;
    margin-top: 85px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section1,
  .section2 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    margin: 0px;
  }
  .section2 {
  perspective: 1000px;
}

  
  .header1 {
    margin-left: clamp(-105rem, -39vw, -10rem);
    margin-bottom: clamp(8rem, 3vw, -1rem);
  }
  
  .header2 {
    display: flex; /* make Visual and Designs side-by-side */
    align-items: center;
    gap: clamp(1rem, calc((100vw - 1600px) * 0.5 + 1rem), 7rem);
  }
  
  /* Separate font sizes */
  .header1 h1 {
    margin: 0;
    font-size: clamp(2rem, 10vw, 15rem); /* Customize as needed */
    font-family: 'Funnel Display';
    font-weight: 600;
  }
  .title1 {
    position: absolute;
    margin-left: 20vw; /* 40% of the viewport width */
    font-family: 'Funnel Display';
    font-size: 11px;
    color:#e9e9e9;
    text-align: left;
  }
  .title2 {
    position: absolute;
    margin-left: 50vw; /* 40% of the viewport width */
    font-family: 'Funnel Display';
    font-size: 11px;
    color:#e9e9e9;
    text-align: left;
  }
  
  .visual h1 {
    
    font-size: clamp(2rem, 7vw, 15rem);
    font-family: 'Vampiro One';
    font-weight: 100;
    color: #54f3a4;
  }
.design h1 {
  margin: 0;
  font-size: clamp(5rem, 8vw, 12rem);
  font-family: 'Funnel Display';
  font-weight: 600;
}
@media (max-width: 768px) {
  .main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at top center, #54f3a4 4vw, transparent 45vw);
  opacity: var(--corner-opacity);
  transition: opacity 0.2s ease;
  z-index: 0;
}
  .design h1 {
    font-size: clamp(4rem, 14vw, 10rem);
  }
}
  .effect-container {
    position: absolute;
    margin-left: 70vh; 
  }
.mcvdesign {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  display: inline-block;
  will-change: transform;
}
  
  .main__content h2 {
    font-size: 4rem;
    margin-top: 10px;
    background-size: 100%;
    color: white;
    font-family: MuseoModerno;
  }
  
  .main__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
  }




.main-text-wrapper {
  position: absolute; /* Anchor to .main */
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none; /* So it doesn't interfere */
}

.main-text {
  width: 400px;
  height: 65px;
  padding: 0 1.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  border: none;
  color: white;
  cursor: default;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0rem;
  pointer-events: auto; /* Allow clicks inside */
  margin-bottom: 3rem;
}
.home-main-btn {
  width: 250px;                /* ✅ Fixed width */
  height: 65px;                /* ✅ Fixed height */
  padding: 0 1.5rem;           /* ✅ Padding inside */
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid white;
  border-radius: 999px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between; /* or center/left depending on layout */
  gap: 0rem;
  margin-right: 0.5rem;
  position: relative;
  overflow: hidden; /* ensure the circle stays inside */
  z-index: 1;
  margin-left: 1.2rem;
}



.social-button-container {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
  opacity: 1; /* Ensure this is present */
}
@media screen and (max-width: 960px) {
    .social-button-container{
      visibility: hidden;
    }
  }
.bottom-btn {
  background-color: rgb(39, 39, 39);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-size: 1.3rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.bottom-btn:hover {
  background-color: #000000;
  color: #ffffff;
}










  .text-group-outer {
    display: flex;
    flex-direction: column;
    align-items: center; /* ✅ change from flex-start */
    gap: clamp(0rem, 0vw, 2rem); /* reduce vertical spacing between rows */
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding-inline: clamp(0.5rem, 2vw, 2rem);
    margin-top: clamp(0.5rem, 3vh, 2rem);
  }
  
  .headline-wrapper,
  .subhead-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    min-width: 0;
  }
  
  .box-top {
    display: flex;
    justify-content: center; /* ✅ center headline */
    align-items: center;
    width: 100%;
  }
  
  .box-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center; /* ✅ center subhead */
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 6rem);
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    
  }
  
  .headertxt_1,
  .headertxt_2,
  .headertxt_3 {
    margin: 0;
    line-height: 0.9; /* tighter than default */
    font-family: 'MuseoModerno', sans-serif;
    font-weight: 500;
    color: white;
    font-size: clamp(4rem, 9vw, 13rem); /* ✅ tighter upper bound */
    white-space: nowrap;
  }
  .headertxt_2 {
    font-family: 'Smooch', cursive;
    color: #54f3a4;

  }
  
  
  .main__content h2 {
    font-size: 4rem;
    margin-top: 10px;
    background-size: 100%;
    color: white;
    font-family: MuseoModerno;
  }
  
  .main__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
  }
  
  .main__btn {
    font-size: 1rem;
    background-image: linear-gradient(to top, #000000 0%, #000000 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    width: 180px;
    top: 14rem;
  }
  
  .main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
  }
  
  .main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #464646;
    transition: all 0.35s;
    border-radius: 50px;
  }
  
  .main__btn:hover {
    color: #fff;
  }
  
  .main__btn:hover:after {
    width: 100%;
  }
  
  .main__img--container {
    text-align: center;
  }
  
  #main__img {
    width: clamp(300px, 45vw, 1200px);
    height: auto;
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 1s ease, transform 1s ease;
  }
  #main__img.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .main {
      height: 120vh;
    }
    .main__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      height: 90vh;
    }
     
  .section-main {
    scale: 1.1;
    margin-top: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
    
    .main__content {
      text-align: center;
      margin-bottom: 4rem;
    }
  
    .main__content h1 {
      font-size: 2.5rem;
      margin-top: 2rem;
    }
  
    .main__content h2 {
      font-size: 3rem;
    }
  
    .main__content p {
      margin-top: 1rem;
      font-size: 1.5rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .main__content h1 {
      font-size: 2rem;
      margin-top: 3rem;
    }
  
    .main__content h2 {
      font-size: 2rem;
    }
  
    .main__content p {
      margin-top: 2rem;
      font-size: 1.5rem;
    }
  
    .main__btn {
      padding: 12px 36px;
      margin: 2.5rem 0;
    }
  }
  
  /* Services Section */
  .large-text-container {
  width: 100%;
  max-width: 95vw;
  padding: 2rem;
  position: relative;
  margin-top: 5rem;
  margin-bottom: 2rem;
}
 

.large-text h1 {
  font-size: clamp(3.5rem, 7.5vw, 12rem);
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  margin-bottom: clamp(2.5rem, 3vw, 5rem);
  line-height: 0.9; /* Tighter spacing than default */
  
}
.highlight {
  color: #54f3a4;
}
.large-text p {
  font-size: clamp(1.8rem, 3.5vw, 4.5rem);
  font-weight: 200;
  color: #ffffff;
  text-align: left;
  margin-top: 1rem;
  line-height: 1.1;
  color:#dddddd;
}
.large-text2 p {
  visibility: hidden;
}

.services {
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  padding: 4vw 0;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 98vw;
  max-width: 100%;
  justify-content: space-between;
  padding: 0 clamp(1rem, 1vw, 6vw);
  z-index: 99;
  box-sizing: border-box;
}

/* ✅ Maintain fixed aspect ratio using aspect-ratio */
.services-card {
   flex: 1 1 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid #fff;
  color: white;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 600;
  border-radius: 1rem;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .services-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .divider {
  width: 75vw;
  border: none;
  border-top: 2px solid rgb(68, 68, 68);
  margin: 0 auto; /* ✅ This centers it */
  margin-bottom: 3rem;
}
  .large-text-container {
  width: 100%;
  max-width: 95vw;
  padding: 2rem;
  position: relative;
  margin-top: 0rem;
  margin-bottom: 2rem;
}
.large-text2 p {
  font-size: clamp(1.3rem, 4.5vw, 4.5rem);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1;
  visibility:visible;
}
 
}

/* Typography that scales */
.card-title {
  font-size: clamp(2.2rem, 2.5vw, 5rem);
  margin-bottom: 2rem;
  color: #54f3a4;
  font-weight: 200;
}

.card-text {
  font-size: clamp(1rem, 1.2vw, 2rem);
  color: #dddddd;
  margin-bottom: 2rem;
  font-weight: 200;
}

.card-text2 {
  font-size: clamp(1.2rem, 1.3vw, 2.0rem);
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.card-divider {
  border: none;
  height: 2px;
  background: #ffffff30;
  margin: 2rem 0;
}

.card-btn {
  padding: clamp(0.5rem, 0.8vw, 1rem) clamp(1rem, 2vw, 2rem);
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  font-weight: 600;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 10vw;
}

.card-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.button-design {
  width: 250px;                /* ✅ Fixed width */
  height: 65px;                /* ✅ Fixed height */
  padding: 0 1.5rem;           /* ✅ Padding inside */
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid white;
  border-radius: 999px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between; /* or center/left depending on layout */
  gap: 0rem;
  margin-right: 0.5rem;
  position: relative;
  overflow: hidden; /* ensure the circle stays inside */
  z-index: 1;
}

.button-design2 {
  width: 160px;                /* ✅ Fixed width */
  height: 50px;                /* ✅ Fixed height */
  padding: 0 1rem;           /* ✅ Padding inside */
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid white;
  border-radius: 999px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between; /* or center/left depending on layout */
  gap: 0rem;
  margin-right: 0.2rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden; /* ensure the circle stays inside */
  z-index: 1;
  visibility: hidden;
}


.inquiry-arrow2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
  background-color: #54f3a4;
}
/* ✅ Stack on small screens */
@media (max-width: 950px) {
  .services-container {
    justify-content: center;
  }
  
  .services-card {
    flex: 1 1 100%;
    max-width: 100%;
    aspect-ratio: auto; /* 🔧 Let content define height */
    height: auto;       /* Ensure card can grow */
    min-height: 350px;  /* Optional: set a floor to avoid too-short cards */
  }

 

  .card-text {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }

  .card-text2 {
    font-size: clamp(1.2rem, 4.1vw, 2.2rem);
  }

  .card-btn {
    font-size: clamp(1rem, 4vw, 1.6rem);
    padding: clamp(0.75rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 2.5rem);
  }
  .button-design2 {
  width: 160px;                /* ✅ Fixed width */
  height: 50px;                /* ✅ Fixed height */
  padding: 0 1rem;           /* ✅ Padding inside */
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid white;
  border-radius: 999px;
  background-color: black;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between; /* or center/left depending on layout */
  gap: 0rem;
  margin-right: 0.2rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden; /* ensure the circle stays inside */
  z-index: 1;
  visibility: visible;
}
}

/*
.services-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
} */
.services-title {
  color: white;
  display: flex;
  justify-items: left;
  align-items: flex-start; /* Start at top */
  width: 100%;
  padding-left: 2rem;
  font-size: 3rem;
}
#image-scroll {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

.image-scroll-container {
  height: 100vh;
  width: max-content;
  display: flex;
  align-items: center; /* ✅ ensures vertical centering */
  justify-content: flex-start;
}

.image-track {
  display: flex;
  align-items: center; /* ✅ makes cards center vertically */
  height: 100%;
  gap: 2rem;
  padding: 2rem;
  box-sizing: border-box;
  width: max-content;
}

.image-card {
  flex: 0 0 auto;
  width: 1500px;
  height: 100%;
  background: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
   position: relative;
    overflow: hidden;
}

.image-card video,
.image-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-card video {
  scale: 1;
}
.ot-video {
  scale: 0.9;
  position: absolute;
  bottom: -8rem;
  right: -8rem;
}
/* Hide mobile video by default */
.video-mobile {
  display: none;
}

/* Show mobile video and hide desktop video on small screens */
@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }
  .video-mobile {
    display: block;
  }
}

.card-label {
  position: absolute;
  top: 1rem; /* ✅ Minimum safe offset from top */
  right: 1rem;
  transform: translateY(-5rem); /* Visually closer to top */
  background-color: rgba(255, 255, 255, 0);
  color: white;
  padding: 1rem 2rem;
  font-size: 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid white;

  pointer-events: auto;
  transition: all 0.3s ease;

  z-index: 10; /* ✅ Higher than image and video */
  transform: translateZ(0); /* ✅ Force compositing */
  will-change: transform;
}


.label-group.bottom-left {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.card-label.dark-label {
  position: static; /* Don't override .card-label absolute */
  background-color: black;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  border-radius: 1rem;
  font-weight: 500;
  text-transform: none;
  border: none;
}
@media (max-width: 768px) {
  .card-label.dark-label {
    font-size: 12px !important;
    padding: 0.6rem 1rem !important;
    
  }
}

.card-label:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.scroll-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.scroll-intro-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80rem;
  width: 100%;
  padding: 0 2rem;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 0;
}

@media (max-width: 768px) {
  .scroll-intro {
    height: auto !important;
    padding: 2rem 0 !important;
  }

  .scroll-intro-title {
    position: static !important;
    transform: none !important;
    padding: 0 !important;
    text-align: center;
    font-size: clamp(2rem, 6vw, 4rem);
  }

   .image-scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
  }

  .image-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    gap: 2rem;
    padding: 1rem;
  }

  #image-scroll {
    height: auto;
    overflow: visible;
  }
  .image-card {
    width: 90vw;  /* Smaller width for mobile screens */
    height: 60vh; /* Adjust height proportionally */
  }

  .card-label {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
  }

  .card-label.dark-label {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .scroll-intro-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .image-track {
    gap: 1rem;
    padding: 1rem;
  }

  .ot-video {
    bottom: -4rem;
    right: -4rem;
    scale: 0.85;
  }
}
/*products*/


.footer {
  background-color: #000000;         /* Dark footer background */
  color: #fff;                    /* White text */
  padding: 5rem;           /* Vertical and horizontal spacing */
  text-align: left;             /* Center text */
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem;
  }

}
.footer-container {
  max-width: 100%;
  margin: 0 auto;                 /* Center the container */
  padding: 0 1rem;                /* Optional inner padding */
}

.footer-header h2 {
  font-size: clamp(2.8rem, 6vw, 7rem);  /* Min 2.5rem on small screens, max 7rem */
  margin-bottom: 4rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-header p {
  font-size: clamp(1.5rem, 3vw, 2rem);    /* Min 1rem on mobile, max 2rem on desktop */
  margin-bottom: 4rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.5px;
}








  /* Footer CSS */
  .footer__container {
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #footer__logo {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
  }
  
  .footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
  }
  
  .footer__link--wrapper {
    display: flex;
  }
  
  .footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
  }
  
  .footer__link--items h2 {
    margin-bottom: 16px;
  }
  
  .footer__link--items > h2 {
    color: #fff;
  }
  
  .footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }
  
  .footer__link--items a:hover {
    color: #e9e9e9;
    transition: 0.3s ease-out;
  }
  
  /* Social Icons */
  .social__icon--link {
    color: #fff;
    font-size: 24px;
  }
  
  .social__media {
    max-width: 1000px;
    width: 100%;
  }
  
  .social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
  }
  
  .social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
  }
  
  .social__logo {
    color: #fff;
    justify-self: start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .website__rights {
    color: #fff;
  }
  
  @media screen and (max-width: 820px) {
    .footer__links {
      padding-top: 2rem;
    }
  
    #footer__logo {
      margin-bottom: 2rem;
    }
  
    .website__rights {
      margin-bottom: 2rem;
    }
  
    .footer__link--wrapper {
      flex-direction: column;
    }
  
    .social__media--wrap {
      flex-direction: column;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer__link--items {
      margin: 0;
      padding: 10px;
      width: 100%;
    }
  }


