* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
    scroll-padding: 50px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #45a049;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #45a049;
}

.call-btn {
  background: #4caf50;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #45a049;
}

.slider {
  position: relative;
  width: 1200px;
  max-width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  gap: 20px;
  transition: transform 0.7s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: background 0.3s;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: #4caf50;
  transform: scale(1.3);
}

.team {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.team h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.team-card p{
  margin-top: 10px;
}
.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.team-card p {
  color: #a7a7a7;
  font-size: 14px;
}

.animals-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #000000c9;
  margin-bottom: 40px;
  position: relative;
}
.title {
  margin-bottom: 40px;
}

.animals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.large {
  grid-column: span 2;
  grid-row: span 2;
}

.medium {
  grid-column: span 2;
}

.small {
  grid-column: span 1;
}

.animal-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.animal-image {
  height: 70%;
  overflow: hidden;
}

.animal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.animal-info {
  padding: 15px;
}

.animal-name {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 25px;
}

.animal-species {
  font-size: 14px;
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 8px;
}

.animal-description {
  font-size: 13px;
  color: #34495e;
  line-height: 1.4;
}

.feedback {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 60px;
}

.container {
  width: 100%-50px;
  padding: 0 50px;
}

.slider {
  position: relative;
  width: 100%;
  padding: 20px 20px 35px 20px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  /* border-radius: 15px; */
}

.review {
  display: none;
  font-size: 16px;
  line-height: 1.5;
}
.review p{
  margin-top: 15px;
}
.review.active {
  display: block;
}

.author {
  margin-top: 22px;
  font-weight: bold;
  color: #333;
}
.border-radius{
    border-radius: 15px;
}
.controls {
  margin-top: 15px;
}

button {
  background: #4caf50;
  border: none;
  color: #fff;
  padding: 8px 14px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

button:hover {
  background: #45a049;
}

footer {
  width: 100%-60;
  height: 350px;
  background-color: #191919;
  color: white;
  display: flex;
  padding: 50px 60px;
}

.footer_right {
  width: 50%;
}

.footer_right .logo {
  width: 100%;
  margin-bottom: 50px;
}

.footer_right .logo a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}

.right_content {
  font-weight: 100;
  line-height: 2.5;
}

.footer_left {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: right;
  padding: 0 20px 0 0;
}

.footer_left ul {
  margin: 0;
  padding: 0;
}

.footer_left ul li {
  list-style-type: none;
  text-decoration: none;
  color: white;
  line-height: 3;
}

.footer_left ul li a {
  list-style-type: none;
  text-decoration: none;
  color: white;
  font-weight: 100;
}

.footer_tite {
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 18px;
}
