
/***PRODUCTS****/

* {
  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; }
}


/***PRODUCTS****/




/* 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 */
.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*/
:root{
  --page-pad: 30px;   /* 👈 set this to your navbar left/right padding */
}

/* FULL WIDTH BLACK SECTION */
.hero-full{
  width:100%;
  background:#000;
  color:#fff;

  /* same left/right as navbar */
  padding: 180px var(--page-pad) 80px;
}

.hero-left{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;   /* ✅ THIS centers everything */
}



/* PAGE TITLE */

.hero-left h1{
 text-transform: uppercase;
   margin-bottom: 24px;
  letter-spacing: 1px;
  letter-spacing:-0.03em;
  font-size:clamp(52px,8vw,80px);
  font-weight:800;
text-align: center;
  /* 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 */

           
  animation:gradientmove 5s linear infinite;
}

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




/* GRID FOR CARDS */
.product-grid{
  display: grid;
justify-content: center; 
  /* for 2 cards it will sit neatly from same left line */
  grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
  gap: 16px;              /* ✅ smaller gap (adjust 12/14/16/20) */

  margin: 32px 0 28px;    /* ✅ no left margin */
  
}


/* CARD STYLE */
.product-card {
  background: #050505;
  border-radius: 18px;
  border: 1px solid #181818;
  padding: 28px 22px 24px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
 
}

/* HOVER EFFECT */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  border-color: rgba(61, 182, 209, 0.7);
}

/* PRODUCT IMAGE */
.product-image img {
  width: 100%;
  max-width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
  border-radius: 10px;
}

/* TITLE INSIDE CARD */
.product-card h3 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-full p{
  max-width: 1200px;
  margin: 0 auto;          /* ✅ center block */
  text-align: center;      /* center text */
  
  letter-spacing: 0.8px;
  line-height: 1.9;
  font-size: 16px;
  opacity: 0.9;
  text-indent: 0;          
}




/* === 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;
}


/*FOOTER*/

/* ===== Responsive ===== */
@media (max-width: 1120px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }
}