.doorstep-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.doorstep-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  right: -100px;
  bottom: 0;
  background-image: url("../leaf.jpg");
  background-position: -50px center, calc(100% + 50px) center;
  background-repeat: no-repeat, no-repeat;
  background-size: 400px auto, 400px auto;
  opacity: 0.5;
  z-index: -1;
  animation: leafMove 3s ease-in-out infinite alternate;
}

.doorstep-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 50%;
  height: 100%;
  background-image: url("../leaf.jpg");
  background-position: -50px center, calc(100% + 50px) center;
  background-repeat: no-repeat;
  background-size: 400px auto;
  opacity: 0.5;
  z-index: -1;
  transform: scaleX(-1);
  animation: leafMove 3s ease-in-out infinite alternate;
}

@keyframes leafMove {
  0% {
    background-position: -50px center, calc(100% + 50px) center;
  }
  50% {
    background-position: -30px calc(50% + 10px),
      calc(100% + 30px) calc(50% - 10px);
  }
  100% {
    background-position: -50px center, calc(100% + 50px) center;
  }
}

.doorstep-subheading {
  font-size: 1.1rem;
  color: #fa6e32;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.doorstep-heading {
  font-size: 2.8rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
}

.doorstep-description {
  font-size: 1.1rem;
  color: #fa6e32;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

/* Responsive font sizes */
@media (max-width: 1024px) {
  .doorstep-heading {
    font-size: 2.2rem;
  }
  .doorstep-subheading {
    font-size: 1rem;
  }
  .doorstep-description {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .doorstep-heading {
    font-size: 1.5rem;
  }
  .doorstep-subheading {
    font-size: 0.75rem;
  }
  .doorstep-description {
    font-size: 0.75rem;
  }
}


.doorstep-card{
    background-color: #ffffff;
    /* border: 5px solid transparent; */
    background: linear-gradient(white, white) padding-box,
    linear-gradient(45deg, #fa6e32, #ff8c42, #fa6e32, #ff8c42, #fa6e32)
      border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    /* border-radius: 100px 0px 100px 0px; */
    animation: borderGlow 3s ease-in-out infinite alternate;
}