/* Global theme and animations */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: linear-gradient(135deg, #352b2b 0%, #ffffff 40%, #4000ff 100%);
  min-height: 100vh;
}

/* Hero image sizing */
.hero .hero-img {
  max-width: 70%;
  height: auto;
}

@media (max-width: 576px) {
  .hero .hero-img {
    max-width: 100%;
  }
}

/* Readable card text for long captions */
.card-text {
  color: #333;
  line-height: 1.6;
}

/* Carousel visuals - Removed */
/* .carousel-item img {
  height: 350px;
  object-fit: contain;
  background-color: #000;
} */

/* Improve hero readability */
.hero {
  background: linear-gradient(135deg, #0d1321 0%, #1d2d44 50%, #3e5c76 100%);
}
.hero h1,
.hero p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Improve caption readability on carousel - Removed */
/* .carousel-caption h5,
.carousel-caption p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
} */

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 1030;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5a;
  color: #fff;
}

/* Floating Call button */
.call-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 1030;
  text-decoration: none;
}

.call-float:hover {
  background-color: #0b5ed7;
  color: #fff;
}