@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');


*,
::after,
::before {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}


body {
  background-color: #e0e0e0;

}


.neo {
  border-radius: 10px;
  background: #e1e1e1;
  box-shadow: 5px 5px 10px #cacaca,
    -5px -5px 10px #f6f6f6;
  border: px solid #EEEEEE;
}

.active1 {
  border-radius: 10px;
  background: #e0e0e0;
  box-shadow: inset 5px 5px 10px #cacaca,
    inset -5px -5px 10px #f6f6f6;
}


.heading-text {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;

}

.name {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 4px;
}

.btn:active {
  border-radius: 10px;
  background: #e0e0e0;
  box-shadow: inset 5px 5px 10px #cacaca,
    inset -5px -5px 10px #f6f6f6;
}

.inset {
  background: #e0e0e0;
  box-shadow: inset 5px 5px 10px #cacaca,
    inset -5px -5px 10px #f6f6f6;
}

.about-text {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 2px;
}


.item-detail {
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
}

.heading-color {
  color: #007bff;
}

/* ----------------------------- */


.card {
  border-radius: 10px;
  padding: 1.5rem;
  background: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: scale(1.08);


}

.card:hover:before {
  opacity: 1;
}

.card:hover .info {
  opacity: 1;
  transform: translateY(0px);
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: 0.2s;
  opacity: 0;
}


.card .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}

.card .info {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}

.card .info h1 {
  margin: 0px;
}

.card .info p {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 8px;
}

.card .info a {
  padding: 0.4rem;
  outline: none;
  border: none;
  border-radius: 3px;
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
}

.card .info a:hover {
  background: #007bff;
  color: white;
}