/* main root*/

:root {
  --primary: #0FBEBB;
  --dark: #000;
  --dark-gray: #111;
  --white: #fff;
}

/* RESET & BASE */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Inter', sans-serif; }
body { background: var(--dark); color: var(--white); line-height:1.6; }
.container { width:90%; max-width:1200px; margin:auto; }

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #042f2e 0%, #0f766e 80%);
    transition: transform 0.4s ease;
    z-index: 999;
    padding: 15px;
}
header.hide { transform: translateY(-100%); }
.nav { display:flex; justify-content:space-between; align-items:center; padding:18px 0; }
.logo { font-size:24px; font-weight:bold; }
.logo span { color: var(--primary); }
nav a { color: var(--white); margin-left:20px; text-decoration:none; transition:0.3s; }
nav a:hover { color: var(--primary); }
.btn{
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    background: #00ffff;
    color: #000;
    transition: all 0.4s ease;
    display: inline-block;
    z-index: 1;
    position: relative;
	text-decoration:none;
}
.btn:hover {transform: translateY(-3px); opacity:0.9;  }

/* Hamburger */
.hamburger { display:none; flex-direction:column; cursor:pointer; gap:5px; }
.hamburger div { width:25px; height:3px; background:#fff; transition:0.3s; }
.hamburger.open div:nth-child(1) { transform: rotate(45deg) translate(5px,5px);}
.hamburger.open div:nth-child(2) { opacity:0;}
.hamburger.open div:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px);}

.nav-links.active {
  display:flex;
  flex-direction:column;
  gap:10px;
  background:rgba(0,0,0,0.95);
  position:absolute;
  top:60px;
  left:0;
  width:100%;
  padding:20px 0;
}
/* MENU LIST RESET */
/* Main Menu */
nav ul.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

nav ul.menu li {
  position: relative;
}

/* Main menu link with icon */
nav ul.menu li a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px; 
  transition: 0.3s;
}

nav ul.menu li a:hover {
  color: var(--primary);
}

/* Icon size */
.menu-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  filter: brightness(0) invert(1);
}

/* Sub-menu */
.sub-menu {
  list-style: none;   
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.95);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.sub-menu li {
  padding: 0;
}

.sub-menu li a {
  color: #ccc;
  padding: 8px 20px;
  display: block;
  font-size: 14px;
}

.sub-menu li a:hover {
  color: var(--primary);
  background: rgba(255,255,255,0.05);
}

/* Show sub-menu on hover */
nav ul.menu li:hover > .sub-menu {
  display: flex;
  flex-direction: column;
}

nav ul.menu li a::after {
  content: "▾";
  font-size: 18px;
  margin-left: 6px;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}


nav ul.menu li:hover > a::after {
  transform: rotate(180deg);
}

nav ul.menu li:not(:has(.sub-menu)) > a::after {
  content: "";
}


/* MAIN MENU ICON */
.menu-icon {
  width:16px;
  height:16px;
  display:inline-block;
  filter: brightness(0) invert(1);
}

/* SUB-MENU */

.sub-menu {
  list-style: none;   
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.95);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}


.sub-menu li {
  padding:0;
}

.sub-menu li a {
  color:#ccc;
  padding:8px 20px;
  display:block;
  font-size:14px;
}

.sub-menu li a:hover {
  color: var(--primary);
  background: rgba(255,255,255,0.05);
}

nav ul.menu li:hover > .sub-menu {
  display:flex;
  flex-direction:column;
}

/* RESPONSIVE */
@media(max-width:768px){
  nav ul.menu {
    flex-direction:column;
    gap:0;
  }

  nav ul.menu li {
    width:100%;
  }

  .sub-menu {
    position: relative;
    top:0;
    left:0;
    display:none;
  }

  nav ul.menu li.active > .sub-menu {
    display:flex;
    flex-direction:column;
  }

  .menu-icon { display:inline-block; }
}




/* Desktop button hide on mobile */
@media (max-width: 768px) {
  .open-demo1 {
    display: none !important;
  }
  .btn1{display:none !important;
}

/* Mobile button hide on desktop */
.mobile-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-btn {
    display: block;
  }
}





/* ===== MOBILE NAV FIX (ADD ONLY) ===== */

@media(max-width:768px){

  /* Show hamburger */
  .hamburger{
    display:flex;
  }

  /* Hide menu by default */
  .nav-links{
    display:none;
  }

  /* Show menu on click */
  .nav-links.active{
    display:flex;
  }

  /* Stop hover dropdown on mobile */
  nav ul.menu li:hover > .sub-menu{
    display:none;
  }

}
.nav-links .menu li a.active {
  color: #0fbebb;           
  font-weight: 600;
  position: relative;
}

.nav-links .menu li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #0fbebb;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-links .menu li a.active::after {
    left: 0;
    transform: none;
    width: 10%;
    bottom: 0px;
  }
}



