

/* x ------------------------- x------------------------- x */



/* AI Voice Agent Section */
.ai-voice-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a192f 0%, #0f1c32 100%);
  scroll-snap-align: start;
}

.ai-voice-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-voice-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ai-voice-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.ai-voice-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--arch_blue);
  margin: 2rem 0;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.ai-voice-cta {
  display: inline-block;
  padding: 15px 40px;
  background: var(--arch_blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(40, 160, 184, 0.3);
  margin-top: 2rem;
  border: 2px solid var(--arch_blue);
}

.ai-voice-cta:hover {
  background: transparent;
  color: var(--arch_blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(40, 160, 184, 0.4);
}

/* AI Voice Animation Elements */
.voice-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%2328A0B8" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%2328A0B8" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2328A0B8"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 5;
  animation: waveAnimation 15s linear infinite;
}

@keyframes waveAnimation {
  0% { background-position-x: 0; }
  100% { background-position-x: 1200px; }
}

.ai-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(40, 160, 184, 0.6);
  animation: float 15s infinite linear;
  z-index: 1;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
}

.ai-circuit {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(40, 160, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 160, 184, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 1;
  animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.ai-voice-graphic {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 160, 184, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.ai-voice-mic {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2328A0B8"><path d="M12 2a3 3 0 0 1 3 3v6a3 3 0 0 1-6 0V5a3 3 0 0 1 3-3zm0-2a5 5 0 0 0-5 5v6a5 5 0 0 0 10 0V5a5 5 0 0 0-5-5zm-1 20v-3.29A7.008 7.008 0 0 1 5 12H3a9.01 9.01 0 0 0 8 8.94V22h2v-1.06A9.01 9.01 0 0 0 21 12h-2a7.008 7.008 0 0 1-6 6.71V20h-2z"/></svg>') center no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: 3;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ai-voice-heading {
    font-size: 3.5rem;
  }
  
  .ai-voice-tagline {
    font-size: 2rem;
  }
  
  .ai-voice-subheading {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .ai-voice-heading {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .ai-voice-tagline {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  
  .ai-voice-subheading {
    font-size: 1rem;
  }
  
  .ai-voice-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .voice-wave {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .ai-voice-heading {
    font-size: 2rem;
  }
  
  .ai-voice-tagline {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
}








/* AI Voice Agent Section */
.ai-voice-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a192f 0%, #0f1c32 100%);
  scroll-snap-align: start;
}

.ai-voice-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-voice-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ai-voice-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.ai-voice-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--arch_blue);
  margin: 2rem 0;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.ai-voice-cta {
  display: inline-block;
  padding: 15px 40px;
  background: var(--arch_blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(40, 160, 184, 0.3);
  margin-top: 2rem;
  border: 2px solid var(--arch_blue);
}

.ai-voice-cta:hover {
  background: transparent;
  color: var(--arch_blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(40, 160, 184, 0.4);
}

/* AI Voice Animation Elements */
.voice-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%2328A0B8" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%2328A0B8" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2328A0B8"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 5;
  animation: waveAnimation 15s linear infinite;
}

@keyframes waveAnimation {
  0% { background-position-x: 0; }
  100% { background-position-x: 1200px; }
}

.ai-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(40, 160, 184, 0.6);
  animation: float 15s infinite linear;
  z-index: 1;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
}

.ai-circuit {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(40, 160, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 160, 184, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 1;
  animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.ai-voice-graphic {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 160, 184, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.ai-voice-mic {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2328A0B8"><path d="M12 2a3 3 0 0 1 3 3v6a3 3 0 0 1-6 0V5a3 3 0 0 1 3-3zm0-2a5 5 0 0 0-5 5v6a5 5 0 0 0 10 0V5a5 5 0 0 0-5-5zm-1 20v-3.29A7.008 7.008 0 0 1 5 12H3a9.01 9.01 0 0 0 8 8.94V22h2v-1.06A9.01 9.01 0 0 0 21 12h-2a7.008 7.008 0 0 1-6 6.71V20h-2z"/></svg>') center no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: 3;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ai-voice-heading {
    font-size: 3.5rem;
  }
  
  .ai-voice-tagline {
    font-size: 2rem;
  }
  
  .ai-voice-subheading {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .ai-voice-heading {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .ai-voice-tagline {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  
  .ai-voice-subheading {
    font-size: 1rem;
  }
  
  .ai-voice-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .voice-wave {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .ai-voice-heading {
    font-size: 2rem;
  }
  
  .ai-voice-tagline {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
}

/* Rest of your existing CSS */





/* AI Voice Agent Section - Harmonized Color Theme */
.ai-voice-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a192f 0%, #0f1c32 100%);
  scroll-snap-align: start;
}

.ai-voice-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ai-voice-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #28a0b8, #00d6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(40,160,184,0.4);
}

.ai-voice-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.ai-voice-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d6ff;
  margin: 2rem 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 10px rgba(0, 214, 255, 0.5);
}

.ai-voice-cta {
  display: inline-block;
  padding: 15px 40px;
  background: #28a0b8;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(40, 160, 184, 0.3);
  margin-top: 2rem;
  border: 2px solid #28a0b8;
}

.ai-voice-cta:hover {
  background: transparent;
  color: #00d6ff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 214, 255, 0.5);
}

/* Voice Wave background overlay */
.voice-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%2328A0B8" opacity=".2"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%2300D6FF" opacity=".3"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2300D6FF" opacity=".3"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 5;
  animation: waveAnimation 15s linear infinite;
}

@keyframes waveAnimation {
  0% { background-position-x: 0; }
  100% { background-position-x: 1200px; }
}

.ai-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 214, 255, 0.4);
  animation: float 15s infinite linear;
  z-index: 1;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
}

.ai-circuit {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 214, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 214, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.25;
  z-index: 1;
  animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.ai-voice-graphic {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 214, 255, 0.25) 0%, transparent 70%);
  filter: blur(30px);
  animation: pulse 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.ai-voice-mic {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300D6FF"><path d="M12 2a3 3 0 0 1 3 3v6a3 3 0 0 1-6 0V5a3 3 0 0 1 3-3zm0-2a5 5 0 0 0-5 5v6a5 5 0 0 0 10 0V5a5 5 0 0 0-5-5zm-1 20v-3.29A7.008 7.008 0 0 1 5 12H3a9.01 9.01 0 0 0 8 8.94V22h2v-1.06A9.01 9.01 0 0 0 21 12h-2a7.008 7.008 0 0 1-6 6.71V20h-2z"/></svg>') center no-repeat;
  background-size: contain;
  opacity: 0.2;
  z-index: 3;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}






.voice-ai-info-section {
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #0f1c32 0%, #142544 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  scroll-snap-align: start;
}

.voice-ai-info-container {
  max-width: 1000px;
}

.voice-ai-info-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #28a0b8;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.voice-ai-info-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}


@media (max-width: 768px) {
  .voice-ai-info-heading {
    font-size: 2.5rem;
  }
  
  .voice-ai-info-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .voice-ai-info-heading {
    font-size: 2rem;
  }
  
  .voice-ai-info-text {
    font-size: 1rem;
  }
}




/* Voice AI Info Section */
.voice-ai-info-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a192f 0%, #0f1c32 100%);
  overflow: hidden;
  scroll-snap-align: start;
}

.voice-ai-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.voice-ai-info-container {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 0 40px;
  text-align: center;
  color: white;
}

.voice-ai-info-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #28a0b8, #00d6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(40,160,184,0.4);
}

.voice-ai-info-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.voice-ai-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.voice-ai-visual-mic {
  width: 100px;
  height: 100px;
  background: rgba(0, 214, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 2px solid rgba(0, 214, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.voice-ai-visual-mic i {
  font-size: 40px;
  color: #00d6ff;
}

.voice-ai-visual-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
}

.wave-bar {
  width: 8px;
  height: 30px;
  background: linear-gradient(to top, #28a0b8, #00d6ff);
  border-radius: 4px;
  transform-origin: bottom center;
}

@keyframes waveBar {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(2.5);
  }
}

/* Voice AI Background Elements */
.voice-ai-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 214, 255, 0.4);
  animation: float 15s infinite linear;
  z-index: 1;
}

.voice-ai-circuit {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 214, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 214, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.15;
  z-index: 1;
  animation: circuitMove 20s linear infinite;
}

.voice-ai-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%2328A0B8" opacity=".2"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%2300D6FF" opacity=".3"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2300D6FF" opacity=".3"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  animation: waveAnimation 15s linear infinite;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .voice-ai-info-heading {
    font-size: 2.8rem;
  }
  
  .voice-ai-info-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .voice-ai-info-heading {
    font-size: 2.2rem;
  }
  
  .voice-ai-info-text {
    font-size: 1rem;
  }
  
  .voice-ai-visual-mic {
    width: 80px;
    height: 80px;
  }
  
  .voice-ai-visual-mic i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .voice-ai-info-heading {
    font-size: 1.8rem;
  }
  
  .voice-ai-info-text {
    font-size: 0.9rem;
  }
  
  .voice-ai-visual {
    margin-top: 30px;
  }
}




/* Voice AI Info Section - Dark Tech Theme */
.voice-ai-info-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
    url('images/ai-tech-bg.jpg') center/cover no-repeat;
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
}

.voice-ai-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.voice-ai-info-container {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 0 40px;
  text-align: center;
}

.voice-ai-info-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.voice-ai-info-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Visual Elements */
.voice-ai-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.voice-ai-visual-mic {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
}

.mic-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mic-icon i {
  font-size: 50px;
  color: #00f0ff;
  z-index: 3;
  animation: micPulse 2s ease-out infinite;
}

.mic-ring {
  position: absolute;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  animation: micRing 3s linear infinite;
  opacity: 0;
}

.mic-ring:nth-child(2) {
  width: 100%;
  height: 100%;
  animation-delay: 1s;
}

.mic-ring:nth-child(3) {
  width: 140%;
  height: 140%;
  animation-delay: 2s;
}

@keyframes micPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes micRing {
  0% { 
    transform: scale(0.5);
    opacity: 0.8;
  }
  100% { 
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Frequency Analyzer */
.voice-ai-frequency {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 80px;
  width: 100%;
}

.frequency-line {
  width: 12px;
  height: 10px;
  background: linear-gradient(to top, #00a2ff, #00f0ff);
  border-radius: 6px;
  animation: frequencyWave 1.5s ease-in-out infinite;
}

.frequency-line:nth-child(1) { animation-delay: 0.1s; }
.frequency-line:nth-child(2) { animation-delay: 0.3s; }
.frequency-line:nth-child(3) { animation-delay: 0.5s; }
.frequency-line:nth-child(4) { animation-delay: 0.2s; }
.frequency-line:nth-child(5) { animation-delay: 0.4s; }

@keyframes frequencyWave {
  0%, 100% { height: 10px; }
  50% { height: 70px; }
}

/* Background Animation Elements */
.voice-ai-pulse {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
  animation: voicePulse 8s linear infinite;
  opacity: 0;
}

.voice-ai-pulse:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.voice-ai-pulse:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

.voice-ai-pulse:nth-child(3) {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes voicePulse {
  0% { 
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% { 
    transform: scale(1.5);
    opacity: 0;
  }
}

.voice-ai-radar {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 50%;
}

.voice-ai-radar::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transform: scale(0.8);
}

.voice-ai-radar::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transform: scale(0.6);
}

.voice-ai-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .voice-ai-info-heading {
    font-size: 2.8rem;
  }
  
  .voice-ai-info-text {
    font-size: 1.1rem;
  }
  
  .voice-ai-visual-mic {
    width: 100px;
    height: 100px;
  }
  
  .mic-icon i {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .voice-ai-info-heading {
    font-size: 2.2rem;
  }
  
  .voice-ai-info-text {
    font-size: 1rem;
  }
  
  .voice-ai-visual-mic {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }
  
  .mic-icon i {
    font-size: 30px;
  }
  
  .voice-ai-frequency {
    height: 60px;
  }
  
  .frequency-line {
    width: 10px;
  }
}

@media (max-width: 480px) {
  .voice-ai-info-heading {
    font-size: 1.9rem;
  }
  
  .voice-ai-info-text {
    font-size: 0.9rem;
  }
  
  .voice-ai-visual {
    margin-top: 30px;
  }
  
  .frequency-line {
    width: 8px;
  }
}


/* Enhanced Visible Voice AI Section */
.voice-ai-explanation-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.parallax-bgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/voice\ assistant.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  filter: brightness(0.7);
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}

.voice-ai-content {
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.voice-ai-content h2 {
  font-size: 3.0rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
  font-weight: 700;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}

.ai-features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}

.ai-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.feature-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(79, 209, 197, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(79, 209, 197, 0.3);
}

.ai-feature i {
  font-size: 2.8rem;
  color: #4fd1c5;
}

.ai-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.ai-feature p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .voice-ai-explanation-section {
      height: auto;
      padding: 4rem 0;
    }
    
    .voice-ai-content h2 {
      font-size: 2.2rem;
    }
    
    .subtitle {
      font-size: 1.0rem;
      margin-bottom: 3rem;
    }
    
    .ai-features {
      flex-direction: column;
      gap: 2.5rem;
      align-items: center;
    }
    
    .feature-circle {
      width: 80px;
      height: 80px;
    }
    
    .ai-feature i {
      font-size: 2rem;
    }
  }












/* Existing microphone styles */
.mic-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #4a90e2;  */
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

/* Active state when clicked */
.mic-icon.active {
  /* background: #ff3b30;  */
  box-shadow: 0 0 0 4px #00ff55(255, 59, 48, 0.3);
}

/* Mic rings animation */
.mic-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #4a90e2;
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0;
}

.mic-icon.active .mic-ring {
  border-color: #00ff55;
  animation: pulse-active 2s infinite;
}

/* Animation for active state */
@keyframes pulse-active {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Original animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.mic-ring:nth-child(2) {
  animation-delay: 0.66s;
}

.mic-ring:nth-child(3) {
  animation-delay: 1.33s;
}

/* Add this if you want the frequency lines to change color too */
.mic-icon.active ~ .voice-ai-frequency .frequency-line {
  background: #00ff55;
}