/*Multi Image content*/

.ai-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #f9fafb;
  color: #1f2937;
}

.ai-content {
  flex: 1 1 50%;
  max-width: 600px;
  padding-right: 2rem;
}

.ai-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.ai-content h2 span {
  color: #2563eb;
}

.ai-content p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ai-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.8;
}

.ai-images {
  flex: 1 1 45%;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  margin-top: 2rem;
}

.ai-images img {
  width: auto;
  height: 260px; 
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.ai-images .center-image {
  transform: translateY(-40px); 
  z-index: 1;
}



/*Image Animate*/
.ai-animate-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 2rem;
  background: #0f172a; 
  color: #e0f2fe;
}

.ai-animate-content {
  flex: 1 1 50%;
  max-width: 600px;
  padding-right: 2rem;
}

.ai-animate-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 1rem;
}

.ai-animate-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.ai-visual {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ai-pulse {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-pulse img {
  width: 100px;
  height: 100px;
  animation: scan 4s linear infinite;
  filter: drop-shadow(0 0 8px #38bdf8);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(14, 165, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

@keyframes scan {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}


/*contents*/
.section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 4rem 2rem;
    }

    .text-content {
      flex: 1 1 50%;
      padding-right: 2rem;
      padding-left:1rem;
    }

    .text-content h2 {
      font-size: 2rem;
      color: #1e3a8a;
      margin-bottom: 1rem;
    }

    .text-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #374151;
    }

    .image-content {
      flex: 1 1 45%;
      text-align: center;
    }

    .image-content img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      height:400px;
      width:500px;
    }

    .highlight-section {
      background-color: #0f172a;
      color: #e0f2fe;
      text-align: center;
      padding: 4rem 2rem;
    }

    .highlight-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .highlight-section p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: auto;
    }

    .grid-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 4rem 2rem;
      background-color: #f1f5f9;
    }

    .card {
      background: #fff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      color: #1e3a8a;
      margin-bottom: 0.5rem;
    }

    .card p {
      color: #4b5563;
      font-size: 0.95rem;
    }




/* services */
.ai-ml-showcase {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  overflow: hidden;
}

.typing-header h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  z-index: 1;
  position: relative;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.animated-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 80%);
  animation: rotate-bg 20s linear infinite;
  z-index: 0;
}

@keyframes rotate-bg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