/* HERO SECTION */
.hero-split {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

/* CONTAINER */
.hero-split-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-left {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  font-size: 13px;
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.hero-left h1 span {
color: linear-gradient(90deg, #00bcd4, #00ffb3);
}
.hero-left h1 span {
  background: linear-gradient(90deg, #00bcd4, #00ffb3); /* gradient */
  -webkit-background-clip: text; /* Chrome, Safari */
  -webkit-text-fill-color: transparent; /* Chrome, Safari */
  background-clip: text; /* Standard */
}

.hero-left p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 520px;
}

/* BUTTONS */
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.btn {
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
    background: linear-gradient(90deg, #00bcd4, #00ffb3);
    color: #000;
}

.btn.ghost {
    border: 1px solid #fff;
    color: #fff;
    background: #4fd1ff;
}

.btn:hover {
  transform: translateY(-2px);
}

/* RIGHT VIDEO CARD */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.video-card {
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VIDEO OVERLAY TEXT (OPTIONAL) */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    transparent
  );
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-split {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-split-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .hero-left p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .video-card {
    max-width: 100%;
  }
}
/* RIGHT VIDEO CARD */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.video-card {
  width: 100%;
  height: 100%; /* full height hero */
  max-width: none; /* remove previous max-width */
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
}

.video-card video {
  width: 100%;
  height: 100%; /* full coverage */
  object-fit: cover;
}
@media (max-width: 992px) {
  .video-card {
    height: auto; /* auto height for mobile */
    width: 100%;
  }
}


/* SECTION HEAD */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #e0f7f5; /* soft white/teal badge text */
  border: 1px solid rgba(224,247,245,0.3);
  background: rgba(224,247,245,0.05);
}

.section-head h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  color: #e0f7f5; 
  text-shadow: 0 2px 8px rgba(0,0,0,0.25); 
}
.section-head h2 ::after{
	
	
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#00bcd4,#00ffb3);
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}
.section-head h2 span {
  background: linear-gradient(90deg,#00bcd4,#00ffb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  font-size: 18px;
  color: #cce8e4; /* light teal text for paragraph */
  line-height: 1.8;
}

/* GRID */
.why-us-premium {
  position: relative;
  padding: 70px 0;   
}

.why-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* CARD */
.why-card-premium {
  padding: 35px 25px;
  border-radius: 22px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    box-shadow: 0 20px 60px rgba(15,190,187,0.15);
    position: relative;
    overflow: hidden;
}

/* SHINE EFFECT */
.why-card-premium::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,188,212,0.08),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.6s;
}

.why-card-premium:hover::before {
  top: 0;
  left: 0;
}

/* CARD HOVER */
.why-card-premium:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0,188,212,0.5);
  box-shadow: 0 25px 70px rgba(0,188,212,0.25);
}

/* ICON */
.icon-wrap {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,188,212,0.35), rgba(0,188,212,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.45s ease;
}

.icon-wrap img {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
}

.why-card-premium:hover .icon-wrap {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 35px rgba(0,188,212,0.7);
}

/* TEXT */
.why-card-premium h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #e0f7f5; /* light heading for card */
}

.why-card-premium p {
  font-size: 15px;
  line-height: 1.7;
  color: #cce8e4; /* readable light teal for card text */
}

/* RESPONSIVE */
@media(max-width:768px){
  .section-head h2 { font-size: 32px; }
  .why-grid-premium { gap: 35px; }
}

@media(max-width:480px){
  .section-head h2 { font-size: 28px; }
}

/* ===================== WHY CHOOSE SECTION ===================== */
.why-choose{
  padding:100px 6%;
  background:linear-gradient(135deg, #074d4b 0%, #16a085 80%);
}

.why-heading{
  max-width:1200px;
  margin:0 auto 60px;
  text-align:center;
}

.why-heading h2{
  font-size:42px;
  color:#fff;
  font-weight:700;
}

.why-heading h2 span {
    
   
    background: linear-gradient(90deg, #00bcd4, #00ffb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-heading h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#00bcd4,#00ffb3);
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}
.why-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  background:linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  border-radius:14px;
  overflow:hidden;
}

/* LEFT CONTENT */
.why-content{
  padding:60px;
  color:#fff;
}

.pill-tabs {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-auto-rows: auto;
  gap: 15px;
  justify-content: start;
  margin-bottom:30px;
}

.pill-tabs span {
  text-align: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  white-space: nowrap;
}

.pill-tabs .active {
  background: #fff;
  color: #0b2b3c;
}

.tab-content .tab-panel{
  display:none;
}

.tab-content .tab-panel.active{
  display:block;
}

.why-content h3{
  font-size:28px;
  margin-bottom:15px;
}

.desc{
  color:#cbd5e1;
  margin-bottom:20px;
  line-height:1.6;
}

.features{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.features li{
  margin-bottom:10px;
  padding-left:22px;
  position:relative;
}

.features li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#4fd1ff;
}

.cta-btn{
  display:inline-block;
  padding:14px 28px;
  background:#4fd1ff;
  color:#0b2b3c;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.cta-btn:hover{
  background:#fff;
  color:#0b2b3c;
}

/* RIGHT VIDEO */
.why-image{
  position:relative;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}

.why-image video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.why-image video.active{
  display:block;
}
/* RIGHT IMAGE */
.why-image{
  position:relative;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}

.why-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.why-image img.active{
  display:block;
}
/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 992px){
  .why-wrapper{
    grid-template-columns:1fr;
  }
  .why-content{
    padding:40px 20px;
  }
  .why-image{
    height:300px;
  }
  .pill-tabs{
    grid-template-columns: repeat(2, 1fr);
    gap:10px;
  }
}

