/*** PRO1 ****/

* {
  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- PRO1****/




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

/* PRODUCT IMAGE */
/* PRODUCT IMAGE (inside section, right side) */
.innovation-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.innovation-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
   margin-right: -35px;
}

/*** SECTION 1 ***/
.innovation-section {
  background: #000;
  color: #fff;
  padding: 180px 40px 40px;      /* smaller padding for print */
  

}

/* Card-like wrapper but with less margin so page is full */
.full-box-wrapper {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 40px 40px 30px;
  margin: 0 auto;
  max-width: 1400px;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
 
}

.innovation-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* BIG TITLE */
.innovation-title {
  font-size: clamp(18px, 3vw, 30px);
  margin: 0 0 24px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #3db6d1;
   margin-left: -40px;
}

/* GRID: LEFT (TEXT+LIST) / RIGHT (IMAGE) */
.innovation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 32px;
  align-items: flex-start;
}

.innovation-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
   margin-left: -40px;
}

.innovation-intro strong {
  font-weight: 900;
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
  letter-spacing: 1px;
  color: #ffffff;
}

.innovation-intro strong,
.innovation-intro b {
  font-weight: 900;
  background: linear-gradient(90deg, #3db6d1, #79bf8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.2px;
}

.innovation-intro {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.85;
  text-align: justify;
  letter-spacing: 1px;
}

/* RIGHT: NUMBERED ITEMS LIST (now under paragraph) */
.innovation-right {
  width: 100%;
}

.innovation-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.innovation-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.inv-number {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  align-self: center;
}

.innovation-right h4 {
  font-size: 18px;
  margin: 0 0 8px;
}

.inv-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  letter-spacing: 1px;
  text-align: justify;
}



/* BOXES */
.feature-boxes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 32px 0 0;
  align-items: stretch;
}

.feature-box {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 30px 30px;
  color: #fff;
  box-shadow: 0 0 40px rgba(255,255,255,0.06);
}

/* LEFT BOX – same height as right (no weird gap) */
.feature-box.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ICON */
.feature-icon i {
  font-size: 32px;
  color: #ffffff;
  padding: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* HEADINGS */
.feature-box h3 {
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* PARAGRAPH */
.feature-box p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 100%;
  text-align: justify;
  letter-spacing: 1px;
}


/* LIST / TABLE SECTION */
.backend-section {
  padding: 32px 0 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.backend-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Card */
.backend-card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(25px);
  box-shadow: 0 0 40px rgba(0,0,0,0.25);
}

/* Table header */
.table-header {
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr) ;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  margin-bottom: 20px;
}

/* Skeleton rows */
.table-rows .row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.sk {
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  width: 90%;
  display: flex;
  align-items: center;
  padding-left: 16px;
  color: #fff;
  font-size: 15px;
}

/* PRINT – reduce gaps and fill page nicely */
@media print {
  body {
    background: #fff !important;
  }
  .innovation-section,
  .full-box-wrapper {
    margin: 0;
    padding: 16px;
    border-radius: 0;
    box-shadow: none;
  }
  .feature-boxes,
  .backend-section {
    padding: 12px 0 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;
}

/* ===================================
   RESPONSIVE OVERRIDES (NO BASE CHANGES)
=================================== */

/* Tablet & below */
@media (max-width: 1120px){

  /* stack main grid */
  .innovation-grid{
    grid-template-columns: 1fr !important;
  }

  /* reset visual offsets safely */
  .innovation-title,
  .innovation-left{
    margin-left: 0 !important;
  }

  .innovation-image{
    justify-content: center !important;
    
  }

  .innovation-image img{
    margin-right: 0 !important;
    max-width: 420px;
    width: 100%;
    
  }

  /* feature boxes stack */
  .feature-boxes{
    grid-template-columns: 1fr !important;
  }
}

/* Mobile */
@media (max-width: 600px){

  .innovation-section{
    padding: 170px 16px 32px !important;
    text-align: justify;
  }

  /* text readability */
  .innovation-intro,
  .inv-content p,
  .feature-box p{
    text-align: justify !important;

  }


  /* backend table safe scroll */
  .backend-card{
    overflow-x: auto;
  }

  .table-header,
  .table-rows .row{
    min-width: 220px;
    gap: 20px;
  }
}
@media (max-width: 1450px) and (min-width: 1025px){

  /* give more room to image column */
  .innovation-grid{
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
  }

  /* stop overflow that pushes image down */
  .innovation-image img{
    margin-right: 0;
    max-width: 360px;
  }

  /* remove negative left shifts to keep alignment clean */
  .innovation-title,
  .innovation-left{
    margin-left: 0;
  }
}

/* =========================================
   BACKEND BOX VIEW FOR MOBILE (<=600px)
   Turns the table into stacked "pill cards"
========================================= */
@media (max-width: 900px){

  /* keep the big header row hidden on mobile */
  .table-header{
    display: none !important;
  }

  /* each row becomes a card group */
  .table-rows .row{
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px !important;
  }

  /* first item (label) full width */
  .table-rows .row .sk:first-child{
    flex: 0 0 100%;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    line-height: 1.25;
    padding: 12px 14px;
    opacity: 0.95;
  }

  /* value pills -> 2 columns */
  .table-rows .row .sk:not(:first-child){
    flex: 0 0 calc(50% - 6px); /* two columns */
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    min-height: 44px;
    position: relative;
    padding-top: 18px;         /* space for small grade label */
  }

  /* add grade labels on each pill (hardcoded by column order) */
  .table-rows .row .sk:nth-child(2)::before{ content:"90"; }
  .table-rows .row .sk:nth-child(3)::before{ content:"140"; }
  .table-rows .row .sk:nth-child(4)::before{ content:"80W/90"; }
  .table-rows .row .sk:nth-child(5)::before{ content:"85W/90"; }
  .table-rows .row .sk:nth-child(6)::before{ content:"85W/140"; }

  /* small label style */
  .table-rows .row .sk:not(:first-child)::before{
    position: absolute;
    top: 6px;
    left: 10px;
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 1px;
  }
}

/* =====================================
   IMAGE VERTICAL ADJUSTMENT
   1024px → 1430px ONLY
===================================== */
@media (min-width: 1024px) and (max-width: 1430px){

  .innovation-image{
    align-items: flex-start; /* keep original alignment */
  }

  .innovation-image img{
    margin-top: 80px;   /* adjust: 20px / 30px / 40px */
  }
}

/*FOOTER*/

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

