* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;

}

:root {
  --gradient: linear-gradient(90deg, #3db6d1, #79bf8e);
  --main1: #3db6d1;
  --main2: #79bf8e;
  --dark-bg: #000;
}

/* DISPLAY CURSOR*/

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}


/**** WE SERVE ****/

/* BODY */

body {
  background-color: black;
  color: #fff;
  overflow-x: hidden;
  cursor: none; /* hide default cursor */
}
html {
  scroll-behavior: smooth;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #3db6d1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.2s, height 0.2s, background 0.3s;
  z-index: 9999;
  backdrop-filter: blur(2px);
}




/* TOP HEADER */
.top-header {
  width: 100%;
  background: #2d2d2d; /* top bar color */
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  height: 70px;
}

.top-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-header .logo img {
  height: 60px;
  width: auto;
  
}





/* NAVBAR */
.navbar {
  
  width: 100%;
  position: fixed;
  top: 60px; /* height of top-header */
  left: 0;
  background: black;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 30px;
}

.navbar .container {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 30px;
  background-color:black ;
  height: 100px;
}

/*  Logo */
.logo {
  font-size: 28px;
  font-weight: 700;
  }
.logo1 img {
  height: 40px;  
  width: auto;
  display: block;
}



/* Navbar  */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 400;
  text-decoration: none;
  color:white; 
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  transition: 0.3s ease;
  font-size: 0.98rem;
  letter-spacing: 1px;
}

.nav-links a:hover {
  opacity: 0.7; /* keeps the hover effect */
}



/*NAV BUTTON*/

.nav-btn {
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  padding: 8px 35px;
  border-radius: 999px;
  font-size: 16px;
  text-decoration: none;
  margin: 0 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45); /* dark glassy look */
color:white;
  border: 1px solid rgba(255, 255, 255, 0.25);
   backdrop-filter: blur(6px);
  text-decoration: none;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}
.nav-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-4px);
}

/* asymmetric glow */
.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.6),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.4),
      transparent 70%
    );
  z-index: 0;
  transition: 0.5s;
  opacity: 0.8;
}

/* text layering */
.nav-btn span {
  position: relative;
  z-index: 2;
}

/* hover: increase glow */
.nav-btn:hover::before {
  opacity: 1;
  filter: blur(2px);
}.btn-arrow {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}
/* Create the duplicate arrow using pseudo-element */
.btn-arrow::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 16px; /* starts below the main arrow */
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19L19 5' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M11 5H19V13' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.nav-btn:hover .btn-arrow {
  transform: translateY(-4px); /* main arrow moves up */
}

.nav-btn:hover .btn-arrow::after {
  transform: translateY(-16px); /* second arrow moves up into view */
  opacity: 1;                   /* second arrow becomes visible */
}
/* Base productlist */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* Dropdown container */
.nav-links .dropdown {
  position: relative;
}

/* The dropdown menu */
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #000;              /* match your dark navbar */
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  list-style: none;
  display: none;                 /* hidden by default */
  z-index: 1000;
}

/* Items inside dropdown */
.nav-links .dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.nav-links .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: #3db6d1;
}

/* Show dropdown on hover (desktop) */
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}
.nav-links .dropdown-menu.open {
  display: block;
}

/*hero*/



    .hero {
      min-height: 100vh;
      background: #000;
      color: #fff;
    }

    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 4vw 80px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    /* Top row: headline + video */
    .hero-top {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }

    .hero-left {
      flex: 1 1 60%;
    }

    .hero-headline {
      font-size: clamp(30px, 3vw, 43px);
      line-height: 3.5rem;
      font-weight: 600;
      max-width: 620px;
      padding-top: 180PX;
      letter-spacing: 1px;
      margin-left:60px;
      text-align: center;
      color: #3DB6D1;
    }

    .hero-headline span {
      display: block;
      letter-spacing: 2px;
    }

   
.hero-right {
  flex: 0 0 auto;      /* allow width to expand */
  display: flex;
  justify-content: flex-end;
}

    /* VIDEO WRAPPER */
