.cursor-letter {
  position: fixed;
  top: 0;
  left: 0;
  width: 35px;
  height: 25px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor-letter svg path,
.cursor-letter svg rect,
.cursor-letter svg polygon,
.cursor-letter svg polyline,
.cursor-letter svg line {
  fill: rgb(0, 0, 0);
  stroke: rgb(255, 255, 255);
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
  backdrop-filter: blur(20px); 
}
/* Hero Section with gradient overlay */
.ai_software-hero {
  position: relative;
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.ai_software-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #facc15, transparent 60%);
  opacity: 0.1;
  z-index: 0;
}
.ai_software-image-wrapper img {
  border-radius: 12px;
  /* border: 20px solid rgba(50, 50, 50, 0.6); */
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.7); */
  max-width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.05);   
  -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 1rem;
}


.ai_software-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
  color: #fff;
      margin-top: 100px;
}
.ai_software-heroo {
    position: relative;
    background: #000;
    padding: 10px 5px;
    text-align: center;
}
.ai_software-hero-content h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ai_software-gradient-text {
  background: linear-gradient(90deg, #facc15, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s linear infinite;
  display: inline-block;
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 40% center;
  }
}

.ai_software-hero-content p {
  color: #d4d4d4;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Buttons */
.ai_software-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ai_software-btn {
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  min-width: 180px;
  text-align: center;
}

.ai_software-primary {
  background: linear-gradient(to right, #facc15, #fcd34d);
  color: black;
}

.ai_software-primary:hover {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  transform: scale(1.05);
}
.ai_software-btn.primary {
  background: #FFD600;
  color: black;
  box-shadow: 0 0 20px #FFD600;
  transition: all 0.3s ease;
}

.ai_software-btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #FFD600;
}

.ai_software-secondary {
  border: 2px solid #facc15;
  color: #facc15;
  background: transparent;
}

.ai_software-secondary:hover {
  background-color: #facc15;
  color: #000;
  transform: scale(1.05);
}

/* Image Section */
.ai_software-image img {
  width: 100%;
  max-width: 720px;
  border-radius: 10px;
  border: 2px solid #3f3f3f;
  margin-top: 30px;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.1);
}


/* Section: Stats */
.ai_software-stats {
  background: #111;
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}

.ai_software-stat-box {
  flex: 1 1 200px;
  max-width: 220px;
}

.ai_software-stat-box h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.ai_software-stat-box p {
  margin-top: 0.5rem;
  color: #ccc;
}

/* Section: Features */
.ai_software-features {
  padding: 4rem 8rem;
  text-align: center;
  background: #000;
}

.ai_software-features h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.ai_software-features h2 span {
  color: #FFD700;
}

.ai_software-features p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.ai_software-feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 2rem 0;
}
.ai_software-feature-svg {
  align-self: flex-end;
  margin-top: 1rem;
}

.svg-icon {
  width: 32px;
  height: 32px;
  color: #FFD700;
}
.ai_software-feature-item {
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 2rem;
  /* background: #111; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* box-shadow: 0 0 0 transparent; */
  position: relative;
  /* padding: 2rem; */
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.ai_software-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.ai_software-feature-icon {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
}

.ai_software-feature-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: white;
}

.ai_software-feature-desc {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Section: Industries */
.ai_software-industries {
  padding: 4rem 1rem;
  text-align: center;
  background: #111;
}

.ai_software-industries h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.ai_software-industries h2 span {
  color: #FFD700;
}

.ai_software-industries p {
  color: #aaa;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}


.ai_software-industry-box {
  /* border: 1px solid rgba(255, 215, 0, 0.2); */
  width: 300px;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  /* background: #111; */
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}
@media (max-width: 1024px) {
  .ai_software-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ai_software-industries-grid {
    grid-template-columns: 1fr;
  }
  
}

.ai_software-industry-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.35), 
              inset 0 0 10px rgba(255, 215, 0, 0.1);
}


