/* Base Styles (Default for larger screens like desktops and tablets) */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f9a01b;
  font-family: Arial, sans-serif;
  overflow-y: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.company-logo {
  display: block;
  margin: 20px auto;
  max-width: 250px;
  height: auto;
}

.logo-container {
  position: relative;
  display: inline-block;
}

.logo-container img {
  display: block;
  width: 100%;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.logo-container {
  width: 100%;
  text-align: center;
}

.coming-soon-container {
  text-align: center;
  padding: 1px;
  width: 100%;
  flex-grow: 1;
}

.coming-soon-title {
  font-size: 4rem;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 2px #f9a01b, 2px 2px 4px #f9a01b, 3px 3px 6px white,
    4px 4px 8px #f9a01b;
  margin-bottom: 20px;
}

.welcome-message0,
.welcome-message1,
.welcome-message2 {
  font-size: 1.5rem;
  color: white;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  line-height: 1;
  margin: 10px 0;
}

.carousel-container {
  width: 100%;
  max-width: 1080px;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  width: 100%;
  height: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 10;
  outline: none;
  user-select: none;
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.carousel-btn:focus {
  outline: none;
}

.inquiry-message {
  font-size: 1.5rem;
  color: white;
  margin-top: 50px;
  margin-bottom: 20px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.chat-bot-bar {
  position: relative;
  display: inline-block;
}

.chat-bot {
  display: block;
  margin: 0 auto 20px;
  width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.chat-bot-bar .tooltip {
  position: absolute;
  bottom: -5px;
  left: -10%;
  transform: translateX(-50%);
  background-color: #ffc56e;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.chat-bot-bar:hover {
  transform: scale(1.1);
}

.chat-bot-bar:hover .tooltip {
  opacity: 1;
}

.or-text {
  font-size: 3rem;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 2px #f9a01b, 2px 2px 4px #f9a01b, 3px 3px 6px white,
    4px 4px 8px #f9a01b;
  margin-bottom: 20px;
}

.social-links-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icon-bar {
  position: relative;
  margin: 0 15px;
}

.social-icon {
  width: 50px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.social-icon:hover {
  transform: scale(1.1);
}

.tooltip {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffc56e;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.social-icon-bar:hover .tooltip {
  opacity: 1;
}

.contact-info-container {
  margin-top: 40px;
}

.contact-info {
  font-size: 1.3rem;
  color: white;
  margin-top: 10px;
  text-align: center;
}

.contact-info p {
  margin: 1px 0;
  line-height: 1.5;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-item.Phone {
  margin-top: 30px;
}

.contact-label {
  font-weight: bold;
  font-size: 2rem;
  color: white;
  display: flex;
  align-items: center;
}

.contact-detail {
  font-size: 1.2rem;
  color: white;
}

.footer {
  text-align: center;
  color: white;
  font-size: 1rem;
  background-color: black;
  padding: 3px 0;
  width: 100%;
  margin-top: 30px;
}

/* Media Queries for Smaller Screens */
/* For screens up to 768px wide (Tablets and Small Devices) */
@media screen and (max-width: 768px) {
  .coming-soon-title {
    font-size: 3rem;
  }

  .welcome-message0,
  .welcome-message1,
  .welcome-message2,
  .inquiry-message {
    font-size: 1.2rem;
  }

  .chat-bot {
    width: 150px;
  }

  .social-icon {
    width: 40px;
  }

  .contact-info {
    font-size: 1.3rem;
  }

  .contact-label {
    font-size: 1.4rem;
  }

  .contact-detail {
    font-size: 1rem;
  }

  .contact-item {
    margin-bottom: 12px;
  }

}

/* For screens up to 576px wide (Mobile Phones) */
@media screen and (max-width: 576px) {
  .coming-soon-title {
    font-size: 2.5rem;
  }

  .welcome-message0,
  .welcome-message1,
  .welcome-message2,
  .inquiry-message {
    font-size: 1rem;
  }

  .inquiry-message {
    margin-top: 30px;

  }

  .chat-bot {
    width: 120px;
  }

  .or-text {
    font-size: 2rem;
  }

  .social-icon {
    width: 50px;
  }

  .contact-info {
    font-size: 1.1rem;
  }

  .contact-label {
    font-size: 1.3rem;
  }

  .contact-detail {
    font-size: 0.95rem;
  }

  .contact-item {
    margin-bottom: 10px;
  }

  .footer {
    font-size: 0.8rem;
  }
}