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

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

.chatbot-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff; /* Pure white */
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.chatbot-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.9); /* Brighter text */
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.chatbot-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.chatbot-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  text-align: center;
}

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

.chatbot-feature-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(79, 209, 180, 0.4);
}

.chatbot-feature i {
  font-size: 2.5rem;
  color: #4fd1b4;
}

.chatbot-feature h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85); /* Brighter text */
  line-height: 1.5;
  margin: 0 auto;
  max-width: 90%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .chatbot-explanation-section {
    height: auto;
    padding: 4rem 0;
  }
  
  .chatbot-content h2 {
    font-size: 2.3rem;
  }
  
  .chatbot-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .chatbot-features {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .chatbot-feature-circle {
    width: 85px;
    height: 85px;
  }
  
  .chatbot-feature i {
    font-size: 2rem;
  }
  
  .chatbot-feature h3 {
    font-size: 1.3rem;
  }
}
/* Chatbot Section 2 */
.chatbot-info-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.chatbot-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a1a1a;
  z-index: -1;
  overflow: hidden;
}

.chatbot-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.1);
  animation: floatBubble 15s infinite linear;
}

.chatbot-bubble:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.chatbot-bubble:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}

.chatbot-bubble:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes floatBubble {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-50px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.message-icon {
  font-size: 5rem;
  color: #4fd1b4;
  position: relative;
}

.message-bubble {
  position: absolute;
  width: 40px;
  height: 30px;
  background: rgba(79, 209, 180, 0.3);
  border-radius: 50%;
}

.message-bubble.left {
  top: -20px;
  left: -30px;
  border-bottom-left-radius: 5px;
}

.message-bubble.right {
  bottom: -20px;
  right: -30px;
  border-bottom-right-radius: 5px;
}

.chatbot-typing {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.typing-dot {
  width: 12px;
  height: 12px;
  background: #4fd1b4;
  border-radius: 50%;
  animation: typingPulse 1.5s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.3s; }
.typing-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes typingPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}




/* Chatbot Section 2 (Matching Voice AI Style) */
.chatbot-info-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.chatbot-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a1a1a;
  z-index: -1;
  overflow: hidden;
}

.chatbot-pulse {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: chatbotPulse 6s infinite ease-in-out;
}

.chatbot-pulse:nth-child(1) {
  animation-delay: 0s;
}
.chatbot-pulse:nth-child(2) {
  animation-delay: 2s;
}
.chatbot-pulse:nth-child(3) {
  animation-delay: 4s;
}

@keyframes chatbotPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }
}

.chatbot-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(79, 209, 180, 0.1) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(79, 209, 180, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.chatbot-info-container {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.chatbot-info-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #4fd1b4;
  font-weight: 700;
}

.chatbot-info-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.chatbot-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  position: relative;
}

.chatbot-visual-icon {
  position: relative;
}

.chat-icon {
  font-size: 5rem;
  color: #4fd1b4;
  position: relative;
}

.chat-line {
  position: absolute;
  height: 3px;
  background: rgba(79, 209, 180, 0.5);
  left: 50%;
  transform: translateX(-50%);
  animation: chatLine 2s infinite ease-in-out;
}

.chat-line:nth-child(2) {
  width: 80px;
  top: 30%;
  animation-delay: 0.3s;
}

.chat-line:nth-child(3) {
  width: 120px;
  top: 60%;
  animation-delay: 0.6s;
}

.chat-line:nth-child(4) {
  width: 60px;
  top: 90%;
  animation-delay: 0.9s;
}

@keyframes chatLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.chatbot-frequency {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  bottom: -50px;
}

.frequency-dot {
  width: 10px;
  height: 40px;
  background: rgba(79, 209, 180, 0.5);
  border-radius: 5px;
  animation: frequencyPulse 1.5s infinite ease-in-out;
}

.frequency-dot:nth-child(1) { animation-delay: 0s; height: 20px; }
.frequency-dot:nth-child(2) { animation-delay: 0.2s; height: 35px; }
.frequency-dot:nth-child(3) { animation-delay: 0.4s; height: 25px; }
.frequency-dot:nth-child(4) { animation-delay: 0.6s; height: 40px; }
.frequency-dot:nth-child(5) { animation-delay: 0.8s; height: 15px; }

@keyframes frequencyPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .chatbot-info-section {
    height: auto;
    padding: 4rem 0;
  }
  
  .chatbot-info-heading {
    font-size: 2.5rem;
  }
  
  .chatbot-info-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  
  .chat-icon {
    font-size: 3rem;
  }
  
  .frequency-dot {
    width: 8px;
    height: 30px;
  }
}



/* SECTION 2 - Chatbot Info Section (Updated) */

.chatbot-info-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

/* PARALLAX background */
.chatbot-info-section .chatbot-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url('images/chatbot.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  filter: brightness(0.8);
}

.chatbot-info-section .chatbot-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  z-index: -1;
}

/* previously solid background removed */
.chatbot-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  overflow: hidden;
}

