/* import common styles  */
@import url("./common.css");

/* about section styles  */
/* about image  */
.about-image-container {
  margin-top: 80px;
  height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.long-img-container {
  width: 393px;
  height: 510px;
  position: relative;
}

.wider-img-container {
  width: 443px;
  height: 330px;
  position: absolute;
  bottom: -70px;
  left: 610px;
  z-index: 5000;
}

.long-img,
.wide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 5px solid var(--pmk-green);
}

.long-img {
  aspect-ratio: 1 / 1.2978;
  clip-path: inset(0px 0% 0px 0px);
  border-radius: 25px;
}

.wide-img {
  aspect-ratio: 1 / 0.745;
  border-radius: 35px;
}

.experience {
  width: 110px;
  height: 80px;
  aspect-ratio: 1 / 1;

  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 30px;
  right: -125px;

  text-align: center;
  background-color: var(--pmk-green);
  border-radius: 20px;
  border: 1px solid var(--pmk-green);
  clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
  animation: slideExp 2.5s ease-in-out infinite;
}

.experience h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pmk-white);
}
.experience p {
  font-size: 0.8rem;
  line-height: 1;
  color: var(--pmk-white);
  font-weight: 500;
}

@keyframes slideExp {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

/* about content  */
.about-content-container {
  margin-top: 120px;
  /* height: calc(100vh - 40px); */
  background-color: rgba(0, 0, 0, 0.03);
  padding: 40px 0;
}

/* vmo container  */
.vmo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.vmo-card {
  padding: 25px 30px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(0);
  transition: all 0.5s ease;
  border-top: 4px solid var(--pmk-green);
}

.vmo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  border-bottom: 4px solid var(--pmk-green);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.vmo-title {
  color: var(--pmk-blue-dark);
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 600;
  position: relative;
}

.vmo-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 40px;
  border-radius: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: var(--pmk-green);
}

.vmo-body {
  margin-top: 16px;
}

.button-container {
  margin-top: 40px;
  text-align: center;
}

/*responsive styles:: small devices  */
@media (max-width: 767.98px) {
  p {
    font-size: 1rem;
  }

  /* about section  */
  .about-image-container {
    height: auto;
    /* justify-content: flex-start; */
  }

  .long-img-container {
    width: 258px;
    height: 335px;
  }

  .wider-img-container {
    width: 268px;
    height: 200px;
    position: absolute;
    left: 100px;
  }

  .experience {
    width: 75px;
    height: 75px;
    top: 12px;
    right: -78px;
  }
  .experience h4 {
    font-size: 1rem;
  }

  .experience p {
    font-size: 0.68rem;
  }

  /* about content container */
  .about-content-container {
    height: auto;
  }

  .vmo-title {
    font-size: 1.125rem;
  }

  .vmo-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* responsive styles:: medium devices  */
@media (min-width: 768px) and (max-width: 991.98px) {
  p {
    font-size: 1.1rem;
  }

  /* about image container  */
  .long-img-container {
    width: 392px;
    height: 508px;
  }

  .wider-img-container {
    width: 435px;
    height: 323px;
    bottom: -120px;
    left: 250px;
  }

  /* about content container  */
  /* about content container */
  .about-content-container {
    height: auto;
  }

  .vmo-title {
    font-size: 1.125rem;
  }

  .vmo-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* responsive styles:: large devices  */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wider-img-container {
    bottom: -110px;
    left: 345px;
  }
}

/* responsive styles:: extra large devices  */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* responsive styles:: extra extra large devices  */
@media (min-width: 1400px) {
}

/* responsive styles:: extra */
@media (max-width: 424.98px) {
  .about-image-container {
    height: auto;
    justify-content: flex-start;
  }

  .long-img-container {
    width: 188px;
    height: 243px;
  }

  .wider-img-container {
    width: 232px;
    height: 173px;
    position: absolute;
    left: 65px;
  }

  .experience {
    width: 80px;
    height: 65px;

    right: -95px;
    top: 10px;
  }

  .experience h4 {
    font-size: 1rem;
  }

  .experience p {
    font-size: 0.65rem;
  }
}
