.responsive-heading {
    text-align: center;
  }

  .responsive-heading h1 {
    margin: 0;
  }

  .responsive-heading span {
    font-size: 56px;
    line-height: 1.2;
  }

  .responsive-heading .white-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
  }

  .responsive-heading .gradient-text {
    background: linear-gradient(90deg, #6F2DA8 0%, #8B4A9E 30%, #C056A1 60%, #E75480 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    margin-right: 6px;
  }

  /* 📱 Responsive adjustments */
  @media (max-width: 1024px) {
    .responsive-heading span {
      font-size: 44px;
    }
  }

  @media (max-width: 768px) {
    .responsive-heading span {
      font-size: 34px;
    }
  }

  @media (max-width: 480px) {
    .responsive-heading span {
      font-size: 30px;
      line-height: 1.3;
    }
  }
.main-con {
 background:#02010100;
 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
 padding: 40px 20px;
 min-height: 100vh;
 }

 .container {
     
 /*max-width: 1400px;*/
 /*margin: 0 auto;*/
 /*display: grid;*/
 /*grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
 /*gap: 30px;*/
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force 3 cards per row */
  gap: 30px;

 }

 .card {
 background: rgba(30, 30, 30, 0.4);
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 border-radius: 20px;
 padding: 40px 30px;
 position: relative;
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .card::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -50%;
 width: 200%;
 height: 200%;
 background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
 pointer-events: none;
 }

 .card:hover {
 transform: translateY(-5px);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
   border-color: #A855F7;
 }

 /* Gradient overlays for each card */
 .card:nth-child(1)::after,
 .card:nth-child(2)::after,
 .card:nth-child(3)::after,
 .card:nth-child(4)::after,
 .card:nth-child(5)::after,
 .card:nth-child(6)::after {
 content: '';
 position: absolute;
 top: 0;
 right: 0;
 width: 250px;
 height: 250px;
 border-radius: 50%;
 filter: blur(80px);
 opacity: 0.4;
 pointer-events: none;
 }

 .card:nth-child(1)::after {
 background: radial-gradient(circle, #d946ef 0%, transparent 70%);
 }

 .card:nth-child(2)::after {
 background: radial-gradient(circle, #f97316 0%, transparent 70%);
 }

 .card:nth-child(3)::after {
 background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
 }

 .card:nth-child(4)::after {
 background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
 }

 .card:nth-child(5)::after {
 background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
 }

 .card:nth-child(6)::after {
 background: radial-gradient(circle, #a855f7 0%, transparent 70%);
 }

 .icon-wrapper {
 width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid #8B4A9E;
  position: relative;
  z-index: 1;
  overflow: hidden;
 }

 .icon-wrapper img {
  width: 60%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* optional - makes white on dark bg */
  transition: transform 0.3s ease, filter 0.3s ease;
}


 .card-content {
 position: relative;
 z-index: 1;
 }

 .card h3 {
 color: #ffffff;
 font-size: 22px;
 font-weight: 600;
 margin-bottom: 15px;
 line-height: 1.3;
 }

 .card p {
 color: #a8a9c0;
 font-size: 15px;
 line-height: 1.6;
 }

 @media (max-width: 768px) {
 .container {
 grid-template-columns: 1fr;
 }
 }
 .card h3 a {
  color: #ffffff;
 
}

.card h3 a:hover {
  color: #A855F7;
  text-decoration: none;
}
.ai-diagram * { box-sizing: border-box; }

.ai-diagram {
  font-family: 'Segoe UI', Roboto, sans-serif;
  /*background: linear-gradient(135deg, #0a0e27 0%, #1a1247 50%, #2d1b4e 100%);*/
   background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
 
  color: #fff;
  overflow: hidden;
  position: relative;
}

.ai-diagram .container {
  /*position: relative;*/
  /*width: 900px;*/
  /*height: 900px;*/
    position: relative;
  width: 90vw;
  max-width: 900px;
  height: 90vw;
  max-height: 900px;
  margin: 0 auto;
}

/* Dashed Circle — change color here */
.ai-diagram .dashed-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border: 2px dashed rgba(147, 112, 219, 0.4);
  border-radius: 50%;
}

/* Glow, Center Circles, Cards, etc. (same as before) */
.ai-diagram .outer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, rgba(147, 51, 234, 0.15) 40%, transparent 70%);
  filter: blur(50px);
}

.ai-diagram .black-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #0a0e27;
  box-shadow: inset 0 0 120px rgba(147, 51, 234, 0.4), inset 0 0 60px rgba(147, 51, 234, 0.3);
}

.ai-diagram .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d 0%, #c967ff 50%, #4d6cff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 60px rgba(255, 107, 157, 0.5);
}