.chatbot-pulse {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: chatbotPulse 6s infinite ease-in-out;
}

.chatbot-pulse:nth-child(1) { animation-delay: 0s; }
.chatbot-pulse:nth-child(2) { animation-delay: 2s; }
.chatbot-pulse:nth-child(3) { animation-delay: 4s; }

@keyframes chatbotPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
}

.chatbot-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(79, 209, 180, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(79, 209, 180, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.chatbot-info-container {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.chatbot-info-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #4fd1b4;
  font-weight: 700;
}

.chatbot-info-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.chatbot-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  position: relative;
}

.chatbot-visual-icon {
  position: relative;
}

.chat-icon {
  font-size: 5rem;
  color: #4fd1b4;
  position: relative;
}

.chat-line {
  position: absolute;
  height: 3px;
  background: rgba(79, 209, 180, 0.5);
  left: 50%;
  transform: translateX(-50%);
  animation: chatLine 2s infinite ease-in-out;
}

.chat-line:nth-child(2) {
  width: 80px;
  top: 30%;
  animation-delay: 0.3s;
}

.chat-line:nth-child(3) {
  width: 120px;
  top: 60%;
  animation-delay: 0.6s;
}

.chat-line:nth-child(4) {
  width: 60px;
  top: 90%;
  animation-delay: 0.9s;
}

@keyframes chatLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.chatbot-frequency {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  bottom: -50px;
}

.frequency-dot {
  width: 10px;
  height: 40px;
  background: rgba(79, 209, 180, 0.5);
  border-radius: 5px;
  animation: frequencyPulse 1.5s infinite ease-in-out;
}

.frequency-dot:nth-child(1) { animation-delay: 0s; height: 20px; }
.frequency-dot:nth-child(2) { animation-delay: 0.2s; height: 35px; }
.frequency-dot:nth-child(3) { animation-delay: 0.4s; height: 25px; }
.frequency-dot:nth-child(4) { animation-delay: 0.6s; height: 40px; }
.frequency-dot:nth-child(5) { animation-delay: 0.8s; height: 15px; }

@keyframes frequencyPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .chatbot-info-section {
    height: auto;
    padding: 4rem 0;
  }
  
  .chatbot-info-heading {
    font-size: 2.5rem;
  }
  
  .chatbot-info-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
  
  .chat-icon {
    font-size: 3rem;
  }
  
  .frequency-dot {
    width: 8px;
    height: 30px;
  }
}

/* === SECTION 2 - Chatbot Info Section (CLEAN) === */

.chatbot-info-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  padding: 0 2rem;
}

.chatbot-info-section .chatbot-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url('images/chatbot2.jpg');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  z-index: -2;
  filter: brightness(0.8);
}

.chatbot-info-section .chatbot-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  z-index: -1;
}

.chatbot-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  overflow: hidden;
}

.chatbot-pulse {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: chatbotPulse 6s infinite ease-in-out;
}

.chatbot-pulse:nth-child(1) { animation-delay: 0s; }
.chatbot-pulse:nth-child(2) { animation-delay: 2s; }
.chatbot-pulse:nth-child(3) { animation-delay: 4s; }

@keyframes chatbotPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
}

/* Layout split left/right */
.chatbot-info-container.split-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 3rem;
}

.chatbot-text-content {
  flex: 1;
  text-align: left;
}

.chatbot-info-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00f0ff;
  font-weight: 700;
}

.chatbot-info-text {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

.chatbot-info-extra {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 600px;
  padding: 0px 20px;
}

/* Arrow */
.arrow-right {
  width: 120px;         /* increased from 80px */
  height: 4px;          /* increased from 2px */
  background: #4fd1b4;
  position: relative;
  flex-shrink: 0;
  border-radius: 2px;
}

.arrow-right::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 100%;
  transform: translateY(-50%) rotate(45deg);
  border: solid #4fd1b4;
  border-width: 0 6px 6px 0; /* thicker arrow head */
  padding: 12px;            /* larger arrow head size */
}

@media (max-width: 768px) {
  .arrow-right {
    width: 80px;
    height: 3px;
  }

  .arrow-right::after {
    border-width: 0 4px 4px 0;
    padding: 8px;
  }
}


/* Visual block right */
.chatbot-visual-content {
  display: flex;
  align-items: center;
  gap: 10rem;
}

.chatbot-launch-btn {
  background: #4fd1b4;
  border: none;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(79, 209, 180, 0.4);
  transition: transform 0.3s;
}

.chatbot-launch-btn:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .chatbot-info-section {
    height: auto;
    padding: 4rem 1rem;
  }

  .chatbot-info-container.split-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .chatbot-visual-content {
    flex-direction: column;
  }

  .arrow-right {
    width: 60px;
    height: 2px;
  }

  .arrow-right::after {
    padding: 6px;
  }

  .chatbot-launch-btn {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
}




/* Chatbot Features Section - Always Centered */
.chatbot-features-section {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  text-align: center;
}

.chatbot-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.chatbot-features-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.chatbot-features-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid - Perfectly Centered */
.chatbot-features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.chatbot-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  width: 280px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(79, 209, 180, 0.2);
}

