body {
  background-color: #f7f7f7; 
  margin: 100px 0px 0px 0px;
  display: flex;
}

.heading {
  margin-top: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font: weight 400px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  color: black;
}

.parah {
  font-weight: 350;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  margin: 50px;

}
.container {
  text-align: center;
  margin: 30px 0px 30px 0px;
  margin-bottom: 50px;
}

.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-left: 350px;
  padding-right: 350px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .items {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Create a pseudo-element for the gap */
.items::before {
  content: '';
  position: absolute;
  top: 50px; /* Adjust to match the margin-top of items */
  bottom: 60px; /* Adjust to match the margin-bottom of items */
  background-color: red; /* Red color for the margin */
  z-index: -1; /* Move behind the items */
}

/* Adjust the z-index of items so they are on top of the red margin */
.item {
  width: 120px;
  height:120px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: inset 0px 5px 10px 0px rgb(255, 255, 255);
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.item:hover{
  transform: translateY(5px);
  box-shadow: inset 0px 10px 20px 2px rgba(250, 250, 250, 0.25);
}


.breakable {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}

.broken {
  transform: scale(1.1) rotate(15deg);
}


.card-container {
  text-align: left; /* Center the content within the container, adjust as needed */
margin: 0px;
}

.section-header {
  font-size: 1.2rem;
  color: #000000; /* Adjust the color as needed */
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
  margin: 0px;
  font-weight: 200px;
}

.card-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  margin-top: 0px;
  margin-bottom: 50px;
}

.card {
  width: 250px;
  height: 230px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease-in-out;
  background-color: #23c4f7;
  gap: 5px;
  margin: 15px; /* Adjust margin as needed */
  margin-bottom: 50px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card:hover {
  transform: scale(1.05);
  color:#fff;
}

.carda {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 20px;
  text-align: center;
}

.carda:hover {
  text-decoration: none;
  color: white;
  display: block;
  padding: 20px;
  text-align: center;

}


.card img {
  max-width: 15%;
  height: auto;
  border-radius: 50%;
}

.cardh3 {
  margin-top: 10px;
  font-size: 1.2rem;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cardp {
  margin-top: 10px;
  color: #060606;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media screen and (max-width: 768px) {
  .card {
    width: 80%; /* Make the card take full width of the container */
    max-width: 250px; /* Set a maximum width for larger screens */
    margin: 15px auto; /* Center the card and adjust margin as needed */
    margin-bottom: 30px;
  }

  .card img {
    max-width: 40%; /* Adjust the image size for smaller screens */
  }

  .carda {
    padding: 10px; /* Adjust padding for smaller screens */
  }

  .cardh3 {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }

  .cardp {
    font-size: 0.7rem; /* Adjust font size for smaller screens */
  }
}

  @media screen and (max-width: 768px) {
    .card-section {
      flex-direction: column; /* Stack cards vertically on smaller screens */
      align-items: center;
    }
  }