@media (max-width: 600px){
  .why-heading h2{
    font-size:32px;
  }
  .why-wrapper{
    grid-template-columns:1fr;
  }
  .why-content{
    padding:30px 15px;
  }
  .why-image{
    height:220px;
  }
  .pill-tabs{
    grid-template-columns: 1fr; 
    gap:10px;
  }
}

/* ===============================
   SECTION – SOFT WHITE CINEMATIC
================================ */

.why-content:hover .why-visual video {
  transform: scale(1.06);
}

/* ===============================
   GLASS CARD – LIGHT
================================ */
.why-text {
  flex: 1;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(30px);
  border-radius: 28px;
  padding: 40px;
  box-shadow:
    0 40px 90px rgba(15,118,110,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}

/* soft floating gradient */
.floating-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(15,118,110,0.15),
    rgba(20,184,166,0.08)
  );
  animation: floatOverlay 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatOverlay {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* ===============================
   TEXT
================================ */
.why-text h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #0f766e;
  position: relative;
}

.why-text p {
  color: #334155;
  margin-bottom: 22px;
  line-height: 1.65;
}

.why-text .highlight {
  font-weight: 600;
  color: #0f766e;
}

/* ===============================
   LIST
================================ */
.why-text ul {
  margin-bottom: 26px;
}

.why-text li {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.why-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #14b8a6;
  font-weight: 700;
}

/* ===============================
   BUTTON
================================ */
.btn-gradient {
  padding: 14px 38px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg,#0f766e,#14b8a6);
  color: #ffffff;
  display: inline-block;
  transition: all 0.4s ease;
}

.btn-gradient:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 45px rgba(15,118,110,0.4);
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 992px) {
  .why-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }
}

@media(max-width: 480px) {
  .why-title { font-size: 2.1rem; }
  .why-text h3 { font-size: 22px; }
  .why-text p,
  .why-text li { font-size: 0.95rem; }
}

.cinematic-tech {
    position: relative;
    padding: 70px 0;
    background:linear-gradient(135deg, #074d4b 0%, #16a085 80%);
    color: #fff;
    overflow: hidden;
}

/* Title Gradient */
.tech-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    line-height: 1.2;
    background:#ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s ease infinite;
}

/* Grid layout */
.tech-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap:40px;
  position:relative;
  z-index:1;
}

/* Glass cards */
.tech-card{
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  border-radius:20px;
  padding:30px 20px 40px;
  text-align:center;
  color:#fff;
  transition: all 0.5s ease;
  box-shadow: 0 20px 60px rgba(15,190,187,0.15);
  position:relative;
  overflow:hidden;
}
.tech-card::before{
  content:"";
  position:absolute;
  top:-50%; left:-50%;
  width:200%; height:200%;
  background:#0FBEBB;
  opacity:0.1;
  transform: rotate(45deg);
  transition: all 0.7s ease;
}
.tech-card:hover::before{
  opacity:0.3;
  transform: rotate(60deg) scale(1.1);
}
.tech-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(15,190,187,0.4);
}

/* Icons */
.tech-icon{
  width:60px;
  height:60px;
  margin-bottom:20px;
  transition: all 0.4s ease;
}
.tech-card:hover .tech-icon{
  transform: scale(1.2) rotate(15deg);
}

/* Gradient span text */
.tech-card span{
  display:block;
  font-size:20px;
  font-weight:700;
  margin-bottom:15px;
  background:#00ffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.tech-card p{
  font-size:15px;
  line-height:1.7;
  color:#ccc;
}

/* Background particles */
.particles-container{
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  pointer-events:none;
  z-index:0;
}

/* Gradient animations */
@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* Responsive */
@media(max-width:992px){
  .tech-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
  .tech-icon{
    width:50px;
    height:50px;
  }
  .tech-title{
    font-size:32px;
  }
}





/* --- Existing CSS Enhanced --- */
.metrics-cinematic {
    position: relative;
    padding: 70px 0;
    background: radial-gradient(circle at top,#0f2027,#000);
    overflow: hidden;
}
 
/* Header */
.metrics-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 80px;
}
.metrics-header h2 {
    font-size: 42px;
    margin-bottom: 14px;
    background: #e0f7f5;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.metrics-header p{
  font-size:18px;
  color:#aebebe;
  line-height:1.6;
}

/* Grid */
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:45px;
  position:relative;
  z-index:2;
}

/* Card */
.metric-card{
  position:relative;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(18px);
  border-radius:22px;
  padding:55px 20px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.08);
  transition:all 0.45s ease;
  animation:pulseGlow 4s ease-in-out infinite;
  cursor:pointer;
}

/* Hover Floating + Scale */
.metric-card:hover{
  transform:translateY(-16px) scale(1.03);
  box-shadow:0 40px 100px rgba(15,190,187,0.45);
  border-color:rgba(15,190,187,0.6);
}

/* Hologram Ring */
.metric-card::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:24px;
  background:conic-gradient(
    from 0deg,
    transparent,
    rgba(15,190,187,0.7),
    transparent 30%
  );
  opacity:0;
  animation:rotateRing 6s linear infinite, pulseRing 3s ease-in-out infinite alternate;
  transition:0.4s;
  z-index:-1;
}
.metric-card:hover::before{opacity:1}

