.abtext
    {
         background-repeat: no-repeat;
        background-attachment: fixed; 
        background-size: cover; 
        box-shadow: 1px 2px 8px 6px #f3943124; 
        overflow: hidden; 
        padding:30px
    }

.card1 {
  width: 300px;
  height: 400px;
  transition: .3s;
  position: relative;
  border-radius: .5rem 2rem;
  box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.5);
}

.card1:hover {
  transform: scale(1.03);
}

.img {
  height: 100%;
  transition: all .3s;
  background: #ff0084;
  background: -webkit-linear-gradient(to right, #9c1671, #eb8ec6);
  background: linear-gradient(to right, #9c1671, #eb8ec6);
  width: 100%;
  border-radius: .5rem 2rem;
}

.img:hover {
  transform: scale(1.05);
}

.img-container {
  display: grid;
  border-radius: .5rem 2rem;
  height: 400px;
  overflow: hidden;
}

.description {
  position: absolute;
  bottom: .5rem;
  left: .5rem;
  text-align: center;
  padding: .5rem 1em;
  width: 95%;
  height: min-content;
  transition: all 0.5s ease;
  text-overflow: ellipsis;
  backdrop-filter: blur(.1rem);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: .5rem 2rem;
}

.description:hover {
  transform: perspective(100px) translateX(7px) rotateX(3deg) rotateY(3deg) scale(1);
  box-shadow: none;
}

.title {
  color: aliceblue;
}

.page-header-inner {
  /*background: rgba(0, 0, 0, .7);*/
   background: rgb(255, 255, 255);
  
}

.gap-4 {
margin-top: 50px; /* Add a 30px gap between rows */
}