.brand-card {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /* enhanced shadow */
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  max-width: 60px;
  height: auto;
  margin-bottom: 10px;
}

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

.section-title {
  font-weight: 700;
  font-size: 1.75rem;
  background-color: #cde2ff;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  max-width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.footer {
  background-color: #f9f9f9;
  padding: 40px 0;
  font-size: 14px;
}

.footer .logo {
  font-size: 24px;
  font-weight: bold;
  color: #f1c40f;
}

.footer .footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  text-decoration: none;
  color: #000;
}

.footer .social-icons a {
  color: #000;
  font-size: 18px;
  margin-right: 15px;
}

.chat-badge {
  background-color: #48e0c7;
  border-radius: 10px;
  padding: 12px;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .chat-badge {
    margin-top: 30px;
  }
}

.step-number {
  background-color: #24bca4;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.step-icon {
  height: 100px;
  margin-bottom: 20px;
}

.step-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.step-desc {
  color: #6c757d;
  font-size: 15px;
}

@media (max-width: 767px) {
  .step {
    text-align: center;
    margin-bottom: 40px;
  }
}

.why-us-section {
  background-color: #def7f5;
  padding: 60px 0;
}

.why-item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 30px;
}

.why-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.why-title {
  font-weight: 700;
  margin-bottom: 5px;
}

.why-subtext {
  color: #6c757d;
  font-size: 15px;
}
/* Set carousel height to 200px (adjust as needed) */
#carouselExampleIndicators .carousel-item {
  height: 500px;
}

/* Ensure images fill the container nicely */
#carouselExampleIndicators .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  #carouselExampleIndicators .carousel-item {
    height: 150px;
  }
}
.brand-card {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.brand-logo {
  max-width: 100px;
  height: auto;
}
.brand-name {
  margin-top: 10px;
  font-weight: 500;
  color: #000;
  font-size: 0.95rem;
}
a {
  text-decoration: none;
  color: inherit;
}

.highlight-text {
  color: #f1c40f;
}

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

.btn-custom {
  min-width: 140px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  z-index: 1050;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  text-decoration: none;
}
.custom-whatsapp-icon {
  font-size: 50px;
  color: white;
  transition: transform 0.2s ease-in-out;
}

.service-card {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.service-card:last-child {
  border: none;
}

.price {
  font-weight: 600;
  font-size: 1.1rem;
}

.price-old {
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}

.brand-image {
  max-width: 100px;
}

.summary-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.highlight-box {
  background-color: #e0f7f3;
  padding: 1rem;
  border-radius: 10px;
}

.add-btn {
  background-color: #20c997;
  color: white;
  border: none;
}
.service-card.selected {
  border: 2px solid #20c997;
  border-radius: 10px;
  background-color: #e6f9f6;
}

.hero-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 50px 30px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #212529;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #495057;
}

.highlight {
  color: #f1c40f;
  font-weight: 600;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
  margin: 30px auto 20px auto;
  text-align: left;
  max-width: 600px;
}

.benefit-list li::before {
  content: "✔️ ";
  margin-right: 8px;
  color: #198754;
  font-size: 1.1rem;
}

.cta-btn {
  margin-top: 25px;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 30px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-btn {
  background-color: #f1c40f;
}
.bottom-fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.bottom-fixed-buttons a {
  flex: 1;
  margin: 0 5px;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .bottom-fixed-buttons {
    display: none;
  }
}

brand-link {
  text-decoration: none;
  color: inherit;
}
.brand-img {
  max-width: 100px;
  height: auto;
  margin-bottom: 8px;
}
.brand-text {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .brand-img {
    max-width: 80px;
  }
}
