/* ===========================
   DESKTOP STYLES (default)
   =========================== */
/*DESK*/
body {
    display: grid;
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  background: #0a0a23;
  color: #f3f6fa;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 6vw;
  background: transparent; /* <-- start transparent */
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10,10,35,0.85);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.logo {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(90deg, #fff, #00e6fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 2rem;
}

nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: rgba(243, 246, 250, 0.85);
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.2s;
  padding: 0.5rem 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #00e6fe, #0056ff);
  transition: width 0.2s;
}

nav a:hover {
  color: #fff;
}

nav a:hover::after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(90deg, #00e6fe 0%, #0056ff 100%);
  color: #0a0a23;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 2rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,86,255,0.18);
}

.cta-btn.large {
  font-size: 1.3rem;
  padding: 1.2rem 3rem;
  margin-top: 2.5rem;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #0056ff 0%, #00e6fe 100%);
  color: #fff;
}

.hero {
  max-width: 900px;
  margin: 7rem auto 4rem auto;
  text-align: center;
  padding: 0 4vw;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  color: #d1eaff;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

section {
  max-width: 1400px;
  margin: 8rem auto;
  padding: 0 6vw;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #00e6fe;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.services-list li {
  background: #16163a;
  margin-bottom: 0;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  font-size: 1.2rem;
  color: #f3f6fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

footer {
  text-align: center;
  padding: 2.5rem 0;
  background: #16163a;
  color: #b3b8c5;
  font-size: 1.1rem;
  margin-top: 5rem;
  border-top: 1px solid #222245;
}


.ai-types-section {
  max-width: 1440px;
  margin: 8rem auto;
  padding: 0 6vw;
}

.ai-types-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-types-list h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00e6fe;
  margin: 0;
  letter-spacing: -0.02em;
}

.ai-types-list p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #d1eaff;
  margin: 0.75rem 0 0 0;
  opacity: 0.9;
}

.data-analysis-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,230,254,0.15);
}

.features-section {
  max-width: 1400px;
  margin: 8rem auto;
  padding: 0 6vw;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.5rem;
}

.feature-card {
  background: #16163a;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 2.5rem 2rem;
  color: #fff;
  border: 1px solid #222245;
  transition: box-shadow 0.2s, border 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,230,254,0.10);
  border: 1px solid #00e6fe;
}

.feature-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #00e6fe;
}

.feature-card p {
  font-size: 1.2rem;
  color: #d1eaff;
  line-height: 1.6;
}


/* Add below your existing CSS */

.hero-ai {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  margin: 6rem auto 6rem auto;
  overflow: hidden;
  z-index: 1;
}

/* Base circles: small + invisible */
.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #00e6fe55 0%, #0056ff22 100%);
  filter: blur(10px);
  opacity: 0; /* hidden initially */
  transform: translate(-50%, -50%) scale(0.2); /* small */
}

/* Sizes */
.circle { width: 400px; height: 400px; left: 50%; top: 50%; }
.circle.small { width: 200px; height: 200px; left: 30%; top: 60%; opacity: 0.7; }
.circle.large { width: 600px; height: 600px; left: 70%; top: 40%; opacity: 0.5; }

/* Animate when JS adds this class */
.circle.animate-intro {
  animation: intro 1.5s ease-out forwards, pulse 4s infinite alternate;
}
.circle.small.animate-intro {
  animation: intro 1.5s ease-out forwards, pulse 3s infinite alternate;
}
.circle.large.animate-intro {
  animation: intro 1.5s ease-out forwards, pulse 5s infinite alternate;
}

/* Keyframes */
@keyframes intro {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

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


.hero-ai-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.animated-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0;
  position: relative;
}

.terminal-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.prompt {
  color: #00e6fe;
  opacity: 0.8;
}

.command {
  color: #4CAF50;
  margin-right: 0.5rem;
  opacity: 0.9;
  animation: fadeIn 0.5s ease-out;
}