.chatbot-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(79, 209, 180, 0.2);
  background: rgba(79, 209, 180, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4fd1b4;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .chatbot-features-section {
    padding: 3rem 1rem;
  }
  
  .chatbot-features-title {
    font-size: 2rem;
  }
  
  .chatbot-features-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .chatbot-features-grid {
    gap: 1.5rem;
  }
  
  .chatbot-feature-card {
    width: 100%;
    max-width: 300px;
    min-height: auto;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .chatbot-features-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .chatbot-feature-card {
    width: 90%;
  }
}



/* Chatbot Section 1 - Updated Features */
.chatbot-explanation-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

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

.chatbot-content h2 {
  font-size: 3.0rem;
  margin-bottom: 1.0rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.chatbot-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Updated Features with WebDev styling */
.chatbot-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.chatbot-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  text-align: center;
}

/* ✅ UPDATED COLORS (same as WebDev) */
.chatbot-feature-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(79, 209, 180, 0.4);
  transition: all 0.3s ease;
}

.chatbot-feature-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(79, 209, 180, 0.4);
}

.chatbot-feature i {
  font-size: 2.5rem;
  color: #4fd1b4;
}

.chatbot-feature h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 90%;
}

/* Chatbot Section 2 - Keeping original structure */
.chatbot-info-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  padding: 0 2rem;
}

.chatbot-info-section .chatbot-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url('../images/chat\ bot.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.8);
}

.chatbot-info-section .chatbot-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  z-index: -1;
}

.chatbot-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  overflow: hidden;
}

.chatbot-pulse {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: chatbotPulse 6s infinite ease-in-out;
}

@keyframes chatbotPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
}

.chatbot-info-container.split-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 3rem;
}

.chatbot-text-content {
  flex: 1;
  text-align: left;
}

.chatbot-info-heading {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00f0ff;
  font-weight: 700;
}

.chatbot-info-text {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

.chatbot-visual-content {
  display: flex;
  align-items: center;
  gap: 10rem;
}

.chatbot-launch-btn {
  background: #4fd1b4;
  border: none;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(79, 209, 180, 0.4);
  transition: transform 0.3s;
}

/* Chatbot Features Section - Updated Feature Cards */
.chatbot-features-section {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  text-align: center;
}

.chatbot-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.chatbot-features-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.chatbot-features-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Updated Feature Cards with WebDev styling */
.chatbot-features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.chatbot-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  width: 280px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(79, 209, 180, 0.2);
}

.chatbot-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(79, 209, 180, 0.2);
  background: rgba(79, 209, 180, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4fd1b4;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .chatbot-explanation-section {
    /* height: auto; */
    /* padding: 4rem 0; */
  }
  
  .chatbot-info-heading {
    font-size: 2.2rem;
  }
  
  .chatbot-info-text  {
    font-size: 1.0rem;
    /* margin-bottom: 2.5rem; */
  }
}

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

  .chatbot-info-section {
    height: auto;
    padding: 4rem 1rem;
  }

  .chatbot-info-container.split-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .chatbot-features-section {
    padding: 3rem 1rem;
  }
  
  .chatbot-features-title {
    font-size: 2rem;
  }
  
  .chatbot-features-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .chatbot-features-grid {
    gap: 1.5rem;
  }
  
  .chatbot-feature-card {
    width: 100%;
    max-width: 300px;
    min-height: auto;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .chatbot-features-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .chatbot-feature-card {
    width: 90%;
  }
}


/* Chatbot Features Section - Perfectly Centered */
.chatbot-features-section {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  text-align: center;
  overflow: hidden;
}

.chatbot-features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chatbot-features-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.chatbot-features-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
}

/* Perfectly Centered Features Grid */
.chatbot-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.chatbot-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  width: 100%;
  max-width: 280px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(79, 209, 180, 0.2);
}

.chatbot-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(79, 209, 180, 0.2);
  background: rgba(79, 209, 180, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4fd1b4;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .chatbot-features-section {
    padding: 3rem 1rem;
  }
  
  .chatbot-features-title {
    font-size: 2rem;
  }
  
  .chatbot-features-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .chatbot-features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .chatbot-feature-card {
    max-width: 100%;
    min-height: auto;
    padding: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .chatbot-features-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
  }
}


/* Center alignment for chatbot features */
.chatbot-features-section {
  text-align: center;
}

.chatbot-features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  max-width: 800px; /* Adjust as needed */
}

.feature-list li {
  margin: 1rem 0;
  text-align: center;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.feature-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
}





  /* Update the chatbot-info-container padding */
  .chatbot-info-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px 25px; /* Increased side padding for mobile */
  }

  /* For very small devices, adjust the padding slightly less */
  @media (max-width: 359px) {
    .chatbot-info-container {
      padding: 20px 20px;
    }
  }

  /* For larger screens, you can adjust the padding as needed */
  @media (min-width: 768px) {
    .chatbot-info-container {
      padding: 20px 40px;
    }
  }
