/** @format */

.row {
  justify-content: center;
}

.doggo {
  justify-content: right;
  align-items: right;
}

.img-fluid,
.constrained-img {
  max-width: 100%;
  height: auto;
}
.constrained-img {
  max-height: 400px;
}

.hero-section {
  background: linear-gradient(135deg, #5e1ea1 0%, #772fd2 60%, #a171f9 100%);
  color: #fff;
  border-radius: 18px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 28px rgba(70, 40, 140, 0.14);
}

/* Common button styles */
.btn-common {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
}

/* Adopt button styles */
.btn-adopt {
  background-color: #fff;
  color: #772fd2;
  font-weight: 600;
  /* Inherit common button styles */
}
.btn-adopt:hover {
  background-color: #f2f2f2;
  color: #5e1ea1;
}

/* Learn button styles */
.btn-learn {
  background-color: transparent;
  color: #fff;
  /* Inherit common button styles */
}
.btn-learn:hover {
  background-color: #fff;
  color: #772fd2;
}

/* Meet button style (full-width purple pill) */
.btn-meet {
  display: inline-block;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 100%);
  color: #fff;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.18);
  text-align: center;
}
.btn-meet:hover,
.btn-meet:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.22);
}

/* Grouped carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
  width: 1.5rem;
  height: 1.5rem;
}

.secrion {
  padding: 3rem 0;
  background-color: #f6f7f9; /* light gray band like the reference */
}

.secrion .stat-card {
  background: transparent; /* no white cards like the reference */
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.secrion .stat-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
}

.secrion .stat-icon img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.secrion h5 {
  margin: 0;
  font-size: 1.5rem;
  color: #111827;
}

.secrion h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
  text-transform: none;
}

/* Color variants for icon circles */
.secrion .icon-purple {
  background: #8b5cf6;
}
.secrion .icon-teal {
  background: #06b6d4;
}
.secrion .icon-orange {
  background: #f59e0b;
}

.secrion .stat-icon i {
  color: #fff;
}