.video-box {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4 / 5;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
margin-right:-50px;
  /* same as .hero img */
  
  transition: all 0.6s ease;
  box-shadow: 0 0 40px rgba(61,182,209,0.1);
  transform-origin: center center;
}

/* the video itself */
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HOVER EFFECT ON VIDEO BOX */
.video-box:hover {
  filter: grayscale(0);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(121,191,142,0.2);
}

.hero-right .video-box {
  margin-top: 140px;   /* adjust value as you like */
}

    /* White strip nav */
    .hero-strip {
      margin-top: 132px;
      letter-spacing: 1px;
      display: flex;
      font-size: 14px;
      font-weight: 600;
      text-transform: none;
     padding-left: 4vw;
     margin-left:-100px;
    }

    .strip-item {
      flex: 1;
      text-align: center;
      padding: 10px 0;
      
    }

    .strip-item + .strip-item {
      border-left: 1px solid #a29d9d;
    }

    /* Bottom big name */
    .hero-bottom { margin-top: 15px; overflow: hidden; }

.hero-marquee {
  overflow: hidden;
  width: 100%;
 
}

.hero-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 12s linear infinite;
 
}

.hero-title {
  font-size: clamp(90px, 19vw, 200px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;

  background-image: linear-gradient(90deg, #3db6d1, #79bf8e, #3db6d1);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientmove 5s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes gradientmove {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

   


    /*Main*/

    /* PAGE BACKGROUND */

/* WRAPPER */
/* =========================
   HERO IMAGE + OVERLAP CARD
   ========================= */

/* wrapper must provide space for overlapping info-box */
.hero-box-wrapper{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;

  /* IMPORTANT: bottom padding creates space so info-box is fully visible */
  padding: 120px 0 340px;

  /* never clip the overlap */
  overflow: visible;

  /* scroll animation variable */
  --reveal: 0;
}

/* MAIN BOX */
.main-box{
  width: min(1400px, 85%);
  height: 420px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  overflow: hidden;
  background: #000;

  /* scroll reveal */
  opacity: var(--reveal);
  transform: translateY(calc(26px * (1 - var(--reveal))));
  transition: transform 900ms cubic-bezier(.2,.9,.2,1), opacity 700ms ease;
}

.main-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* scroll parallax-like feel */
  transform: scale(calc(1.08 - (0.05 * var(--reveal))))
             translateY(calc(18px * (1 - var(--reveal))));
  transition: transform 900ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

/* optional hover on image */
.main-box:hover .main-image{
  transform: scale(1.05);
}

/* BIG HEADING */
.big-heading{
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, calc(-50% + (14px * (1 - var(--reveal)))));
  opacity: var(--reveal);

  font-size: clamp(40px, 5vw, 100px);
  font-weight: 800;
  letter-spacing: -2px;
  color: #79bf8e;
  text-transform: uppercase;
  text-align: center;
  z-index: 5;

  transition: transform 900ms cubic-bezier(.2,.9,.2,1), opacity 700ms ease;
}

/* INFO BOX */
.info-box{
  position: absolute;

  /* overlap position */
  top: calc(120px + 420px - 80px); /* wrapper top padding + main height - overlap */
  left: 10%;

  /* responsive width */
  width: min(680px, calc(100% - 40px));
  padding: 30px;

  background: rgba(14, 14, 14, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 0 25px rgba(225,255,255,0.06);
  z-index: 10;

  /* scroll reveal */
  opacity: var(--reveal);
  transform: translateY(calc(40px * (1 - var(--reveal))))
             translateX(calc(-24px * (1 - var(--reveal))));
  transition: transform 900ms cubic-bezier(.2,.9,.2,1), opacity 700ms ease;
  will-change: transform, opacity;
}

.info-box:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 0 35px rgba(0,255,255,0.18);
}

/* Typography */
.info-box h3{
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.6px;
  line-height: 1.2;
}

.info-box p{
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.6px;
  line-height: 1.85;
  color: #aba6a6;
  text-align: justify;
}

/* right version if you want */
.right-box{
  left: auto;
  right: 10%;
  transform: translateY(calc(40px * (1 - var(--reveal))))
             translateX(calc(24px * (1 - var(--reveal))));
}

/* RESPONSIVE */
@media (max-width: 900px){
  .main-box{ height: 360px; }
  .hero-box-wrapper{ padding: 90px 0 360px; }
  .info-box{
    top: calc(90px + 360px - 70px);
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(calc(40px * (1 - var(--reveal))));
  }
  .right-box{
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(calc(40px * (1 - var(--reveal))));
  }
}

@media (max-width: 520px){
  .main-box{ height: 300px; border-radius: 18px; }
  .hero-box-wrapper{ padding: 70px 0 380px; }
  .info-box{ top: calc(70px + 300px - 60px); padding: 22px; border-radius: 22px; }
  .info-box h3{ font-size: 20px; }
  .info-box p{ font-size: 13px; line-height: 1.75; }
}



/*footer*/

/* === Footer === */




/* ===== Base ===== */
.creative-footer {
  position: relative;
  height: 90vh;
  min-height: 600px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: initial;   /* change from isolate */
  overflow: visible;    /* allow button to move */

  
}
/* ===== Video Background ===== */
.footer-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.35) contrast(1.1);
}

