.ai_hero {
  background-color: #000;
  color: #fff;
  padding: 200px 20px;
  position: relative;
  overflow: hidden;
  
  /* Softer Yellow Grid Lines (opacity reduced to 0.08) */
  background-image: 
    linear-gradient(to right, rgba(255, 221, 0, 0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 221, 0, 0.01) 1px, transparent 1px);
  background-size: 70px 70px;
}

.ai_icon {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.223);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.866);
  z-index: 2;
}


.ai_container {
  max-width: 800px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ai_title {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.ai_svg {
  width: 32px;
  height: 32px;
  stroke: #d4af37; /* Dark Yellow (Gold-like) */
  stroke-width: 2.5; /* Slightly bolder stroke */
}


.ai_title span {
  color: #facc15; /* Tailwind's yellow-400 */
}

.ai_subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.ai_buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;.ai_btn_primary {
  background: #facc15;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 30%;
}
.ai_btn_primary:hover {
  background: #000000;
  color: #ffffff;
  border: 2px solid #facc15;
}

}



.ai_btn_secondary {
  background-color: transparent;
  border: 2px solid #facc15;
  color: #facc15;
}

.ai_icon {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.ai_icon1 {
  top: -1rem;
  left: 1rem;
  animation-delay: 0s;
}

.ai_icon2 {
 bottom: -1rem;
  left: 29%;
  animation-delay: 1.5s;
}

.ai_icon3 {
   top: 3rem;
  right: 2rem;
  animation-delay: 3s;
}

.ai_svg {
  width: 12px;
  height: 12px;
  stroke: #000000;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
.ai_features {
  background-color: #000;
  color: #fff;
  padding: 100px 120px;
  text-align: center;
}

.ai_features_title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.ai_features_title span {
  color: #facc15;
}

.ai_features_subtitle {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.ai_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-content: center;
}

.ai_feature_card {
  background-color: #000;
  border: 1px solid rgba(255, 221, 0, 0.2);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left;
  transition: 0.3s ease;
}

.ai_feature_card:hover {
  border-color: #facc15;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px #ffd70033;
}

.ai_feature_icon {
  margin-bottom: 16px;
}

.ai_svg {
  width: 36px;
  height: 36px;
  stroke: #d4af37;
  stroke-width: 2.5;
}
.ai_generator {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
}

.ai_gen_title {
  font-size: 3rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  font-weight: 700;
  margin-bottom: 10px;
}

.ai_gen_subtitle {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.ai_tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ai_tab {
  display: flex;
  align-items: center; /* Vertically center icon and text */
  justify-content: center; /* Center content horizontally */
  gap: 8px; /* Space between icon and text */
  background: transparent;
  border: 1px solid #444;
  padding: 10px 20px;
  color: #fff;
  width: 230px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}


.ai_tab.active {
  background-color: #facc15;
  color: #000;
  border-color: #facc15;
}

.ai_gen_desc {
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* Countdown Styles */
.ai_countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  font-family: sans-serif;
}

.ai_days {
  font-size: 80px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.ai_days .label {
  position: absolute;
  right: -55px;
  top: 50px;
  background-color: #facc15;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 3px;
}

.ai_time {
  text-align: center;
}

.ai_time span {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.ai_time .label {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}
.ai_prompt_box {
  border: 1px solid #facc15;
  border-radius: 12px;
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
  background-color: transparent;
  margin-top: 30px;
}

.ai_prompt_box label {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
}

.ai_prompt_box textarea {
  width: 100%;
  height: 120px;
  border: 1px yellow solid;
  border-radius: 10px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 16px;
  font-size: 1rem;
  resize: none;
  outline: none;
}
.ai_intro_section {
  background: #000;
  color: #fff;
  /* padding: 60px 20px; */
  text-align: center;
  font-family: sans-serif;
}

.ai_intro_content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.ai_intro_content h2 span {
  color: #fff;
  font-weight: 400;
}
.ai_intro_content h2 span + * {
  color: #ffc107;
  font-weight: 700;
}

.ai_intro_content p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ccc;
}

.ai_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.ai_card {
  background: #111;
  border: 1px solid #333;
  padding: 30px 20px;
  border-radius: 10px;
  width: 220px;
  transition: 0.3s;
}
.ai_card:hover {
  border-color: #ffc107;
  box-shadow: 0 0 10px #ffc10755;
}
.ai_card.active {
  background: #111;
  box-shadow: 0 0 20px #ffc10755;
  border-color: #ffc107;
}
.ai_card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffc107;
}
.ai_card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.ai_card p {
  font-size: 0.9rem;
  color: #aaa;
}

.ai_cta h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.ai_cta h3 span {
  color: #ffc107;
}
.ai_cta p {
  color: #ccc;
  margin-bottom: 20px;
}

.cta_btn {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.cta_btn:hover {
  background: #e0a800;
}
 .ai_cta{
  margin-bottom: 100px;
 }
@media (max-width: 768px) {
  .ai_hero {
    padding: 180px 20px;
    background-size: 40px 40px;
  }
  .ai_buttons {
    .ai_btn_primary {
        background: #facc15;
        color: #000;
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        width: 100%;
    }
}
.ai_icon1 {
    top: -5rem;
    left: 1rem;
    animation-delay: 0s;
}
.ai_icon2 {
    bottom: -6rem;
    left: 29%;
    animation-delay: 1.5s;
}
.ai_icon3 {
    top: 3rem;
    right: 0rem;
    animation-delay: 3s;
}

  .ai_title {
    font-size: 2.5rem;
  }

  .ai_subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .ai_buttons {
    flex-direction: column;
    gap: 12px;
  }

  .ai_btn_primary, .ai_btn_secondary {
    width: 100%;
    text-align: center;
  }

  .ai_features {
    padding: 60px 20px;
  }

  .ai_features_title {
    font-size: 2rem;
  }

  .ai_features_subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .ai_gen_title {
    font-size: 2rem;
  }

  .ai_gen_subtitle {
    font-size: 1rem;
  }

  .ai_tabs {
    flex-direction: column;
  }

  .ai_tab {
    width: 100%;
  }

  .ai_countdown {
    /* flex-direction: column; */
    gap: 20px;
  }

  .ai_days {
    font-size: 48px;
  }

  .ai_days .label {
    right: 0;
    top: 48px;
  }

  .ai_time span {
    font-size: 24px;
  }

  .ai_intro_content h2 {
    font-size: 2rem;
  }

  .ai_cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .ai_card {
    width: 90%;
  }

  .ai_cta h3 {
    font-size: 1.6rem;
  }

  .cta_btn {
    width: 100%;
    text-align: center;
  }
  .ai_intro_content p {
   padding: 15px 20px;
}
 .ai_cta{
  padding: 15px 20px;
 }
}
