
@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/shelter-about-banner.jpeg') 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;
}

.about-hero-termsCondition {
  position: relative;
  background: url('https://img.freepik.com/free-vector/orange-color-gradient-background-gradient-3d-design_343694-3662.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: #e7a582;
  font-weight: 700;
  margin-bottom: 50px;
}

.impact-section {
  background-color: #f3c63b;
}

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

.team-section {
  background: #f5f5f5;
}

.team-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Dark gradient overlay */
.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  color: #fff;
}

/* Name */
.team-overlay h5 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
}

/* Designation */
.team-overlay p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.85;
}

/* Hover Effects */
.team-card:hover img {
  transform: scale(1.08);
}

.team-card:hover {
  transform: translateY(-8px);
}


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

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

.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;
}

.comitment-img{
        height: 450px;
    width: 100%;
    object-fit: cover;
}


        
        
        