/* Ring Glow Animation */
@keyframes pulseRing{
  0%{opacity:0.7; transform:rotate(0deg) scale(1);}
  50%{opacity:1; transform:rotate(180deg) scale(1.05);}
  100%{opacity:0.7; transform:rotate(360deg) scale(1);}
}

/* Number */
.metric-number{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  margin-bottom:18px;
}
.metric-value{
  font-size:60px;
  font-weight:800;
  background:linear-gradient(90deg,#0FBEBB,#ff00ff,#00ffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:gradientMove 3s linear infinite;
}
.metric-suffix{
  font-size:26px;
  margin-left:4px;
  color:#0FBEBB;
  opacity:0.9;
}

/* Gradient Animation for Numbers */
@keyframes gradientMove{
  0%{background-position:0%}
  50%{background-position:100%}
  100%{background-position:0%}
}

/* Label */
.metric-card p{
  font-size:16px;
  color:#b5c7c7;
  letter-spacing:0.4px;
}

/* Glow Background with subtle particle effect */
.metrics-glow{
  position:absolute;
  top:50%;
  left:50%;
  width:900px;
  height:900px;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(15,190,187,0.18),transparent 70%);
  filter:blur(130px);
  z-index:1;
}

/* Pulse Shadow Animation */
@keyframes pulseGlow{
  0%,100%{box-shadow:0 0 30px rgba(15,190,187,0.15)}
  50%{box-shadow:0 0 80px rgba(15,190,187,0.35)}
}

/* Rotate Ring Animation */
@keyframes rotateRing{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

/* Responsive */
@media(max-width:768px){
  .metrics-header h2{font-size:32px}
  .metric-value{font-size:50px}
}


/* --- Root Colors --- */
:root {
  --primary: #0FBEBB;         
  --secondary: #FF6B6B;       
  --tertiary: #FFD93D;        
  --dark: #0A0A0A;            
  --dark-gray: #1A1A1A;       
  --white: #FFFFFF;            
  --light-gray: #CCCCCC;       
  --glow-color: rgba(15,190,187,0.25); 
  --particle-color: rgba(255,107,107,0.5);
}

/* --- General Styles --- */
.testimonials-premium {
  background: linear-gradient(135deg, #0A0A0A 0%, #111 100%);
  color: var(--white);
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.testimonials-header h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.testimonials-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#00bcd4,#00ffb3);
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}
.testimonials-header h2 span{
	
	
	background:linear-gradient(90deg, #00bcd4, #00ffb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonials-header p {
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 60px;
  color: var(--light-gray);
}

/* --- Carousel --- */
.testimonial-wrapper {
  position: relative;
  perspective: 1200px;
  overflow: visible;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

/* --- Testimonial Cards --- */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 45px 30px;
  flex: 0 0 300px;
  text-align: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.07);
  box-shadow: 0 25px 50px rgba(255,107,107,0.3), 0 10px 30px rgba(15,190,187,0.3);
}

/* --- Parallax on hover --- */
.testimonial-card p,
.testimonial-card h4,
.testimonial-card span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial-card:hover p { transform: translateY(-5px); }
.testimonial-card:hover h4 { transform: translateY(-8px); }
.testimonial-card:hover span { transform: translateY(-3px); }

/* --- Quote Icon --- */
.quote {
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  top: -25px;
  left: 20px;
  font-weight: bold;
  text-shadow: 0 0 15px var(--primary), 0 0 25px var(--secondary);
}

/* --- Text Styling --- */
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 30px 0;
  color: var(--white);
}

.testimonial-card h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* --- Controls --- */
.testimonial-controls {
  text-align: center;
  margin-top: 50px;
  z-index: 10;
  position: relative;
}

.testimonial-controls button {
  background: #0FBEBB;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  padding: 12px 26px;
  margin: 0 10px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,107,107,0.5), 0 0 30px rgba(15,190,187,0.5);
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255,107,107,0.7), 0 0 50px rgba(15,190,187,0.7);
}

/* --- Glow & Particles --- */
.testimonial-glow {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(15,190,187,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: glowMove 12s linear infinite alternate;
}

@keyframes glowMove {
  0% { transform: translate(0,0) rotate(0deg);}
  100% { transform: translate(-50px,50px) rotate(360deg);}
}

#testimonial-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}







*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,sans-serif;
}

.camera-hero{
  position:relative;
  height:95vh;
  min-height:550px; 
  overflow:hidden;
}

@media(max-width:768px){
  .camera-hero{
    height:90vh;
  }

}

/* Slides */
.slides,.slide{
  position:absolute;
  inset:0;
}

.slide{
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.05);
  transition:opacity .8s ease, transform 6s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

/* Dark vignette overlay */
.overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.15) 40%, rgba(0,0,0,.85) 100%);
}

/* Content */
.hero-content{
  position:absolute;
  top:50%;
  left:7%;
  transform:translateY(-50%);
  max-width:520px;
  z-index:3;
}

.tag{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.3);
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:20px;
}

