body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
}

.navbar {
  transition: background-color 0.3s;
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
}

.navbar.scrolled {
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
}

.animal-rescue-section {
  padding-top: 100px;
}

.hero {
  background: url("img/6.jpg") center center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  color: #4a4a4a;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #4a4a4a;
}

.cta-button {
  background-color: #ff7f50;
  color: #4a4a4a;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #4a4a4a;
  color: #ff7f50;
}

.infographics {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom right, #f7f3e9, #ff7f50);
}

.stats {
  display: flex;
  justify-content: space-around;
}

.stat-item {
  width: 30%;
}

.stat-count {
  font-size: 2.5rem;
  color: #4a4a4a;
  transition: transform 0.5s;
}

.success-stories {
  padding: 5rem 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s;
}

.story-card:hover {
  transform: scale(1.05);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff7f50;
  color: #4a4a4a;
  padding: 15px 20px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
}

.floating-button:hover {
  transform: scale(1.1);
  background: #4a4a4a;
  color: #ff7f50;
}
