/* Slider Styles */
.slider-container {
  position: relative;
  max-width: 400px;
  margin: 32px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,184,217,0.10);
  overflow: hidden;
  padding: 24px 0 32px 0;
}
.slider {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
  min-height: 340px;
}
.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.6s;
}
.slide.active {
  display: flex;
}
.slide img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,184,217,0.10);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: orange;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255,140,0,0.10);
}
.slider-btn.prev {
  left: 8px;
}
.slider-btn.next {
  right: 8px;
}
.slider-dots {
  text-align: center;
  margin-top: 18px;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active {
  background: orange;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 500px) {
  .slider-container {
    max-width: 98vw;
    padding: 12px 0 18px 0;
  }
  .slide img {
    max-width: 90vw;
  }
}
/* Responsive grid for pet cards */
.pets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}
.pet-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,184,217,0.10);
  padding: 22px 18px 18px 18px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pet-card img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,184,217,0.10);
}
.pet-card h4 {
  font-size: 22px;
  color: orange;
  margin-bottom: 8px;
}
.pet-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}
.pet-card .btn {
  margin-top: 8px;
}
@media (max-width: 700px) {
  .pets-grid {
    gap: 16px;
  }
  .pet-card {
    width: 98vw;
    max-width: 98vw;
    padding: 12px 6px 12px 6px;
  }
  .pet-card img {
    max-width: 90vw;
    height: 120px;
  }
}
/* Adopt Page Image Adjustments */
.hero-img {
  max-width: 100%;
  width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,184,217,0.18);
  opacity: 0.9;
  margin-bottom: 18px;
}
.slider img {
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,184,217,0.10);
}
@media (max-width: 700px) {
  .hero-content {
    flex-direction: column !important;
    gap: 18px !important;
    max-width: 98vw !important;
  }
  .hero-img {
    width: 98vw;
    max-width: 98vw;
    margin-bottom: 10px;
  }
  .slider img {
    max-width: 90vw;
    height: 160px;
  }
}
/* Donate Form Responsive Styles */
.donate-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.donate-form label {
  font-weight: 500;
  color: orange;
  margin-bottom: 2px;
  text-align: left;
}
.donate-form input {
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  margin-bottom: 4px;
}
.donate-form input:focus {
  border-color: orange;
  box-shadow: 0 0 4px rgba(255,140,0,0.15);
}
.donate-form button {
  margin-top: 12px;
}
@media (max-width: 700px) {
  .donate-form {
    gap: 10px;
  }
  .donate-form input {
    font-size: 14px;
    padding: 8px 8px;
  }
  .donate-form label {
    font-size: 15px;
  }
}
/* Responsive Donate Section */
.donate-container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(255,140,0,0.10);
  padding: 40px 32px;
  text-align: center;
}
.donate-container h1 {
  color: orange;
  font-size: 36px;
  margin-bottom: 18px;
}
.donate-container p {
  font-size: 20px;
  margin-bottom: 28px;
  color: #333;
}
.donate-btn {
  background: orange;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255,140,0,0.12);
  cursor: pointer;
  transition: background 0.2s;
}
.donate-btn:hover {
  background: #ff9800;
}
@media (max-width: 700px) {
  .donate-container {
    padding: 18px 8px;
    margin: 18px 4px;
    border-radius: 10px;
  }
  .donate-container h1 {
    font-size: 24px;
  }
  .donate-container p {
    font-size: 16px;
  }
  .donate-btn {
    font-size: 16px;
    padding: 12px 18px;
  }
}
body {
  background: url('https://images.unsplash.com/photo-1518717758536-85ae29035b6d?auto=format&fit=crop&w=1200&q=80') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}