.hero-content h2{
  font-size:48px;
  line-height:1.1;
  margin-bottom:18px;
}

.hero-content p{
  font-size:17px;
  line-height:1.6;
  color:#d1d5db;
  margin-bottom:30px;
}
.hero-content h2 span{
	background:linear-gradient(90deg, #00bcd4, #00ffb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn{
  display:inline-block;
  padding:14px 36px;
  border-radius:999px;
  background:#fff;
  color:#000;
  font-weight:600;
  text-decoration:none;
}
/* Bottom Camera UI */
.camera-ui{
  position:absolute;
  bottom:60px;
  left:0;
  right:0;
  z-index:4;
}
/* Line */
.line{
  position:absolute;
  left:12%;
  right:12%;
  top:50%;
  height:1px;
  background:rgba(255,255,255,.4);
}
/* Points */
.points{
  position:absolute;
  left:12%;
  right:12%;
  top:50%;
  display:flex;
  justify-content:space-between;
  transform:translateY(-50%);
}
.point{
  text-align:center;
  cursor:pointer;
    margin-top: -2px !important;
}
.point span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 0 0 rgba(59,130,246,.5);
    transition: .3s;
  
}
.point.active span{
  background:#3b82f6;
  box-shadow:0 0 0 14px rgba(59,130,246,.35);
}
.point p {
    margin-top: 20px;
    font-size: 12px;
    opacity: .85;
}


:root {
  --primary: #0FBEBB;
  --secondary: #FF6B6B;
  --tertiary: #FFD93D;
  --dark: #0A0A0A;
  --white: #FFFFFF;
  --light: rgba(255,255,255,0.2);
}
.faq {
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0f2027, #000);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.faq h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Card */
.faq-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 35px rgba(15,190,187,0.2);
  transition: all 0.4s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(15,190,187,0.3);
  border-color: rgba(15,190,187,0.4);
}

/* Question */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 22px 30px;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.faq-question .icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--primary);
}

.faq-question:hover {
  color: var(--primary);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: all 0.5s ease;
  font-size: 1rem;
  color: #c0d6d6;
  line-height: 1.6;
}

.faq-answer p {
  margin: 15px 0;
}

/* Active FAQ */
.faq-card.active .faq-answer {
  max-height: 500px; /* enough for content */
  padding: 15px 30px 25px 30px;
}

.faq-card.active .faq-question .icon {
  transform: rotate(45deg); /* plus becomes X */
}

/* Responsive */
@media(max-width:768px){
  .faq h2{font-size:2rem;}
  .faq-question{font-size:1.1rem; padding:18px 25px;}
  .faq-answer{font-size:0.95rem;}
}


