@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

section {
  padding: 2rem 9%;
}

:root {
  --main-color: rgb(255, 255, 255);
  /* --border-radius: 95% 4% 97% 5% / 4% 94% 3% 95%; */
  --border: 0.2rem solid var(--main-color);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
  background-color: #6c63ff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

.heading {
  font-size: 4rem;
  text-transform: uppercase;
  color: var(--main-color);
  text-align: left;
  pointer-events: none;
  position: relative;
  padding-bottom: 0.5rem;
}

.menu {
  background: #6c63ff;
  background-position: center;
  background-size: cover;
}

.menu .box-container .box .content h3 {
  font-size: 2.2rem;
  color: var(--main-color);
  line-height: 1.8;
}

.menu .box-container .box .content p {
  font-size: 5rem;
  color: var(--main-color);
  line-height: 1.8;
  padding: 1rem 0;
}

.menu .box-container .box .content span {
  font-size: 1.3rem;
  color: var(--main-color);
  line-height: 1.8;
}

.menu .box-container .box .img_prof {
  width: 150px; /* adjust the width and height as needed */
  height: 150px;
  border-radius: 50%; /* creates a circular shape */
  border: 2px solid rgb(255, 255, 255); /* sets the border color and width */
  overflow: hidden; /* ensures the image stays within the circular shape */
}

.menu .box-container .box .img_prof img {
  width: 100%; /* makes the image fill the container */
  height: 100%;
  object-fit: cover; /* maintains the image's aspect ratio */
}

.menu .box-container .desc {
  font-size: 2.5rem;
  color: var(--main-color);

  padding: 0.5rem 0;
}

.menu .box-container .content {
  font-size: 1.5rem;
  color: var(--main-color);

  padding-bottom: 3.5rem;
}

.image-popup {
  display: none; /* hides the image popup by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.image-popup img {
  max-width: 80%;
  max-height: 80%;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}

.menu .box-container .bt1 {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  background-color: #6c63ff;
  color: rgb(255, 255, 255);
  border: 2px solid #ffffff;
  border-radius: 10px;
}