/* ===== Overlay ===== */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.8) 100%);
  z-index: -1;
}

/* ===== Content ===== */
.footer-content {
  z-index: 2;
  padding: 0 10px;
  letter-spacing: 1px;
}
.footer-availability {
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
  opacity: 0.9;
}
.footer-content h2 {
  letter-spacing: 1px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 28px;
   /* gradient text */
  background-image:linear-gradient(90deg,#3db6d1, #79bf8e, #3db6d1);
  background-size:200% 100%;       /* put AFTER background-image */
  background-position:0% 0%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;               /* helps Firefox */

            /* ensures background animates cleanly */
  animation:gradientmove 5s linear infinite;
}

@keyframes gradientmove{
  0%   { background-position:0% 0%; }
  100% { background-position:100% 0%; }
}



/* Footer Button */
/* Glowing Outline Button Style */


/* ===== Social Links ===== */
.footer-social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.footer-social a {
  color: #ccc;
  font-size: 28px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}
.footer-content .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:40px 12px;
  letter-spacing: 1px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#ccc;
}
.tag .dot{
  width:10px;height:10px;border-radius:50%;
  background:radial-gradient(circle,#fff 30%,rgba(255,255,255,.2) 70%);
  box-shadow:0 0 8px rgba(255,255,255,.8);
  animation:blink 1.2s infinite ease-in-out;
}
.divider {
  width: .99px;
  height: 30px;
  background: rgba(255,255,255,0.3);
}

/* ===== Footer Bottom (Emails) ===== */
.footer-bottom {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 1px;
}
.footer-bottom a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 1px;
}
.footer-bottom a:hover {
  color: #ccc;
}



/* ==== SCROLL REVEAL BASE ==== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}


/* =========================
   INNER INFO BOX REVEALS
   ========================= */

.info-box h3,
.info-box p{
  opacity: 0;
  transition:
    transform 800ms cubic-bezier(.2,.9,.2,1),
    opacity 600ms ease;
  will-change: transform, opacity;
}

/* heading comes from LEFT */
.info-box .reveal-left{
  transform: translateX(-40px);
}

/* paragraph comes from RIGHT */
.info-box .reveal-right{
  transform: translateX(40px);
}

/* when section is revealed */
.hero-box-wrapper[style*="--reveal: 1"],
.hero-box-wrapper[style*="--reveal: 0.9"],
.hero-box-wrapper[style*="--reveal: 0.8"]{
  /* enable children reveal */
}

.hero-box-wrapper{
  --inner: 0;
}

/* activate inner reveal */
.hero-box-wrapper{
  --inner: var(--reveal);
}

.hero-box-wrapper .reveal-left{
  opacity: var(--inner);
  transform: translateX(calc(-40px * (1 - var(--inner))));
}

.hero-box-wrapper .reveal-right{
  opacity: var(--inner);
  transform: translateX(calc(40px * (1 - var(--inner))));
}
.info-box .reveal-left{ transition-delay: 0.05s; }
.info-box .reveal-right{ transition-delay: 0.15s; }


