 body {
   font-family: 'Quicksand', sans-serif;
   margin: 0;
   margin-bottom: 0%;
   }

  .card:hover{
  border: 1px solid;
  border-color: rgb(240, 240, 240);
  box-shadow:10px 10px 10px 10px  #c7c7c7;
  }
  ul.a {
  list-style-type: circle;
  font-size: 18px; /* increases bullet and text proportionally */
 }

 ul.a li::marker {
  font-size: 40px; /* increases only bullet size */
  color: #D707F2; /* optional: change bullet color */
 }



.card {
  width: 300px;
  border-radius:0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  padding: 10px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(151, 138, 232, 0.8);/* overlay color */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: start;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.card-img:hover .overlay {
  opacity: 1;
}

.card-title {
  margin: 10px 0;
  font-size: 1.2rem;
}


.contact-section h3 {
  font-family: 'Poppins', sans-serif;
}

.contact-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  background-color: #fffaf2;
  border: 1px solid #ccc;
  padding: 10px 18px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4a20b0;
  box-shadow: none;
}
