body {
  font-family: 'Vazir', sans-serif;
  line-height: 1.8;
  color: #333;
  background: #f9f9f9;
}

.hero {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/placeholder-hero.jpg') no-repeat center/cover;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  border-bottom: 8px solid #f06292;
}

.navbar {
  background: #f06292;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-brand,
.nav-link {
  color: white !important;
  font-weight: 700;
}

.nav-link:hover {
  background: #d81b60;
  border-radius: 8px;
}

.dropdown-menu {
  background: #fce4ec;
  border: 1px solid #f06292;
  border-radius: 8px;
}

.dropdown-item {
  color: #d81b60;
}

.dropdown-item:hover {
  background: #f8bbd0;
  color: #fff;
}

.carousel-inner img {
  width: 100%;
  max-width: 400px;
  /* Adjusted max-width for better fit */
  aspect-ratio: 4 / 3;
  /* Enforces 4:3 ratio */
  object-fit: contain;
  /* Keeps full image visible without cropping */
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  transition: transform 0.3s;
}

.carousel-inner img:hover {
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #d81b60;
  border-radius: 50%;
  padding: 15px;
}

.btn-cta {
  background: #f06292;
  color: white;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #d81b60;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

h1,

h3 {
  color: #fff;
}

h2 {
  border-bottom: 3px solid #f06292;
  padding-bottom: 15px;
  font-weight: 700;
  color: #d81b60;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

footer {
  background: linear-gradient(135deg, #f06292, #d81b60);
  color: white;
  padding: 30px 0;
}

.social-icon img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.2);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  color: white;
  padding: 10px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  justify-content: center;
}

.whatsapp-btn:hover {
  background: lightgreen;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn span.emoji {
  font-size: 1.5rem;
  margin-left: 8px;
}


.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #f06292;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.scroll-top.show {
  opacity: 1;
}

.scroll-top:hover {
  background: #d81b60;
}