.about-ai {
  background: radial-gradient(circle at center, #000000 60%, #111111);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-ai-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.about-ai-heading p {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 50px;
}

.about-ai-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.ai-card::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #7CFC00;
  border-radius: 50%;
}

.ai-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.ai-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ai-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.about-ai-btn {
  margin-top: 60px;
}

.start-btn {
  display: inline-block;
  color: #fff;
  background: none;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.start-btn:hover {
  background: #7CFC00;
  color: #000;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
  .about-ai {
    padding: 50px 15px;
  }

  .about-ai-heading h2 {
    font-size: 1.8rem;
  }

  .about-ai-heading p {
    font-size: 1rem;
  }

  .ai-card {
    padding: 20px 15px;
  }

  .ai-card h3 {
    font-size: 1rem;
  }

  .ai-card p {
    font-size: 0.9rem;
  }

  .start-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}


/*new card*/


.about-trust {
  background: #ffffff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  color: #0a0a2a;
}

.trust-heading h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #0a0a2a;
  margin-bottom: 5px;
  line-height: 1.4;
}

.trust-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-card {
  flex: 1 1 280px;
  max-width: 300px;
}

.trust-card img {
 
  min-width: 60%;
  max-width: 60%;
  min-height: 100%;
  max-height: 100%;
  margin-bottom: -8px;
}

.trust-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a0a2a;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.trust-card:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .about-trust {
    padding: 60px 15px;
  }

  .trust-heading h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .trust-cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .trust-card img {
    width: 60px;
    height: 60px;
  }

  .trust-card h3 {
    font-size: 1.1rem;
  }

  .trust-card p {
    font-size: 0.9rem;
  }
}


/*bot start*/


.bot-testimonials {
  background: #1c1b1b;
  /*background: #f8fcff;*/
  text-align: center;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.bot-heading h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color:white;
  margin-bottom: 60px;
  line-height: 1.3;
}

.bot-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.bot-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 35px 25px;
  text-align: left;
  width: 340px;
  position: relative;
  transition: all 0.3s ease;
}

.bot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.bot-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0a2a;
  margin-bottom: 10px;
}

.bot-stars {
  color: #ffcc00;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.bot-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bot-link {
  display: inline-flex;
  align-items: center;
  color: #0088cc;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.bot-link::before {
  content: '+';
  font-size: 1.2rem;
  margin-right: 6px;
  color: #00b8d8;
  font-weight: bold;
}

.bot-link:hover {
  color: #005b8f;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .bot-testimonials {
    padding: 60px 15px;
  }

  .bot-heading h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .bot-card {
    width: 100%;
    max-width: 360px;
  }

  .bot-card p {
    font-size: 0.9rem;
  }
}



/*slider */



.aibot {
  background-color: #0b0f2e;
  color: #ffffff;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.aibot-content {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.aibot-text {
  flex: 1 1 500px;
}

.aibot-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.aibot-text p {
  font-size: 1.1rem;
  color: #d1d1e0;
  margin-bottom: 30px;
}

.aibot-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.aibot-btn-primary {
  background-color: #00c2d1;
  color: #fff;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.aibot-btn-primary:hover {
  background-color: #00a6b3;
}

.aibot-btn-video {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.aibot-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  margin-right: 10px;
  font-size: 0.9rem;
}

.aibot-duration {
  font-size: 0.85rem;
  color: #bbb;
  margin-left: 5px;
}

.aibot-image {
  flex: 1 1 500px;
  position: relative;
  text-align: center;
}

.aibot-phone {
   right: -19%;
  bottom: 83px;
  animation-delay: 2s;
  height: 119px;
  width: 119px;
}

.aibot-chart {
  position: absolute;
  top: 30px;
  right: 0;
  width: 400px;
  opacity: 0.9;
  border-radius: 10px;
  z-index: 1;
}

/* Floating Crypto Icons */
.aibot-icon {
  position: absolute;
  width: 60px;
  opacity: 0.9;
  animation: float 5s ease-in-out infinite;
}

.aibot-btc {
  top: 50px;
  left: 60%;
   height: 109px;
  width: 109px;
  animation-delay: 0s;
}

.aibot-eth {
 bottom: 83px;
  left: 8%;
  animation-delay: 2s;
  height: 119px;
  width: 119px;
}

.aibot-xrp {
  right: -19%;
  bottom: 83px;
  animation-delay: 2s;
  height: 119px;
  width: 119px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .aibot-content {
    flex-direction: column;
    text-align: center;
  }

  .aibot-text h1 {
    font-size: 2.2rem;
  }

  .aibot-phone {
    width: 220px;
    margin-top: 40px;
  }

  .aibot-chart {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }

  .aibot-icon {
    display: none; /* hide floating icons on mobile */
  }
}

@media (max-width: 600px) {
  .aibot {
    padding: 70px 15px;
  }

  .aibot-text p {
    font-size: 1rem;
  }

  .aibot-btn-primary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}


