/* Logo fixes */
.header-area .main-nav .logo img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.background-header .main-nav .logo img {
  height: 50px;
}

/* Your existing CSS styles */

.social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.social-icon {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.social-icon.whatsapp:hover {
  background-color: #128c7e;
}

.social-icon.telegram {
  background-color: #0088cc;
}

.social-icon.telegram:hover {
  background-color: #005f99;
}

/* Add to existing CSS or extend it */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2,
.hero p,
.cta-button {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero h2 {
  animation-delay: 0.2s;
}

.hero p {
  animation-delay: 0.4s;
}

.cta-button {
  animation-delay: 0.6s;
}

/* Button hover glow */
.cta-button:hover {
  box-shadow: 0 0 10px #00ffe7, 0 0 20px #00ffe7;
}


#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#chat-toggle {
  background-color: #00ffe7;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 10px #00ffe7;
}

#chat-window {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 255, 231, 0.3);
}

#chat-header {
  background-color: #00ffe7;
  color: #0f0f0f;
  padding: 10px;
  font-weight: bold;
}

#chat-body {
  padding: 10px;
  height: 200px;
  overflow-y: auto;
  color: #f0f0f0;
}

#chat-input {
  border: none;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  background-color: #2a2a2a;
  color: #f0f0f0;
}
.algomind-support {
    font-size: 10px !important;
}

.sub-header .left-content p {
    font-size: 8px !important;
}