.ai_software-explore-btn {
  background: linear-gradient(90deg, #FFD700, #ffcc00);
  border: none;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai_software-explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}
.ai_software-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 boxes per row */
  gap: 1.5rem;
  justify-items: center;
  padding: 4rem 8rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .ai_software-industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  .ai_software-stat-box h3 {
    font-size: 1.5rem;
  }

  .ai_software-features h2,
  .ai_software-industries h2 {
    font-size: 1.8rem;
  }
}
.ai_software-btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ai_software-explore-btn {
  background-color: #FFD70010;
  color: black;
  border: 1px solid #FFD70050;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: normal;
}

.ai_software-explore-btn:hover {
  background-color: #FFD70030;
}
.ai_software_testimonials {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.ai_software_container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ai_software_heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 40px;
}

.ai_software_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ai_software_card {
  background: #111;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  max-width: 350px;
  flex: 1;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s;
  text-align: left;
}

.ai_software_card:hover {
  transform: translateY(-5px);
}

.ai_software_stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.ai_software_cta {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin: 60px auto 0;
  max-width: 800px;
  padding: 40px 20px;
  text-align: center;
  /* box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); */
  padding: 3rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.ai_software_cta h3 {
  font-size: 1.8rem;
  /* color: #FFD700; */
  margin-bottom: 10px;
  background: linear-gradient(90deg, #facc15, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
}

.ai_software_cta p {
  margin-bottom: 20px;
  color: #ccc;
}

.ai_software_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.ai_software_btn {
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}

.ai_software_btn.yellow {
  background: #FFD700;
  color: #000;
  border: none;
}

.ai_software_btn.outline {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

@media (max-width: 768px) {
  .ai_software_heading {
    font-size: 2rem;
  }
  .ai_software_card {
    max-width: 100%;
     flex: 1 1 100%;
  }
  .ai_software_cta h3 {
    font-size: 1.5rem;
  }
  
}

/* Responsive */
@media (max-width: 600px) {
  .ai_software-hero-content h1 {
    font-size: 2rem;
  }

  .ai_software-btn {
    width: 100%;
  }

  .ai_software-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .ai_software-features {
    padding: 4rem 1rem;
  }
  .ai_software-btn-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

}




/* Industries  */

.ai_industry_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 8rem;
  background: #000;
  justify-content: center;
}

.ai_indus_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.08);
  transition: all 0.3s ease;
}

.ai_indus_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.4), inset 0 0 6px rgba(255, 215, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.card-header img {
  width: 28px;
  height: 28px;
}

.card-header h3 {
  font-size: 1.2rem;
  color: #FFD700;
  margin: 0;
}

.ai_indus_card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #ccc;
}

.features strong {
  display: block;
  color: #FFD700;
  margin-bottom: 0.4rem;
}

.features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 1rem;
}

.features li::before {
  content: "•";
  color: #FFD700;
  margin-right: 6px;
}

.highlight {
  background: #1a1a1a;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  color: #FFD700;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.card-image {
  width: 100%;
  border-radius: 10px;
  margin-top: 1rem;
}
.card-header svg{
    color: #facc15;
}
.success-stories {
  padding: 4rem 1rem;
  text-align: center;
  /* background-color: #111; */
}

.success-stories h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.success-stories h2 span {
  color: #FFD700;
}

.success-stories p {
  color: #aaa;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.success-box {
  /* background: rgba(255, 255, 255, 0.05); */
  /* border: 1px solid rgba(255, 215, 0, 0.2); */
  /* box-shadow: 0 0 20px rgba(255, 215, 0, 0.08); */
  border-radius: 12px;
  padding: 1.5rem;
  width: 420px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}


.success-box h3 {
  color: #FFD700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.success-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.success-boxx {
  /* background: rgba(255, 255, 255, 0.05); */
  /* border: 1px solid rgba(255, 215, 0, 0.2); */
  /* box-shadow: 0 0 20px rgba(255, 215, 0, 0.08); */
  border-radius: 12px;
  padding: 1.5rem;
  width: 350px;
  color: white;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}


