/* Practice Section Styles */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.practice_section {
  padding-top: 40px; /* Adjusted top padding for mobile */
  text-align: center;
}

/* Styles for Heading Text */
.heading-text {
  margin-bottom: 5px;
  padding: 0;
  margin: 0;
  color: #fddd33;
  font-weight: bold;
}

/* Add space between text-uppercase and practice_container */
.practice_section h3.text-uppercase {
  margin-bottom: 50px; /* Adjust the value as needed */
}

/* Styles for Practice Container */
.practice_container {
  margin-top: -20px; /* Adjusted top margin for mobile */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Styles for Practice Box */
.practice_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 10px; /* Adjusted margin for mobile */
  transform: translateY(0);
  transition: all 0.7s;
  padding-bottom: 30px; /* Adjusted padding for mobile */
}

.practice_box:hover {
  transform: translateY(-20px); /* Adjusted translateY for mobile */
  cursor: pointer;
}

/* Styles for Practice Image Box */
.practice_img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px; /* Adjusted width for mobile */
  height: 195px; /* Adjusted height for mobile */
  border-radius: 60px; /* Adjusted border-radius for mobile */
  background-color: #363636;
}

.practice_box:hover .practice_img-box {
  background-color: #fddd33;
}

/* Styles for Practice Box Title */
.practice_box h4 {
  margin-top: 10px; /* Adjusted margin for mobile */
}

/* Styles for Practice Image within the Box */
.practice_img-box img {
  width: 80px; /* Adjusted width for mobile */
}

/* Styles for Practice Detail */
.practice_detail p {
  margin-bottom: 30px; /* Adjusted margin-bottom for mobile */
  text-align: center;
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 600px) {
  .practice_box {
    margin: 10px 5px; /* Further adjusted margin for smaller screens */
    padding-bottom: 20px; /* Further adjusted padding for smaller screens */
  }

  .practice_img-box {
    width: 120px;
    height: 150px;
    border-radius: 50px;
  }

  .practice_box h4 {
    margin-top: 5px;
  }

  .practice_img-box img {
    width: 60px;
  }

  .practice_detail p {
    margin-bottom: 50px;
  }
}



