#scrollUp {
  display: none !important;
}

.align-end {
  align-self: end;
}

.aling-start {
  align-self: start;
}

.nav-link {
  cursor: pointer;
}

.logo-image {
  height: 50px;
}

.brand-name {
  font-size: 1.5rem;
  color: #fff;
  margin-left: 10px;
}

.social-list li:nth-child(1) a {
  background-color: #00aff0;
}
.social-list li:nth-child(2) a {
  background-color: #38569e;
}
.social-list li:nth-child(3) a {
  background-color: #262626;
}
.social-list li:nth-child(4) a {
  background-color: #ee1b22;
}
.social-list li:nth-child(5) a {
  background-color: #34A853;
}
.social-list li:nth-child(6) a {
  background-color: #007AFF;
}

.eltv-hero-logo {
  margin-left: 15px;
  margin-top: -20px;
}

#about, #services {
  padding-top: 170px;
}

#contact {
  padding-top: 70px;
}

.single-icon {
  min-width: 70px;
}

.service-single-hover {
  background-image: unset;
}

/* Floating Chat Button */
#chat-toggle {
  position: fixed;
  width: 75px;
  height: 75px;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0d0f2a;
  color: white;
  padding: 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
}

#chat-toggle:hover {
  background-color: #1a1d3b;
}

/* Chat Window */
#chat-box {
  position: fixed;
  bottom: 110px;
  right: 24px;
  width: 320px;
  max-height: 500px;
  background-color: #0d0f2a;
  color: white;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 9998;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.chat-header {
  padding: 16px;
  background-color: #1a1d3b;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Body */
.chat-body {
  padding: 16px;
  height: 250px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.5;
}

.message {
  width: max-content;
  margin-bottom: 10px;
}

.message.bot {
  background: #1e223f;
  padding: 10px 12px;
  border-radius: 10px;
  display: inline-block;
}

/* Footer */
.chat-footer {
  display: flex;
  padding: 12px;
  background-color: #1a1d3b;
}

.chat-footer input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  background-color: #2a2e4a;
  color: white;
}

.chat-footer button {
  background: none;
  border: none;
  color: white;
  margin-left: 10px;
  font-size: 18px;
  cursor: pointer;
}

.contact-form .form-control, .contact-form textarea {
  color: #333333 !important;
}

.showcase {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.showcase .flag-icon {
  width: 50px;
  cursor: pointer;
  align-self: center;
  border-radius: 4px;
}

.showcase .presentation-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.showcase .presentation-list a {
  width: 100%;
  border-radius: 3px;
  background-color: #FFFFFF;
  text-align: center;
}

.showcase .presentation-list a:hover {
  background-color: #007bff;
  color: #FFFFFF;
}

@media screen and (max-width: 430px) {
  .logo-image {
    height: 30px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .navbar-toggler {
    font-size: 1rem;
  }
}
