.ai-section {
  background: #031633;
  /*padding: 120px 0;*/
  overflow: hidden;
}

.ai-section .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.ai-content {
  flex: 1;
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(78,161,255,.25);
  color: #4ea1ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ai-content h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  margin: 25px 0;
}

.ai-content p {
  color: #a7b8d8;
  line-height: 1.8;
  font-size: 18px;
}

.ai-features {
  margin-top: 40px;
}

.ai-feature {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.ai-feature span {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient( 135deg, #2563eb, #06b6d4 );
  font-size: 24px;
}

.ai-feature h4 {
  color: #fff;
  margin-bottom: 8px;
}

.ai-feature p {
  margin: 0;
  font-size: 15px;
}

.ai-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient( 135deg, #2563eb, #06b6d4 );
  box-shadow: 0 15px 35px rgba(37,99,235,.35);
  transition: .3s;
}

.ai-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* RIGHT SIDE */

.ai-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ai-card {
  width: 500px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 60px rgba(0,102,255,.2);
}

.prediction-card, .insight-card {
  background: rgba(255,255,255,.05);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.prediction-card h5, .insight-card h5 {
  color: #4ea1ff;
}

.prediction-row {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: 12px;
}

.insight-card h3 {
  color: #fff;
  margin-top: 10px;
}

.insight-card p {
  margin-top: 10px;
}

.graph-card {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

.bar {
  width: 45px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient( to top, #2563eb, #00e5ff );
  animation: grow 2s ease infinite alternate;
}

.b1 {
  height: 60px;
}

.b2 {
  height: 110px;
}

.b3 {
  height: 160px;
}

.b4 {
  height: 90px;
}

.b5 {
  height: 140px;
}

@keyframes grow {
  from {
    opacity: .7;
  }
  to {
    opacity: 1;
  }
}

@media (max-width:991px) {
  .ai-section .container {
    flex-direction: column;
  }
}

@media (max-width:991px) {
  .ai-content h2 {
    font-size: 40px;
  }
}

@media (max-width:991px) {
  .ai-card {
    width: 100%;
  }
}

