    html {
  scroll-behavior: smooth;
}


.ai-voice-section {

   scroll-snap-align: start;
}
.voice-ai-info-section {
 
  scroll-snap-align: start;
}



/* 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.8rem;
  }
  
  .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/ourservice.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.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
  font-weight: 700;
}

.subtitle {
  font-size: 1.5rem;
  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;
    }
  }

    .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/map.jpg'); /* replace with your image path */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    transform: translateZ(0); /* smooth scrolling fix */
  }


  .ai-feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-feature:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 12px 30px rgba(0, 240, 255, 0.15); */
}


.ai-feature h3 {
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ai-feature {
  width: 180px; /* or 200px */
  padding: 15px;
  text-align: center;
}


.feature-circle i {
  color: #28A0B8;
}
.ai-feature i {
  color: #28A0B8;
}
.feature-circle {
  border: 2px solid #28A0B8;
  background-color: rgba(40, 160, 184, 0.1); /* light background tint */
}


.outlined-heading {
  font-size: 48px;
  color: white; /* Fill color */
  -webkit-text-stroke: 1.5px var(--accent); /* Outline color */
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}






