.ai_web_section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  margin-top: 120px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.ai_web_container {
  max-width: 1000px;
  margin: auto;
}


.ai_web_tagline {
  border-radius: 1rem;
  padding: 0.5rem 1rem 10px 1rem;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  border-width: 1px;
    border-color: #ffffff1a;
    background-color: #ffffff0d;
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-backdrop-blur: blur(12px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}


.ai_web_heading {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 20px;
}

.ai_web_highlight {
  color: yellow;
}

.ai_web_bold {
  color: white;
  font-weight: bold;
}

.ai_web_subtext {
  font-size: 18px;
  color: #cccccc;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.ai_web_buttons {
  margin-top: 30px;
}

.ai_web_btn_primary,
.ai_web_btn_secondary {
  display: inline-block;
  margin: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ai_web_btn_primary {
  background-color: yellow;
  color: black;
}

.ai_web_btn_primary:hover {
  background-color: #ffe600;
}

.ai_web_btn_secondary {
  border: 2px solid white;
  color: white;
}

.ai_web_btn_secondary:hover {
  background-color: white;
  color: black;
}

.ai_web_features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.ai_web_feature_box {
  background-color: #111;
  border-radius: 12px;
  padding: 20px;
  min-width: 140px;
  /* color: yellow; */
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.ai_web_features_section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.ai_web_features_container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ai_web_features_heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ai_web_features_subtext {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 40px;
}

.ai_web_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.ai_web_feature_card {
  background-color: rgba(255, 255, 255, 0.05); /* for slight glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  box-shadow: 0 25px 50px -12px rgba(106, 87, 87, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}



.ai_web_feature_card:hover {
  transform: translateY(-5px);
}

.ai_web_icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
}

.ai_web_feature_card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ai_web_feature_card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

.ai_web_hover_underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background-color: yellow;
  transition: width 0.3s ease;
}

.ai_web_feature_card:hover .ai_web_hover_underline {
  width: 100%;
}
.ai_web_cta_section {
  background-color: #000;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai_web_cta_box {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 700px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(106, 87, 87, 0.25);
  color: white;
}

.ai_web_cta_box h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.ai_web_cta_box p {
  color: #cccccc;
  font-size: 16px;
  margin-bottom: 30px;
}

.ai_web_cta_button {
  background-color: yellow;
  color: black;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.ai_web_cta_button:hover {
  background-color: #f9f92d;
}
.ai_web_platform_section {
  background: #000;
  padding: 80px 20px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.ai_web_platform_wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ai_web_platform_title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ai_web_platform_subtext {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 40px;
}

.ai_web_platform_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.ai_web_platform_card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai_web_platform_card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.ai_web_platform_card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.ai_web_platform_card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
}

.ai_web_platform_card ul {
  list-style: none;
  padding-left: 0;
}

.ai_web_platform_card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #eee;
  text-align: left;
}

.ai_web_platform_card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #f9f92d;
  font-size: 18px;
  line-height: 1;
}

.ai_web_workflow {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ai_web_workflow h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ai_web_steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.ai_web_step {
  text-align: center;
  color: white;
  font-size: 14px;
  max-width: 160px;
}

.ai_web_step span {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #f9f92d;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  line-height: 32px;
  margin-bottom: 8px;
}
.ai_web_step_section {
  background: #000;
  color: #fff;
  padding: 0px 20px;
}

.ai_web_step_wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  border-radius: 20px;
  background: #111;
  box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
}

.ai_web_step_heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.ai_web_step_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.ai_web_step_card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai_web_step_number {
  background: #f9f92d;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.ai_web_step_card h3 {
  margin-bottom: 10px;
}

.ai_web_step_card p {
  color: #ccc;
  font-size: 14px;
}
@media (max-width: 768px) {
  .ai_web_heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 20px;
}
.ai_web_tagline {
    border-radius: 1rem;
    padding-top: 0.5rem;
    width: 350px;
    margin: 0 auto; 
    text-align: center; 
}

   
}