.success-boxx h3 {
  color: #FFD700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.success-boxx strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}


/* Responsive */
@media (max-width: 768px) {
  .ai_industry_cards {
    grid-template-columns: 1fr;
  }
  .success-box {
    width: 100%;
  }
  .ai_indus_card {
    width: 350px;
  }
}


/* features  */
.features_section{
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem
}
.features_row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.features_card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  width: 540px;
  text-align: left;
  color: #fff;
}


.features_icon {
  margin-bottom: 16px;
}

.features_card h3 {
  margin: 12px 0;
}

.features_card ul {
  margin-left: 20px;
  color: #ccc;
   list-style: none;
}




.features_title {
  font-size: 2.5rem;
  color: #fff;
}

.features_title span {
  color: #FFD700;
}

.features_subtitle {
  color: #ccc;
  margin-bottom: 40px;
  text-align: center;
}
.features_icon svg{
    color: #f59e0b;
    width: 4rem;
}
.success-boxx svg{
    color: #f59e0b;
    margin-bottom: 10px;
}
.features_card ul li {
  position: relative;
  padding-left: 20px;
  color: #ccc; 
  text-align: left;
}


.features_card ul li::before {
  content: "•"; /* custom bullet */
  position: absolute;
  left: 0;
  color: yellow; /* bullet color */
  font-size: 1.8em;
  line-height: 1;
}

.feature_ {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  font-family: sans-serif;
}

.feature_SeamlessIntegrations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.feature_SeamlessIntegrations .text-contentt {
  flex: 1 1 500px;
}

.feature_SeamlessIntegrations h2 {
  color: #ffd700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: left;
}

.feature_SeamlessIntegrations p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ccc;
}

.feature_SeamlessIntegrations .features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature_SeamlessIntegrations .feature-box {
  /* background-color: #1a1a1a; */
  border: 1px solid #333;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.feature_SeamlessIntegrations .feature-box h3 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.feature_SeamlessIntegrations .feature-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

.feature_SeamlessIntegrations .see-all-btn {
  background-color: #ffd700;
  border: none;
  padding: 10px 25px;
  color: #000;
  border-radius: 25px;
  font-weight: bold;
  cursor: none;
  transition: background 0.3s ease;
}

.feature_SeamlessIntegrations .see-all-btn:hover {
  background-color: #e6c200;
}

.feature_SeamlessIntegrations .image-contentt {
  flex: 1 1 400px;
  text-align: center;
}

.feature_SeamlessIntegrations .image-contentt img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature_SeamlessIntegrations {
    flex-direction: column;
    text-align: center;
  }

  .feature_SeamlessIntegrations .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .feature_SeamlessIntegrations .features-grid {
    grid-template-columns: 1fr;
  }

  .feature_SeamlessIntegrations .feature-box {
    padding: 15px;
  }
}

.AI_Capa_ {
  background-color: #0a0a0a;
  padding: 60px 150px;
  color: #fff;
  font-family: sans-serif;
}

.AI_Capa_header {
  text-align: center;
  margin-bottom: 40px;
}

.AI_Capa_header h2 {
  font-size: 2.5rem;
  color: #ffd700;
}

.AI_Capa_header p {
  color: #ccc;
  font-size: 1rem;
  margin-top: 10px;
}

.AI_Capa_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.AI_Capa_card {
  background-color: #1a1a1a;
  /* border: 1px solid #333; */
  border-radius: 12px;
  padding: 25px;
  /* box-shadow: 0 0 10px rgba(255, 215, 0, 0.1); */
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.AI_Capa_icon {
  font-size: 2rem;
  color: #facc15;
  margin-bottom: 15px;
}

.AI_Capa_card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.AI_Capa_card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.AI_Capa_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.AI_Capa_list li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #ddd;
}