/* FOOTER */
/* FOOTER PREMIUM */
.footer-premium {
  background: linear-gradient(135deg, #0b0b0b, #111);
  color: #ccc;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

/* Subtle animated background pattern */
.footer-premium::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: url('assets/images/footer-pattern.png') repeat;
  opacity: 0.03;
  animation: floatFooter 60s linear infinite;
  z-index: 0;
}

@keyframes floatFooter {
  0% { background-position: 0 0; }
  100% { background-position: 2000px 2000px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* Footer Headings with Gradient */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    background-color: #0FBEBB;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s ease infinite;
}
/* Footer text & links */
.footer-col p, .footer-col a {
    color: #aaa;
    text-decoration: none;
    line-height: 2.0;
} 

.footer-col a {
  transition: all 0.3s ease;
}

.footer-col a:hover {
  background: linear-gradient(90deg, #0FBEBB, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.05);
}

/* List Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  display: inline-block;
  transition: all 0.3s ease;
}

/* Logo */
.footer-premium .logo {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-premium .logo span {
  color: var(--primary);
}

/* Social Icons with glow on hover */
.socials a {
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.socials a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.socials a:hover img {
  filter: drop-shadow(0 0 8px var(--primary));
  transform: scale(1.2);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  font-size: 13px;
  color: #666;
  position: relative;
  z-index: 1;
}
/* RESPONSIVE */
@media(max-width:768px){
  .footer-grid { text-align: center; gap: 30px; }
  .socials a { margin-right: 12px; }
}


/* RESPONSIVE */
@media(max-width:992px){
  .image-text-grid, .video-container { grid-template-columns:1fr; text-align:center; }
  .image-text-grid .text h2, .video-content-premium h2 { font-size:32px; }
  .image-text-grid .text p, .video-content-premium p { font-size:16px; }
  .video-modal-content iframe { height:300px; }
}

@media (max-width: 768px) {
	.text-side h2 {
    font-size: 28px;
    text-align: center;
}
}
	
	
	
/* SECTION */
.unify-platform {
    padding: 100px 0;
    background: #eef3f4;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #083344;
  margin-bottom: 10px;
}
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}


/* GRID */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */
.platform-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}

/* HOVER LIFT */
.platform-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}

/* IMAGE */
.card-image {
  height: 200px;
  padding: 16px;
  background: linear-gradient(135deg, #0f766e, #155e75);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* CONTENT */
.card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
}

/* BUTTON */
.card-btn {
  margin-top: auto;
  align-self: flex-start;
  background: #eaf4f4;
  color: #0f766e;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
  position: relative;
}

/* BUTTON HOVER */
.card-btn::after {
  content: "→";
  margin-left: 8px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all .3s ease;
}

.platform-card:hover .card-btn {
  background: #0f766e;
  color: #ffffff;
}

.platform-card:hover .card-btn::after {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .platform-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .platform-cards {
    grid-template-columns: 1fr;
  }
}
	
	
	







:root{
  --bg:#020617;
  --card:#0b1220;
  --border:rgba(255,255,255,.08);
  --text:#e5e7eb;
  --muted:#94a3b8;
  --blue:#38bdf8;
  --violet:#818cf8;
}

*{
  box-sizing:border-box;
}

.ai-section{
  background:
    radial-gradient(800px circle at 20% -10%, rgba(0,188,212,.25), transparent 60%),
    radial-gradient(700px circle at 85% 20%, rgba(0,255,179,.18), transparent 55%),
    linear-gradient(180deg, #020617 0%, #071c24 40%, #021214 100%);
	padding: 70px 0;
}


.ai-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:64px;
  align-items:start;
}

/* LEFT */
.ai-title{
  font-size:48px;
  line-height:1.15;
  margin-bottom:24px;
}

.ai-title span{
  background:linear-gradient(90deg, #00bcd4, #00ffb3);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}


.ai-subtitle{
  max-width:520px;
  font-size:18px;
  color:var(--muted);
  margin-bottom:40px;
}

.ai-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.ai-tags span{
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  font-size:14px;
}

/* RIGHT GRID */
.ai-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.ai-card{
  background:linear-gradient(180deg,#0b1220,#020617);
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px;
  min-height:200px;
  position:relative;
  transition:.3s ease;
}

.ai-card.big{
  grid-column:span 2;
}

.ai-card.dark{
  background:#020617;
}

.ai-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.ai-card p{
  font-size:15px;
  color:var(--muted);
  margin-bottom:40px;
}

.ai-card a{
  position:absolute;
  bottom:24px;
  left:28px;
  color:var(--blue);
  font-weight:600;
  text-decoration:none;
}

.ai-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(0,0,0,.5);
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media(max-width:1024px){
  .ai-container{
    grid-template-columns:1fr;
  }

  .ai-right{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:640px){
  .ai-section{
    padding:80px 5%;
  }

  .ai-title{
    font-size:34px;
  }

  .ai-right{
    grid-template-columns:1fr;
  }

  .ai-card.big{
    grid-column:span 1;
  }

  .ai-card{
    min-height:auto;
  }

  .ai-card a{
    position:static;
    margin-top:12px;
    display:inline-block;
  }
}







/* ================= ZIG ZAG SECTION ================= */
.zigzag-section{
  padding:70px 6%;
 background:radial-gradient(circle at 30% 20%, #0b2b3a, #000 70%), linear-gradient(180deg, #020617, #000);* lighter teal gradient */
}

/* ===== ZIGZAG MAIN HEADING ===== */
.zigzag-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 90px;
}

.section-title {
    

    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    color: #e0f7f5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.section-title span.highlight {
 
    background: linear-gradient(90deg,#00bcd4,#00ffb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zigzag-header p{
  font-size:18px;
  color:#d1f0ed; /* lighter teal text */
  line-height:1.7;
}

/* MOBILE */
@media(max-width:900px){
  .zigzag-header{
    margin-bottom:60px;
  }
  .zigzag-header h1{
    font-size:34px;
  }
  .zigzag-header p{
    font-size:16px;
  }
}

@media(max-width:480px){
  .zigzag-header h1{
    font-size:28px;
  }
}

/* ROW */
.zigzag-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
 
}

/* reverse layout */
.zigzag-row.reverse{
  direction:rtl;
}
.zigzag-row.reverse > *{
  direction:ltr;
}

/* CONTENT */
.zigzag-content h2{
  font-size:36px;
  margin-bottom:14px;
  color:#e0f7f5; /* soft white/teal for contrast */
  text-shadow:0 1px 6px rgba(0,0,0,0.25);
}

.zigzag-content p{
  color:#cce8e4; /* readable light teal text */
  line-height:1.8;
  font-size:16px;
  max-width:520px;
}

/* VIDEO BOX */
.zigzag-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.3); /* slightly stronger shadow for dark bg */
  transform:perspective(1200px) rotateY(-6deg);
  transition:.7s cubic-bezier(.2,.8,.2,1);
  background:#000;
}

/* opposite tilt */
.zigzag-row.reverse .zigzag-media{
  transform:perspective(1200px) rotateY(6deg);
}

/* real video */
.zigzag-video{
  width:100%;
  height:300px;
  object-fit:cover;
  filter:contrast(1.1) brightness(.9);
}

/* scan lines */
.zigzag-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.02),
    rgba(255,255,255,.02) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events:none;
}

/* glow border */
.zigzag-media::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  box-shadow:inset 0 0 40px rgba(56,189,248,.18);
  pointer-events:none;
}

/* hover */
.zigzag-media:hover{
  transform:perspective(1200px) rotateY(0deg) scale(1.04);
  box-shadow:0 0 80px rgba(56,189,248,.45);
}

/* AI LABEL */
.ai-label{
  position:absolute;
  top:14px;
  left:14px;
  background:rgba(0,255,255,.2);
  border:1px solid #38bdf8;
  color:#e0f7f5;
  padding:6px 12px;
  border-radius:18px;
  font-size:11px;
  letter-spacing:1px;
  backdrop-filter:blur(6px);
}

/* ALERT TAG */
.alert-tag{
  position:absolute;
  bottom:14px;
  right:14px;
  background:rgba(239,68,68,.15);
  border:1px solid #ef4444;
  color:#fca5a5;
  padding:8px 12px;
  border-radius:12px;
  font-size:12px;
  opacity:0;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(70px) scale(.97);
  transition:1.1s cubic-bezier(.2,.8,.2,1);
}
.reveal.show{
  opacity:1;
  transform:none;
}

/* ================= MOBILE FIX ================= */
@media(max-width:900px){

  .zigzag-section{
    padding:60px 6%;
  }

  .zigzag-row{
    grid-template-columns:1fr;
    gap:35px;
    margin-bottom:70px;
  }

  .zigzag-content h2{
    font-size:28px;
  }

  .zigzag-content p{
    font-size:15px;
  }

  .zigzag-video{
    height:240px;
  }

  .zigzag-media{
    transform:none;
  }
}
/* SMALL MOBILE */
@media(max-width:480px){

  .zigzag-section{
    padding:45px 5%;
  }

  .zigzag-video{
    height:210px;
  }

}













.retail-ai-dashboard {
  position: relative;
  padding: 70px 0;
  background: radial-gradient(circle at top, #0f2027, #000);
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title .highlight {
  background: linear-gradient(90deg, #00bcd4, #00ffb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr; 
    gap: 30px;
  }
}

.dashboard-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px);
  padding: 15px;
  box-shadow: 0 15px 50px rgba(0,188,212,0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.dashboard-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 80px rgba(0,188,212,0.35);
}

.dashboard-video {
  width: 100%;
  border-radius: ;
  display: block;
  margin-bottom: 12px;
}

.card-label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,188,212,0.8);
  color: #fff;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.card-timestamp {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #334155;
  background: rgba(255,255,255,0.5);
  padding: 2px 6px;
  border-radius: 10px;
}

.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(0,188,212,0.05), transparent 70%);
}
.section-title {
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00e5ff, #00ffb3);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}






/* ================= SECTION ================= */
.industries{
  padding:70px 6%;
  background:#111; /* dark background for pop effect */
}

.industries h2{
  text-align:center;
  font-size:42px;
  font-weight:700;
  letter-spacing:2px;

  margin-bottom:50px;
  position:relative;
}
section.industries h2 span {
    background: linear-gradient(90deg, #00BCD5, #00ffb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#00bcd4,#00ffb3);
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.industries h2:hover::after{
  width:100px;
}

/* ================= GRID ================= */
.industry-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:30px;
  margin-bottom:30px;
}

.industry-grid.reverse{
  grid-template-columns:2fr 1fr;
}

/* ================= CARD ================= */
.industry-card{
  position:relative;
  height:600px;
  overflow:hidden;
  cursor:pointer;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  perspective:1000px;
  transition:transform 0.5s ease, box-shadow 0.5s ease;
}

.industry-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s ease, filter 1s ease;
}

/* ===== Overlay ===== */
.industry-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.35), rgba(0,0,0,0));
  opacity:0;
  transform:translateY(30px);
  transition:all .7s ease;
  z-index:1;
  border-radius:12px;
}

