
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Montserrat";
}

 .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            background: url('https://placehold.co/1080x400') no-repeat center center/cover;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
        }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: bold;
        }
        .hero-content p {
            font-size: 1.5rem;
            margin-top: 10px;
        }
        .btn-cta {
            margin: 10px;
            font-size: 1.2rem;
            padding: 12px 24px;
            border-radius: 8px;
        }
        .btn-donate {
            background-color: #ff7f50;
            color: white;
            border: none;
        }
        .btn-adopt {
            background-color: #4CAF50;
            color: white;
            border: none;
        }
        .btn-donate:hover {
            background-color: #e56a45;
        }
        .btn-adopt:hover {
            background-color: #3e8e41;
        }
        
        .Caption {
    display: none !important;
    line-height: 18px;
    padding: 0 10px 10px;
}

.about-hero {
  position: relative;
  background: url('images/about-hero.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background-color: #fd8f4b;
  border: none;
}

.section-title {
  color: #00be64;
  font-weight: 700;
  margin-bottom: 50px;
}

.impact-section {
  background-color: #00be64;
}

.service-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.team-card img {
  width: 100%;
  border-radius: 14px;
}


.cta-section {
  background: #fd8f4b;
  padding: 80px 0;
}

.what-we-do {
  background-color: #fd8f4b;
}

.work-box {
  padding: 30px 20px;
  color: #fff;
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.work-box:hover .icon-circle {
  background: #ffffff;
  color: #fd8f4b;
}

.cta-box{
    margin: 50px 0;
}


        
        
        