.hero-slide {
    height: 100vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: white;
    font-weight: bolder;
    padding-bottom: 60px;
  }
  .hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    z-index: 1;
    transition: background-image 1s ease-in-out;
    background-color: rgba(131, 91, 18, 0.7);
  }
  .typewriter {
    position: relative;
    z-index: 2;
    padding: 20px;
  }
  .typewriter h1 {
    overflow: hidden;
    border-right: .15em solid white;
    white-space: nowrap;
    font-weight: bolder;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 9s steps(40, end) alternate infinite, blink-caret .75s step-end infinite;
  }
  @keyframes typing {
    0% { width: 0 }
    50% { width: 100% }
    100% { width: 0 }
  }
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white; }
  }

  .fade-in-up,
  .fade-in-left,
  .fade-in-right,
  .fade-in-zoom {
    opacity: 0;
  }
  .animated.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
  }
  .animated.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
  }
  .animated.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
  }
  .animated.fade-in-zoom {
    animation: fadeInZoom 1s ease-out forwards;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes fadeInZoom {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #FFA500;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    display: none;
  }
  .form-control, .btn-subscribe {
    border-radius: 0;
  }
  .card img {
    transition: transform 0.5s ease;
  }
  .card:hover img {
    transform: scale(1.05);
  }
  .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover .card-img-top {
    transform: scale(1.03);
  }
  
  .card-title {
    margin-top: 10px;
    font-size: 1.1rem;
  }
  .service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .card-body {
    padding: 2rem;
  }
  
  
  .card-text {
    font-size: 0.95rem;
    color: #555;
  }
  
  .card-body p {
    color: #777;
  }    