.check-icon {
  margin-right: 8px;
  stroke: #facc15;
  flex-shrink: 0;
}
.AI_Capa_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns by default */
  gap: 30px;
}

.Inte_process {
  /* background: #0a0a0a; */
  padding: 60px 100px;
  text-align: center;
  color: #fff;
}

.Inte_process_header h2 {
  font-size: 2.5rem;
  color: #fff;
}

.Inte_process_header h2 span {
  color: #facc15; /* yellow part */
}

.Inte_process_header p {
  color: #ccc;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 40px;
}

.Inte_process_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.Inte_card {
  /* background: #1a1a1a; */
  /* border: 1px solid #333; */
  border-radius: 12px;
  padding: 30px 20px;
  /* box-shadow: 0 0 10px rgba(255, 215, 0, 0.1); */
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.step_number {
  width: 60px;
  height: 60px;
  background-color: #facc15;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 2rem;
}

.step_icon {
  font-size: 2rem;
  color: #facc15;
  margin-bottom: 15px;
}

.Inte_card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.Inte_card p {
  font-size: 0.9rem;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .AI_Capa_grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
  .AI_Capa_ {

    padding: 10px 20px;
    
}
.Inte_process {

    padding: 50px 20px;
}
}

.popu_ai_section {
  background: #0a0a0a;
  padding: 60px 100px;
  color: #fff;
  text-align: center;
}

.popu_ai_header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #facc15, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
    display: inline-block;
}

.popu_ai_header h2 span {
  color: #facc15;
}

.popu_ai_header p {
  color: #ccc;
  margin-bottom: 40px;
}

.popu_ai_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.popu_ai_card {
  /* background: #1a1a1a; */
  /* border: 1px solid #333; */
  border-radius: 12px;
  padding: 20px;
  /* box-shadow: 0 0 10px rgba(250, 204, 21, 0.1); */
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.10);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.popu_ai_card:hover {
  transform: translateY(-5px);
}

.popu_ai_card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.popu_ai_card span {
  color: #facc15;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.popu_ai_card p {
  color: #ccc;
  font-size: 0.9rem;
}
/* ---------- Simple API Integration Section ---------- */
/* Simple_API section container */
.Simple_API {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #000; /* dark bg */
  color: #fff;
  gap: 40px;
}

/* Left content - text side */
.Simple_API .left {
  flex: 1 1 500px;
  max-width: 600px;
}

.Simple_API .left h2 {
  font-size: 2.5rem;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.Simple_API .left p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #ccc;
}

.Simple_API .left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.Simple_API .left ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: #eee;
}



/* Button */
.Simple_API .left .btn {
  background: #FFD700;
  padding: 10px 25px;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
  cursor: none;
}

.Simple_API .left .btn:hover {
  background: #ffc400;
}

/* Right code box */
.Simple_API .right {
  flex: 1 1 500px;
  max-width: 600px;
}

.Simple_API .code-box {
  background: #0d1320;
  color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px #ffd70033;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  white-space: pre-wrap;
  overflow-x: auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .Simple_API {
    flex-direction: column;
    align-items: flex-start;
  }

 .Simple_API .left,
  .Simple_API .right {
    padding-right: 10px;
    padding-left: 10px;
  }

  .Simple_API .left h2 {
    font-size: 2rem;
    text-align: center;
  }
  .Simple_API .code-box {
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

  .Simple_API .code-box {
    margin-top: 20px;
  }
  .popu_ai_section {
    background: #0a0a0a;
    padding: 25px 30px;
    color: #fff;
    text-align: center;
}
.Simple_API .left ul li {
    text-align: left;
}

 .Simple_API,
  .popu_ai_section {
    padding-left: 20px;
    padding-right: 20px;
  }
}


@media (max-width: 600px) {
  .feature_SeamlessIntegrations h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.features_section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}
.Simple_API {
    padding: 62px 1px;
}
}