.head-desk {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 5%;
  gap: 100px;
  flex-wrap: wrap;
  margin-bottom: 66px;
}

/* IMAGE BOX */
.head-desk-image-box {
  position: relative;
  width: 343px;
  max-width: 100%;
}
.head-desk-image-box::after{
    content: "";
    width: 85%;
    height: 100%;
    border-radius: 40px;
    border: 4px solid #00796b;
    position: absolute;
    left: 30px;
    bottom: -2px;
}

.head-desk-image-box img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  position: relative;
  z-index: 10;
  object-fit: cover;
}

/* Decorative shapes */
.head-desk-shape1 {
  position: absolute;
  top: -30px;
  left: -20px;
  width: 120px;
  height: 90%;
  background-image: linear-gradient(to bottom, #00796b, #ffffff);
  border-radius: 15px;
  z-index: 1;
}

.head-desk-shape2 {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 140px;
  height: 90%;
  background-image: linear-gradient(to bottom, #ffffff, #00796b);
  border-radius: 15px;
  z-index: 1;
}

/* TEXT CONTENT */
.head-desk-box {
  /* max-width: 500px; */
  width: 50%;
}

.head-desk-box h2 {
  font-size: var(--sub-hading);
  font-weight: bold;
  color: #2d3e4f;
  
  margin: 25px 0px;
}

.head-desk-box p {
  font-size:var(--paragraph);
  letter-spacing:.5s;
  color: #555;
  margin-bottom: 20px;
}

/* Bullet points */
.head-desk-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 0;
  margin-bottom: 25px;
}

.head-desk-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.head-desk-list div span {
  width: 10px;
  height: 10px;
  background: #f9a825;
  border-radius: 50%;
}

/* From Uiverse.io by adeladel522 */ 
.head-desk-btn{
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;

  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  width: 156px;
  text-decoration: none;
        background: var(--bg-color);
}

.iconn {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.head-desk-btn:hover {
  transform: scale(1.05);
  border-color: #fff9;
  color: white;
}

.head-desk-btn:hover .iconn {
  transform: translate(4px);
}

.head-desk-btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.head-desk-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}



/* Responsive */
@media (max-width: 1090px) {
  .head-desk{
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .head-desk-list {
    grid-template-columns: 1fr;
  }
  .head-desk-box {
    margin-top: 20px;
    /* max-width: 100%; */
    width: 100%;
  }
}
@media (max-width: 425px) {
  .head-desk-image-box {
    width: 275px;
   }
  .head-desk-image-box img {
    width: 300px;
    height: 300px;
  }
}