/* ===== CONTENT ===== */
.industry-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;  
  align-items:center;      
  text-align:center;
  padding:40px;
  color:#fff;
  opacity:0;
  transform:translateY(30px) scale(0.9);
  transition:all .7s ease;
}

.industry-content h3{
  font-size:28px;
  margin-bottom:12px;
  letter-spacing:1px;
  transition:transform 0.5s ease;
}

.industry-content p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0FBEBB;
    max-width: 420px;
    transition: transform 0.5s ease;
    font-weight: 700;
}

/* ================= HOVER EFFECT ================= */
.industry-card:hover{
  transform:scale(1.05) rotateY(3deg) rotateX(2deg);
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.industry-card:hover img{
  transform:scale(1.15) rotateZ(1deg);
  filter:brightness(0.85) contrast(1.2);
}

.industry-card:hover::before{
  opacity:1;
  transform:translateY(0);
}

.industry-card:hover .industry-content{
  opacity:1;
  transform:translateY(0) scale(1);
}

.industry-card:hover .industry-content h3{
  transform:translateY(-5px);
}

.industry-card:hover .industry-content p{
  transform:translateY(-5px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .industry-grid,
  .industry-grid.reverse{
    grid-template-columns:1fr;
  }

  .industry-card{
    height:280px;
  }
}








/* ================= GOD MODE MARQUEE ================= */

.brand-marquee {
    position: relative;
    padding: 70px 0;
    background: radial-gradient(circle at 30% 20%, #0b2b3a, #000 70%),
    linear-gradient(180deg,#020617,#000);
    overflow: hidden;
    isolation: isolate;
}
/* ================= AURA BACKGROUND ================= */
.brand-marquee::before,
.brand-marquee::after{
  content:"";
  position:absolute;
  inset:-30%;
  z-index:-1;
}

.brand-marquee::before{
  background:
    conic-gradient(
      from 0deg,
      rgba(0,255,220,.18),
      rgba(0,140,255,.12),
      rgba(255,200,0,.14),
      rgba(0,255,220,.18)
    );
  filter:blur(140px);
  animation:auraSpin 28s linear infinite;
}

.brand-marquee::after{
  background:
    radial-gradient(circle,
      rgba(255,255,255,.08),
      transparent 60%);
  filter:blur(120px);
  animation:auraPulse 8s ease-in-out infinite;
}

@keyframes auraSpin{
  to{transform:rotate(360deg);}
}
@keyframes auraPulse{
  0%,100%{opacity:.3;}
  50%{opacity:.6;}
}

/* ================= TITLE ================= */
.marquee-title{
  text-align:center;
  font-size:42px;
  font-weight:600;
  margin-bottom:80px;
  color:#fff;
  position:relative;
  letter-spacing:1px;
}

.marquee-title span{
  background:linear-gradient(90deg,#00ffe0,#00bfff,#ffd36a);
  background-size:300%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:titleFlow 6s linear infinite;
}

@keyframes titleFlow{
  to{background-position:300%;}
}

/* ================= GLASS TUNNEL ================= */
.marquee-wrapper{
  position:relative;
  padding:36px 0;
  background:rgba(255,255,255,.03);
  backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}

/* light sweep */
.marquee-wrapper::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.25),
    transparent 70%
  );
  transform:translateX(-100%);
  animation:lightSweep 6s ease-in-out infinite;
  pointer-events:none;
}

@keyframes lightSweep{
  to{transform:translateX(100%);}
}

/* ================= MARQUEE TRACK ================= */
.marquee-track{
  display:flex;
  gap:120px;
  width:max-content;
  animation:marquee 22s linear infinite;
}

@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ================= BRAND LOGO ================= */
.brand-logo{
  font-size:26px;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#eaffff;
  opacity:.45;
  position:relative;
  transition:all .7s cubic-bezier(.16,1,.3,1);
  transform-style:preserve-3d;
  perspective:600px;
}

/* holographic glow */
.brand-logo::before{
  content:"";
  position:absolute;
  inset:-20px;
  background:radial-gradient(circle,rgba(0,255,200,.4),transparent 70%);
  opacity:0;
  filter:blur(20px);
  transition:.6s ease;
  z-index:-1;
}

/* underline energy */
.brand-logo::after{
  content:"";
  position:absolute;
  bottom:-14px;
  left:50%;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#00ffe0,#00bfff);
  box-shadow:0 0 25px rgba(0,255,220,.9);
  transform:translateX(-50%);
  transition:.6s ease;
}

/* ================= HOVER = MAGIC ================= */
.brand-logo:hover{
  opacity:1;
  color:#00ffe0;
  transform:
    translateY(-10px)
    rotateX(12deg)
    scale(1.25);
  text-shadow:
    0 0 40px rgba(0,255,220,.9),
    0 0 80px rgba(0,180,255,.6);
}

.brand-logo:hover::before{
  opacity:1;
}

.brand-logo:hover::after{
  width:80%;
}

/* Pause marquee on hover */
.marquee-wrapper:hover .marquee-track{
  animation-play-state:paused;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .marquee-title{
    font-size:28px;
    margin-bottom:50px;
  }

  .brand-logo{
    font-size:18px;
    letter-spacing:2px;
  }

  .marquee-track{
    gap:70px;
  }
}





/* ===== DEMO MODAL ===== */
.demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.demo-modal-content {
  background: #0b1f24;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15,190,187,0.5);
  position: relative;
  animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.demo-modal-content h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.demo-modal-content p {
  text-align: center;
  color: #cfd9e0;
  margin-bottom: 25px;
}

.demo-modal-content input,
.demo-modal-content textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
}

.demo-modal-content input:focus,
.demo-modal-content textarea:focus {
  outline: none;
  background: rgba(15,190,187,0.15);
  box-shadow: 0 0 20px rgba(15,190,187,0.4);
}

.close-demo {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.demo-success {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(0,255,195,0.15);
  color: #00ffc3;
  text-align: center;
  font-weight: 600;
}






/* ===== DEMO VIDEO MODAL ===== */
.demo-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.demo-video-content {
  width: 90%;
  max-width: 1100px;
  background: #0b1f24;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(15,190,187,0.45);
  position: relative;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-video {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.demo-video-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 35px;
  align-items: center;
}

/* LEFT */
.demo-summary h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.demo-summary .tagline {
  color: #39e6d6;
  font-size: 16px;
  margin-bottom: 25px;
}

.demo-summary ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.demo-summary ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #cfd9e0;
}

.demo-summary .summary-text {
  color: #b9c7cf;
  line-height: 1.6;
}

/* RIGHT */
.demo-video iframe {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* MOBILE */
@media (max-width: 900px) {
  .demo-video-grid {
    grid-template-columns: 1fr;
  }
  .demo-video iframe {
    height: 240px;
  }

  .open-demo {
    display: none !important;
  
}
@media (max-width: 768px) {
  .open-demo,
  .mobile-btn {
    display: none !important;
  }
}

}