body::before {

  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7);
  z-index: 0;
  pointer-events: none;
}
main, header, section, footer {
  position: relative;
  z-index: 1;
}
/* Slider Styles */
.slider-container {
  position: relative;
  max-width: 400px;
  margin: 32px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,184,217,0.10);
  overflow: hidden;
  padding: 24px 0 32px 0;
}
.slider {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
  min-height: 340px;
}
body {
  background: url('https://cdn.motocms.com/src/868x580/94800/94868-original-1200.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00b8d9;
  color:  #40a8ee;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,184,217,0.10);
}
.slider-btn.prev {
  left: 8px;
}
.slider-btn.next {
  right: 8px;
}
.slider-dots {
  text-align: center;
  margin-top: 18px;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active {
  background: #00b8d9;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 500px) {
  .slider-container {
    max-width: 98vw;
    padding: 12px 0 18px 0;
  }
  .slide img {
    max-width: 90vw;
  }
}
/* Contact Section Styles */
.contact-section {
  background: #fff;
  padding: 60px 20px;
  box-shadow: 0 2px 16px rgba(0,184,217,0.06);
  border-radius: 18px;
  max-width: 900px;
  margin: 40px auto;
}
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-section h2 {
  color: #00b8d9;
  font-size: 36px;
  text-align: center;
  margin-bottom: 18px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.contact-info {
  background: #f2fcff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,184,217,0.08);
  padding: 18px 28px;
  min-width: 220px;
  flex: 1 1 220px;
  text-align: center;
}
.contact-info h3 {
  /* color: #008fa3; */
  margin-bottom: 8px;
}
.contact-info a {
  color: #00b8d9;
  text-decoration: none;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  background: #40a8ee;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,184,217,0.07);
}
.contact-form h3 {
  /* color: #008fa3; */
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid  #40a8ee;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  resize: none;
}
.contact-form textarea {
  min-height: 90px;
}
.contact-form button {
  align-self: flex-end;
}
@media (max-width: 700px) {
  .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .contact-section {
    padding: 30px 8px;
    margin: 20px 4px;
  }
  .contact-form {
    padding: 16px 8px;
  }
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', 'Arial', sans-serif;
    }

    body {
      background: #40a8ee;
      color: #222;
    }

    header {
      background: #470499;
      padding: 0 0 0 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #7a0574;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: padding 0.3s;
    }

    .logo {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  color: #fdc4c4;
  letter-spacing: 1px;
    }
    .logo img {
      height: 38px;
      margin-right: 10px;
    }

    nav {
  display: flex;
  gap: 30px;
  transition: gap 0.3s;
    }
    nav a {
  color: #f55050;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    nav a:hover, nav a.active {
  background: #faf7f4;
    }

    .hero {
  border: 4px solid orange;
  box-shadow: 0 0 40px 10px rgba(255,140,0,0.15);
  border-radius: 24px;
  background: linear-gradient(120deg, #fbf6fb 60%, #d469ee 100%), url('https://petme.social/wp-content/uploads/2023/05/Blog-featured-image-size-9.jpg') no-repeat center center;
  background-size: cover;
  color: orange;
  height: 500px;
  text-align: center;
  padding: 2rem;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: padding 0.3s;
}
    .hero::after {
      content: '';
  
      position: absolute;
      right: 0; bottom: 0; top: 0;
      width: 45vw;
      opacity: 0.18;
      pointer-events: none;
    }
    .hero h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(255,140,0,0.18);
  color: orange;
    }
    .hero p {
  background: rgba(255,140,0,0.08);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 26px;
  margin-bottom: 28px;
  color: orange;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(255,140,0,0.10);
    }
    .btn {
  background: orange;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,140,0,0.12);
  border: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-top: 12px;
      padding: 14px 32px;
      background: #40a8ee;
    
      border: none;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      transition: background 0.2s, color 0.2s;
      cursor: pointer;
    }
    .btn:hover {
  background: #ff9800;
  color:  #40a8ee;
  .hero {
    padding: 30px 8px 30px 8px;
    border-radius: 12px;
    min-height: 220px;
  }
  .hero h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .hero p {
    font-size: 18px;
    padding: 6px 8px;
  }
      background: #e6f7fa;
   color: #008fa3;  
    }

    .adoption, .donation {
      padding: 60px 20px;
      text-align: center;
    }
    .adoption {
      background: #f2fcff;
      box-shadow: 0 2px 16px rgba(0,184,217,0.06);
      border-radius: 18px;
      margin: 40px auto 0 auto;
      max-width: 1200px;
    }
    .adoption h2, .donation h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #00b8d9;
    }
    .pets {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }
    .pet-card {
      background: #fdcefa;
      border: 1px solid  #40a8ee;
      border-radius: 16px;
      padding: 22px 18px 18px 18px;
      width: 250px;
      box-shadow: 0 4px 16px rgba(0,184,217,0.07);
      transition: box-shadow 0.2s, transform 0.2s, width 0.3s, padding 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    /* Responsive Design */
    @media (max-width: 900px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 10px;
      }
      nav {
        gap: 18px;
        width: 100%;
        justify-content: flex-start;
      }
      .logo {
        font-size: 24px;
      }
      .hero {
        padding: 50px 10px 40px 10px;
      }
      .adoption {
        padding: 40px 10px;
      }
    }
    @media (max-width: 700px) {
      .navbar {
        padding: 10px 4px;
      }
      nav {
        gap: 10px;
      }
      .logo img {
        height: 28px;
      }
      .logo {
        font-size: 18px;
      }
      .hero h2 {
        font-size: 28px;
      }
      .hero p {
        font-size: 16px;
      }
      .btn {
        font-size: 15px;
        padding: 10px 18px;
      }
      .adoption, .donation {
        padding: 30px 5px;
      }
      .pet-card {
        width: 90vw;
        max-width: 340px;
        padding: 14px 8px 12px 8px;
      }
      .pets {
        gap: 12px;
      }
      .donate-form {
        padding: 16px 6px;
      }
    }
    @media (max-width: 500px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 6px 2px;
      }
      nav {
        flex-direction: column;
        gap: 6px;
        width: 100%;
        align-items: flex-start;
      }
      .logo {
        font-size: 15px;
      }
      .logo img {
        height: 20px;
      }
      .hero {
        padding: 30px 2px 20px 2px;
      }
      .hero h2 {
        font-size: 20px;
      }
      .btn {
        font-size: 13px;
        padding: 8px 10px;
      }
      .pet-card {
        width: 98vw;
        max-width: 98vw;
        padding: 8px 2px 8px 2px;
      }
      .adoption, .donation {
        padding: 10px 2px;
      }
      .donate-form {
        padding: 8px 2px;
      }
    }
    .pet-card:hover {
      box-shadow: 0 8px 24px rgba(0,184,217,0.13);
      transform: translateY(-4px) scale(1.03);
    }
    .pet-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0,184,217,0.08);
    }
    .pet-card h3 {
      font-size: 22px;
      color: #00b8d9;
      margin-bottom: 6px;
    }
    .pet-card p {
      font-size: 16px;
      color: #444;
      margin-bottom: 16px;
    }
    .pet-card .btn {
      margin-top: auto;
      padding: 10px 22px;
      font-size: 16px;
    }

    footer {
      background: #222;
      color: #e6f7fa;
      text-align: center;
      padding: 32px 15px 18px 15px;
      font-size: 17px;
      letter-spacing: 0.5px;
      margin-top: 40px;
    }
    footer .footer-links {
      margin-bottom: 12px;
    }
    footer a {
      color: #00b8d9;
      text-decoration: none;
      margin: 0 10px;
      font-weight: 500;
      transition: color 0.2s;
    }
    footer a:hover {
      color: #fff;
      text-decoration: underline;
    }
     nav a.donate-link {
      background: linear-gradient(90deg, #ffb347 0%, #ff6f61 100%);
      color: #fff;
      font-weight: bold;
      box-shadow: 0 2px 12px rgba(255,111,97,0.18);
      animation: pulse 1.5s infinite;
      border-radius: 24px;
      padding: 8px 24px;
      position: relative;
      overflow: hidden;
    }
    nav a.donate-link::after {
      content: '❤';
      margin-left: 8px;
      font-size: 18px;
      vertical-align: middle;
      /* animation: heartBeat 1.2s infinite; */
      display: inline-block;
    }
    nav a.donate-link:hover {
      background: linear-gradient(90deg, #ff6f61 0%, #ffb347 100%);
      color: #fff;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,111,97,0.18); }
      70% { box-shadow: 0 0 0 10px rgba(255,111,97,0.05); }
      100% { box-shadow: 0 0 0 0 rgba(255,111,97,0.18); }
    }
    @keyframes heartBeat {
      0%, 100% { transform: scale(1); }
      20% { transform: scale(1.3); }
      40% { transform: scale(1); }
      60% { transform: scale(1.3); }
      80% { transform: scale(1); }
    }
     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', 'Arial', sans-serif;
    }
    body {
      background: #f7fafc;
      color: #222;
    }
    header {
      background: #00b8d9;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .navbar {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      font-size: 30px;
      font-weight: bold;
      color: #fff;
      letter-spacing: 1px;
    }
    .logo img {
      height: 38px;
      margin-right: 10px;
    }
    nav {
      display: flex;
      gap: 30px;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 4px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }
    nav a.donate-link {
      background: linear-gradient(90deg, #ffb347 0%, #ff6f61 100%);
      color: #fff;
      font-weight: bold;
      box-shadow: 0 2px 12px rgba(255,111,97,0.18);
      animation: pulse 1.5s infinite;
      border-radius: 24px;
      padding: 8px 24px;
    }
    nav a.donate-link::after {
      content: '❤';
      margin-left: 8px;
      font-size: 18px;
      vertical-align: middle;
      animation: heartBeat 1.2s infinite;
      display: inline-block;
    }
    nav a:hover, nav a.active {
      /* background: #008fa3; */
      color: #fff;
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 4px 16px rgba(0,184,217,0.13);
    }
    nav a.donate-link:hover {
      background: linear-gradient(90deg, #ff6f61 0%, #ffb347 100%);
      color: #fff;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,111,97,0.18); }
      70% { box-shadow: 0 0 0 10px rgba(255,111,97,0.05); }
      100% { box-shadow: 0 0 0 0 rgba(255,111,97,0.18); }
    }
    @keyframes heartBeat {
      0%, 100% { transform: scale(1); }
      20% { transform: scale(1.3); }
      40% { transform: scale(1); }
      60% { transform: scale(1.3); }
      80% { transform: scale(1); }
    }
    main {
      min-height: 60vh;
    }
    .donate-container {
      max-width: 600px;
      margin: 60px auto 0 auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0,184,217,0.08);
      padding: 40px 32px 32px 32px;
      text-align: center;
    }
    .donate-container h1 {
      color: #ff6f61;
      font-size: 36px;
      margin-bottom: 18px;
    }
    .donate-container p {
      font-size: 20px;
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .donate-btn {
      display: inline-block;
      background: linear-gradient(90deg, #ffb347 0%, #ff6f61 100%);
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      padding: 14px 40px;
      border: none;
      border-radius: 30px;
      margin-top: 18px;
      cursor: pointer;
      box-shadow: 0 2px 12px rgba(255,111,97,0.18);
      transition: background 0.2s, transform 0.2s;
      animation: pulse 1.5s infinite;
    }
    .donate-btn:hover {
      background: linear-gradient(90deg, #ff6f61 0%, #ffb347 100%);
      transform: scale(1.07);
    }
    footer {
      background: #222;
      color: #e6f7fa;
      text-align: center;
      padding: 32px 15px 18px 15px;
      font-size: 17px;
      letter-spacing: 0.5px;
      margin-top: 40px;
    }
    footer .footer-links {
      margin-bottom: 12px;
    }
    footer a {
      color: #00b8d9;
      text-decoration: none;
      margin: 0 10px;
      font-weight: 500;
      transition: color 0.2s;
    }
    footer a:hover {
      color: #fff;
      text-decoration: underline;
    }