.ai-text {
  color: #00e6fe;
  text-shadow: 0 0 20px rgba(0,230,254,0.4);
  animation: glowPulse 3s infinite alternate;
  font-weight: 700;
}

.for-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.5em;
  font-weight: 400;
  margin: 0 0.5rem;
}

.everyone-text {
  background: linear-gradient(90deg, #fff, #00e6fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}

.cursor {
  color: #00e6fe;
  animation: blink 1s infinite;
  margin-left: 0.2rem;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 20px rgba(0,230,254,0.4); }
  100% { text-shadow: 0 0 40px rgba(0,230,254,0.8); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.hero-ai-content p {
  font-size: 1.5rem;
  color: #d1eaff;
  margin-bottom: 2.5rem;
}

.cta-btn.enable-ai {
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(90deg, #00e6fe 0%, #0056ff 100%);
  color: #0a0a23;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,86,255,0.18);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.cta-btn.enable-ai:hover {
  background: linear-gradient(90deg, #0056ff 0%, #00e6fe 100%);
  color: #fff;
}


/* Ensure hero-ai and other content are above illusion */
.hero-ai,
main,
header,
footer {
  position: relative;
  z-index: 2;
}

/* Make circles bigger for full screen effect */
.circle {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, #00e6fe55 0%, #0056ff22 100%);
  width: 700px; height: 700px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s infinite alternate;
  filter: blur(16px);
}

.circle.small {
  width: 350px; height: 350px;
  left: 20%; top: 70%;
  animation: pulse 3s infinite alternate;
  opacity: 0.7;
}

.circle.large {
  width: 1000px; height: 1000px;
  left: 80%; top: 30%;
  animation: pulse 5s infinite alternate;
  opacity: 0.5;
}

/* Add below your existing CSS */

.ai-types-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ai-types-list {
  text-align: left;
}

.ai-types-list h3 {
  font-size: 2.5rem; /* Bigger, like your feature cards */
  color: #00e6fe;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.ai-types-list p {
  font-size: 1.15rem;
  color: #d1eaff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.data-analysis-img {
  max-width: 100%;
  width: 400px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,230,254,0.10);
  background: #16163a;
  padding: 1rem;
}

  .ai-types-visual {
    justify-content: center;
    margin-top: 2rem;
  }

/* ===========================
   MOBILE STYLES (max-width: 600px)
   =========================== */
@media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
        display: block;
    }
    
    .section {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .animated-title{
        font-size: 2rem;
        line-height: 1.2;
        word-break: break-word;
        white-space: normal;
        text-align: center;
    }
    
    .cta-btn{
        max-width: 100%;
        padding: 0.6rem 1.2rem;
        display: inline-block;
        text-align: center;
    }
    
    .features-grid {
        display: block;
    }
    
  
  /* Navbar */
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.2rem;
  }

  nav ul {
    display: none; /* hide desktop nav links */
  }

  /* Logo */
  .logo {
    font-size: 1.6rem;
    padding-right: 0;
  }

  /* Hero Section */
  .hero-ai {
    display: block;
    min-height: 50vh;
  }
  
  .terminal-line{
      font-size: 35px;
      display: flex;
      flex-wrap: wrap;
      white-space: normal;
      line-height: 1.4;
      max-width: 100%;
      justify-content: center;
  }

  .animated-title {
    font-size: 2rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-ai-content p {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 0.5rem;
  }
  
  .cta-btn.enable-ai{
      margin: 0;
  }
  
  .services-list{
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }
  
  .services-list li{
      font-size: 18px;
      padding: 20px;
      text-align: center;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    font-size: 1rem;
    margin: 1rem;
    text-align: center;
    padding: 1rem;
  }
  
  .feature-card h3 {
      font-size: 1.5rem;
  }
  
  .feature-card p {
      font-size: 0.8rem;
  }

  /* AI Types */
  .ai-types-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .ai-types-list h3 {
    font-size: 1.6rem;
  }

  .ai-types-list p {
    font-size: 1rem;
  }

  .data-analysis-img {
    width: 100%;
    max-width: 320px;
  }
}
