
a{
    text-decoration: none;
}
body{
    box-sizing: border-box;
    margin: 0;
}

/* hehaat card */
.hehaat-card{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    padding:20px;
    z-index: 2;
    margin-bottom:12px;
    /* border-radius:12px;
    box-shadow: 0 2px 12px rgba(0,0,0,12%); */
    transition: all .3s ease-in-out;
}

.hehaat-card:hover{
    transform: translateY(-2px)
}
.hehaat-card .card-image{
    overflow: hidden;
    width: 100%;
    height: 200px;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
}

.hehaat-card .card-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    transition: all .3s ease-in-out;
}

.hehaat-card:hover .card-image img{
    transform: scale(1.03);
}

.hehaat-card .card-text{
    color:black;
    font-family: 'vazirmatn' ,Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin: 12px;
}

.hehaat-card .card-text-meta{
    font-size: 16px;
    font-weight: 400;
    color: #2f2f2d;
}

.hehaat-card:hover::before {
    opacity: 1;
  }
.hehaat-card::before,
.hehaat-card::after {
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  transition: opacity 500ms;
  width: 100%;
}

.hehaat-card::before {
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(253, 251, 142, 0.432),
    transparent 40%
  );
  z-index: 3;
}

.hehaat-card::after {
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(250, 255, 209, 0.575),
    transparent 40%
  );
  z-index: 1;
}

.hehaat-card:hover .hehaat-card::after {
    opacity: 1;
  }


  /* hehaat card end  */

  /* hehaat section  */
  .hehaat-section{
    width: 100%;
    margin: 20px 0;
    padding:200px;
    background-color: rgb(155, 170, 67);
  }

  /* Parallax Styling */

  .parallax-wrap {
    position: relative;
    /* width: 100%;
    height: 100vh; */
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .parallax-wrap .center-text {
    position: relative;
    font-size: 100px;
    color: white;
    z-index: 2;
    text-align: center;
  }
  .parallax-wrap span {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 100%;
  }
  .parallax-wrap span:nth-child(1) {
    height: 300px;
    width: 300px;
    top: 30%;
    left: 30%;
    background-position:center center;
    background-size: cover;
    background: url("https://images.pexels.com/photos/13313434/pexels-photo-13313434.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    /* background: blue; */
    z-index: 3;
  }
  .parallax-wrap span:nth-child(2) {
    top: 60%;
    left: 80%;
    background: yellow;
    z-index: 3;
  }
  .parallax-wrap span:nth-child(3) {
    top: 40%;
    left: 60%;
    background: green;
    z-index: 3;
  }
  .parallax-wrap span:nth-child(4) {
    top: 70%;
    left: 40%;
    background: red;
    z-index: 3;
  }
  .parallax-wrap span:nth-child(5) {
    top: 40%;
    left: 30%;
    background: purple;
    z-index: 3;
  }

  /* End Parallax Styling */