.ai-diagram .inner-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1247 0%, #0a0e27 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.ai-diagram .brain-icon {
  width: 100px;
  height: 100px;
}

.ai-diagram .card {
  position: absolute;
  background: rgba(20, 30, 60, 0.7);
  border: 1px solid rgba(147, 112, 219, 0.4);
  border-radius: 8px;
  padding: 20px 24px;
  width: 240px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ai-diagram .card:hover {
  border-color: #ff6b9d;
  box-shadow: 0 0 30px rgba(255, 107, 157, 0.6), 0 0 60px rgba(201, 103, 255, 0.4);
 
}

/* Card positions */
.ai-diagram .card-top { top: 30px; left: 50%; transform: translateX(-50%);
    width:290px;
}
.ai-diagram .card-right { top: 50%; right: -35px; transform: translateY(-50%);
    height: 200px;}
.ai-diagram .card-bottom { bottom: 30px; left: 50%; transform: translateX(-50%);
 width:300px}
.ai-diagram .card-left { top: 50%; left: -40px; transform: translateY(-50%);
    height: 200px;
}

.ai-diagram .card-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6b9d;
  margin-bottom: 8px;
  font-weight: 600;
}

.ai-diagram .card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  line-height: 1.3;
}

.ai-diagram .card-description {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.ai-diagram .card-description {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

/* Mobile and Tablet Responsive Styles */
@media (max-width: 1024px) {
  .ai-diagram {
    padding: 20px;
  }
 
  .ai-diagram .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    gap: 20px;
  }
 
  /* Hide circular elements on mobile/tablet */
  .ai-diagram .dashed-circle,
.ai-diagram .outer-glow,
.ai-diagram .black-circle,
.ai-diagram .center-circle  {
    display: none;
  }
 
  /* Center logo at top */
  .ai-diagram .center-circle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    order: 0;
  }
 
  .ai-diagram .inner-circle {
    width: 120px;
    height: 120px;
  }
 
  /* Stack cards vertically */
  .ai-diagram .card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }
 
  .ai-diagram .card-top {
    order: 1;
  }
 
  .ai-diagram .card-right {
    order: 2;
  }
 
  .ai-diagram .card-bottom {
    order: 3;
  }
 
  .ai-diagram .card-left {
    order: 4;
  }
 
  /* Add numbered badges */
  .ai-diagram .card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c967ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
  }
 
  .ai-diagram .card-top::before { content: '01'; }
  .ai-diagram .card-right::before { content: '02'; }
  .ai-diagram .card-bottom::before { content: '03'; }
  .ai-diagram .card-left::before { content: '04'; }
 
  /* Adjust card content padding for badge */
  .ai-diagram .card {
    padding: 20px 24px 20px 85px;
  }
 
  .ai-diagram .card-label {
    font-size: 10px;
    margin-bottom: 6px;
  }
 
  .ai-diagram .card-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
 
  .ai-diagram .card-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ai-diagram .center-circle {
    width: 120px;
    height: 120px;
  }
 
  .ai-diagram .inner-circle {
    width: 90px;
    height: 90px;
  }
 
  .ai-diagram .card::before {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
 
  .ai-diagram .card {
    padding: 16px 20px 16px 75px;
  }
 
  .ai-diagram .card-title {
    font-size: 18px;
  }
 
  .ai-diagram .card-description {
    font-size: 13px;
  }
}
/* === GLASSMORPHIC TESTIMONIAL CAROUSEL === */
.custom-testimonials {
  background: #000;
  padding: 20px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Each testimonial card (Elementor's slide) */
.custom-testimonials .swiper-slide {
  background: rgba(30, 30, 40, 0.3);
  border: 1px solid #3a106c;
  border-radius: 24px;
  padding: 35px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

/* Hover effect */
.custom-testimonials .swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Single gradient glow for all cards */
.custom-testimonials .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(186,104,255,0.35) 0%, transparent 70%);
 
}

/* Testimonial text */
.custom-testimonials .elementor-testimonial__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Name and title */
/*.custom-testimonials .elementor-testimonial__name {*/
/*  color: #fff;*/
/*  font-size: 16px;*/
/*  font-weight: 600;*/
/*  margin-bottom: 4px;*/
/*}*/
/*.custom-testimonials .elementor-testimonial__title {*/
/*  color: rgba(255, 255, 255, 0.5);*/
/*  font-size: 14px;*/
/*}*/

/* Avatar */
/*.custom-testimonials .elementor-testimonial__image img {*/
/*  border: 2px solid rgba(255, 255, 255, 0.1);*/
/*  border-radius: 50%;*/
/*  object-fit: cover;*/
/*}*/

/* Responsiveness */
@media (max-width: 768px) {
  .custom-testimonials {
    padding: 40px 15px;
  }
}