﻿* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: #0a0e27;
}

/* Animated AI Grid Background */
.ai-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,rgba(0, 255, 255, 0.03) 1px,transparent 1px), linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Digital particles */
.digital-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.digital-particle {
  position: absolute;
  color: #00ffff;
  font-family: "Courier New", monospace;
  font-size: 14px;
  opacity: 0;
  animation: rain 8s linear infinite;
}

@keyframes rain {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh);
  }
}

/* Circuit lines */
.circuit-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Glowing orbs */
.ai-orb {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.4) 0%,
    rgba(0, 255, 255, 0) 70%
  );
  filter: blur(40px);
  animation: float-orb 15s ease-in-out infinite;
  z-index: 1;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -50px) scale(1.2);
  }
  66% {
    transform: translate(-50px, 100px) scale(0.8);
  }
}

/* Header */
header {
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a img {
  max-width: 40%;
  filter: brightness(0) saturate(100%) invert(71%) sepia(96%) saturate(500%)
    hue-rotate(145deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: #00ffff;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

nav a::before {
  content: "> ";
  opacity: 0;
  transition: opacity 0.3s;
}

nav a:hover::before {
  opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-badge {
  display: inline-block;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
  }
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  background: linear-gradient(135deg, #00ffff 0%, #00ff88 50%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1::after {
  content: "|";
  animation: blink 1s infinite;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.hero p {
  font-size: 22px;
  margin-bottom: 50px;
  color: #a0aec0;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
  color: #0a0e27;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.4s;
  animation: fadeInUp 0.8s ease 0.6s backwards;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

/* AI Dashboard Visualization */
.ai-dashboard {
  padding: 80px 20px;
  position: relative;
}

.dashboard-container {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(15, 20, 50, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.dashboard-title {
  font-size: 24px;
  color: #00ffff;
  font-weight: 700;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00ff88;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 10px #00ff88;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.metric-card {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: #00ffff;
  box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
}

.metric-value {
  font-size: 22px;
  font-weight: 800;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.metric-label {
  font-size: 14px;
  color: #a0aec0;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* AI Feature Cards */
.features-section {
  padding: 80px 20px;
  position: relative;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.ai-feature-card {
  background: rgba(15, 20, 50, 0.6);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px 20px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.ai-feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.ai-feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.ai-feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.ai-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.ai-feature-card:hover::before {
  left: 100%;
}

.ai-feature-card:hover {
  transform: translateY(-10px);
  border-color: #00ffff;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.2),
    rgba(0, 255, 136, 0.2)
  );
  border: 2px solid #00ffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 25px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.ai-feature-card h3 {
  font-size: 24px;
  color: #00ffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.ai-feature-card p {
  color: #a0aec0;
  line-height: 1.8;
  font-size: 16px;
}

/* AI Neural Network Visualization */
.neural-section {
  padding: 100px 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

.neural-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.neural-visual {
  margin: 50px auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.chart-card {
  background: rgba(15, 20, 50, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.chart-title {
  font-size: 24px;
  color: #00ffff;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.line-chart {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 20px 0;
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.chart-point {
  cursor: pointer;
  transition: all 0.3s;
}

.chart-point:hover {
  r: 10;
}

.tooltip {
  position: absolute;
  background: rgba(0, 255, 255, 0.95);
  color: #0a0e27;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  white-space: nowrap;
}

.tooltip.active {
  opacity: 1;
}

.tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 255, 255, 0.95);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  gap: 15px;
  padding: 20px;
}

.bar {
  flex: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 255, 0.8),
    rgba(0, 255, 136, 0.6)
  );
  border-radius: 10px;
  position: relative;
  transition: all 0.3s;
  animation: barGrow 1s ease-out forwards;
  transform-origin: bottom;
  cursor: pointer;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.bar:hover {
  opacity: 1;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  filter: brightness(1.2);
}

.bar-tooltip {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: rgba(0, 255, 255, 0.95);
  color: #0a0e27;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  pointer-events: none;
}

.bar:hover .bar-tooltip {
  transform: translateX(-50%) scale(1);
}

.bar-tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 255, 255, 0.95);
}

.bar:nth-child(1) {
  height: 55%;
  background: linear-gradient(180deg, #667eea, #764ba2);
  animation-delay: 0.1s;
}
.bar:nth-child(2) {
  height: 75%;
  background: linear-gradient(180deg, #764ba2, #f093fb);
  animation-delay: 0.2s;
}
.bar:nth-child(3) {
  height: 65%;
  background: linear-gradient(180deg, #f093fb, #ff6fdb);
  animation-delay: 0.3s;
}
.bar:nth-child(4) {
  height: 85%;
  background: linear-gradient(180deg, #4facfe, #00f2fe);
  animation-delay: 0.4s;
}
.bar:nth-child(5) {
  height: 70%;
  background: linear-gradient(180deg, #667eea, #764ba2);
  animation-delay: 0.5s;
}

/* Tech Stats */
.tech-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.tech-stat {
  text-align: center;
  padding: 15px;
  background: rgba(15, 20, 50, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s;
}

.tech-stat:hover {
  border-color: #00ffff;
  transform: translateY(-5px);
  box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
}

.tech-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  margin-bottom: 10px;
}

.tech-stat-label {
  color: #a0aec0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(15, 20, 50, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 30px;
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.2);
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 20px;
  color: #a0aec0;
  margin-bottom: 40px;
}

/* Footer */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  color: #a0aec0;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  margin: 5px 0;
  color:#a0aec0;
}
footer p a {
    color:#cfdae9;
    text-decoration: none;
}

   .popupSameUI 
{
    max-width:1300px;
    margin:auto;
}
.popupSameUI .modal-content {
    background: #a9eee8;
    padding: 30px;
}
.popuplogo 
{
    margin-bottom:50px;
}
.popuplogo img 
{
    width:150px;
}
.popupContent p {
    font-size: 28px;
    line-height: 42px;
    color: #022128;
    max-width: 475px;
    font-weight: 600;
}
.trustedPopup 
{
    margin-top:50px;
}
.trustedPopup h4 
{
    color:#000;
    font-size:22px;
    
}
.join-pt 
{
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    display: grid;
        
}
.join-pt .popup-partner 
{
    padding:15px;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 10px;
    background-color: #ffffff2e;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
    display: flex;
    overflow: visible;
    background-color: #fff;
    border-style: none;
}
.join-pt .popup-partner .img-de 
{
    justify-content: center;
    align-items: center;
    width: 132px;
    height: 33px;
    display: flex;
}
.join-pt .popup-partner .img-de img {
    max-width:100%;
}
.popup-form {
    background-color: #fff;
    border-radius: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
    padding: 32px;
    display: flex;
    position: relative;
}
.innerHead h4 
{
    text-align:center;
    font-size:24px;
    line-height:1.3;
    margin-bottom:20px;
}
.form-view input, .form-view select 
{
    border:1px solid #ddd;
    border-radius:4px;
    height:44px;
    color:#333;
}
.popupSameUI .btn-close {
    position: absolute;
    top: 3px;
    z-index: 9;
    right: 7px;
    /* background: #fff; */
    color: #000;
    opacity: 1;
}
    /* HEADER */

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* NAV – DESKTOP */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00ffff;
}

/* Close button hidden on desktop */
.close-menu {
  display: none;
}

/* MOBILE STYLE */
@media (max-width: 991px) {

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #050b1e, #020617);
    padding: 20px;
    transition: 0.4s ease;
    z-index: 10000;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    margin-top: 60px;
    gap: 20px;
    text-align: left;
    padding-left: 0;
  }

  .close-menu {
    display: block;
    font-size: 30px;
    color: #00ffff;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
  }

}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .neural-visual {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 32px;
  }
  .btn-primary {
      padding:14px 20px;
      font-size:16px;
  }
  .ai-dashboard, .features-section, .neural-section, .cta-section, .hero, footer {
      padding: 40px 0px;
  }
  .dashboard-container {
      padding: 15px;
  }
  .dashboard-header {
      flex-direction: column;
  }
  .section-title {
      margin-bottom: 25px;
  }
  .cta-content {
      padding: 20px;
  }
  .popupSameUI .modal-content {
    padding: 10px;
    height: 600px;
    /* background: red; */
    overflow-y: auto;
    overflow-x: hidden;
}
.popuplogo img {
    width: 120px;
}
.popuplogo {
    margin-bottom: 10px;
}
.popupContent p {
    font-size: 16px;
    line-height: 24px;
    color: #022128;
    max-width: 100%;
    font-weight: normal;
    text-align: justify;
    margin-bottom: 0;
}
.trustedPopup {
    margin-top: 15px;
}
.join-pt {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px;
  }

  .join-pt .popup-partner {
    flex: 0 0 auto;
    min-width: 120px; /* adjust based on image size */
    scroll-snap-align: center;
  }

  .join-pt::-webkit-scrollbar {
    height: 6px;
  }
  .join-pt::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  .trustedPopup h4 {
    color: #000;
    font-size: 22px;
    margin-bottom: 7px;
}
  .join-pt .popup-partner .img-de {
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 16px;
    display: flex;
}
.trustedPopup {
    margin-top: 15px;
    margin-bottom: 15px;
}
.popup-form {
    padding: 10px;
}
.ai-badge {
    font-size: 12px;
    padding: 10px 10px;
}
}
