/* import google font */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/* reset all default styles  */
* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* shared styles  */
:root {
  --pmk-green: #00946a;
  --pmk-green-dark: #176f4e;
  --pmk-green-light: #e6f4ef;

  --pmk-blue: #0e5a7c;
  --pmk-blue-dark: #083d56;
  --pmk-gold: #f4b400;

  --pmk-dark: #1f2933;
  --pmk-gray-light: #e0e0e0;
  --pmk-white: #ffffff;
}

.container-width {
  width: 80%;
  margin: 0 auto;
}

.font-playfair {
  font-family: "Playfair Display", serif;
}

/* common styles  */
body {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* about section's style  */
#about-pmk {
  padding-top: 120px;
}

/* GRID LAYOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-image-wrapper {
  height: 380px;
  width: 380px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  animation: moveImage 5s linear infinite;
}

@keyframes moveImage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.about-image-wrapper .image-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(
    135deg,
    var(--pmk-green-light),
    var(--pmk-blue-light)
  );
  border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
  z-index: 1;
  opacity: 0.4;
  filter: blur(30px);
  animation: floatImage 8s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.about-image-wrapper .image-ring {
  position: absolute;
  top: -26px;
  left: -20px;
  height: 420px;
  width: 420px;
  border-radius: 50%;
  border: 1px dashed var(--pmk-green);
  animation: rotateRing 200s linear infinite;
  z-index: 2;
  opacity: 0.4;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-image-wrapper .about-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid var(--pmk-green);
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  text-align: left;
}

/* TOP TAG */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pmk-blue-dark);
  background: var(--pmk-green-light);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
}

/* SUBTITLE */
.section-subtitle {
  color: var(--pmk-green);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* TITLE */
.section-title {
  color: var(--pmk-blue-dark);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* BODY TEXT */
.organization-motive p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pmk-dark);
  margin-bottom: 20px;
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 12px 28px;
  background: var(--pmk-green);
  color: var(--pmk-white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn i {
  transition: 0.3s ease;
}

.about-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.about-btn:hover i {
  transform: translateX(5px);
}

/* pmk perspective section styles */
#pmk-perspective {
  padding-top: 120px;
}

#pmk-perspective .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.head-title {
  color: var(--pmk-blue-dark);
  font-size: 2.5rem;
  font-weight: 700;
}

.head-title span {
  color: var(--pmk-green);
}

.head-text {
  color: var(--pmk-dark);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 10px;
}

#pmk-perspective .perspective-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.perspective-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.perspective-circle {
  position: relative;
  height: 420px;
  width: 420px;
  margin: auto;
}

.perspective-circle::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 4px solid var(--pmk-green-light);
  border-radius: 50%;
}

.perspective-circle::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed var(--pmk-green-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-color: var(--pmk-green-light);
  border: 1px solid var(--pmk-green-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.circle-center span {
  color: var(--pmk-green);
  font-size: 1.75rem;
}

.circle-center .circle-text {
  color: var(--pmk-blue-dark);
  font: 1.4rem;
  font-weight: 600;
}

.circle-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  color: var(--pmk-white);
  border: 1px solid var(--pmk-green);
  background-color: var(--pmk-green);
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
}

.btn-1 {
  top: -30px;
  left: 42%;
}

.btn-2 {
  bottom: 70px;
  right: 10px;
}

.btn-3 {
  bottom: 70px;
  left: -10px;
}

.circle-btn:hover {
  transform: scale(1.1);
}

.btn-animation {
  animation: zoomInZoomOut 2s linear infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes zoomInZoomOut {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.perspective-object {
  display: none;
  height: 430px;
  background-color: var(--pmk-white);
  border-radius: 10px;
  padding: 35px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.perspective-object:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.object-visible {
  display: block;
}

.perspective-object .perspective-title {
  color: var(--pmk-blue-dark);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.perspective-object .perspective-title span {
  color: var(--pmk-green);
  position: relative;
}

.perspective-object .perspective-title span:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  right: 0;
  height: 3px;
  width: 60px;
  background: var(--pmk-green);
  border-radius: 6px;
}

.perspective-object .perspective-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0 16px;
}

.perspective-object .perspective-head span {
  border: 2px solid var(--pmk-green-light);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pmk-green-light);
  color: var(--pmk-green);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.perspective-object .perspective-head span:hover {
  background-color: var(--pmk-green);
}

.perspective-object .perspective-head span:hover i {
  color: var(--pmk-white);
}

.perspective-object .perspective-head .perspective-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pmk-dark);
  line-height: 1.4;
}
.perspective-object .perspective-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--pmk-dark);
  margin-top: 10px;
  max-width: 680px;
}

.perspective-object ul {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.perspective-object ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.perspective-object ul li i {
  color: var(--pmk-green);
  margin-top: 4px;
}

.perspective-object ul li span {
  line-height: 1.6;
}

/* responsive styles:: extra small devices  */
@media (max-width: 767.98px) {
  /* common styles  */
  .container-width {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .section-title,
  .head-title {
    font-size: 2rem;
  }

  .organization-motive p,
  .about-btn,
  .head-text,
  .perspective-object .perspective-text {
    font-size: 0.875rem;
  }

  /* about section styles */

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pmk-picture {
    height: 420px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* IMAGE */
  .about-image-wrapper {
    height: 260px;
    width: 260px;
  }

  .about-image-wrapper .image-blob {
    height: 300px;
    width: 300px;
  }

  .about-image-wrapper .image-ring {
    display: none;
  }

  /* pmk-perspective section style  */

  #pmk-perspective .section-header {
    margin-bottom: 55px;
  }

  #pmk-perspective .perspective-container {
    grid-template-columns: 1fr;
  }

  .perspective-circle {
    height: 280px;
    width: 280px;
  }

  .perspective-circle::after {
    width: 180px;
    height: 180px;
  }

  .circle-center {
    width: 140px;
    height: 140px;
  }

  .circle-center span {
    font-size: 1.5rem;
  }

  .circle-center .circle-text {
    font: 1.125rem;
  }

  .circle-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .btn-1 {
    top: -15px;
  }

  .btn-2 {
    bottom: 70px;
    right: -10px;
  }

  .btn-3 {
    bottom: 70px;
    left: -10px;
  }

  .perspective-content {
    order: 2;
  }

  .perspective-object {
    height: max-content;
    padding: 30px;
  }

  .perspective-object .perspective-title {
    font-size: 1.5rem;
  }

  .perspective-object .perspective-head .perspective-subtitle {
    font-size: 1rem;
  }

  .perspective-object .perspective-head span {
    width: 50px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* responsive styles:: medium devices  */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* common styles  */
  .section-title,
  .head-title {
    font-size: 2.275rem;
  }

  /* about section style  */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pmk-picture {
    height: 420px;
  }

  /* IMAGE */
  .about-image-wrapper {
    height: 300px;
    width: 300px;
  }

  .about-image-wrapper .image-blob,
  .about-image-wrapper .image-ring {
    height: 340px;
    width: 340px;
  }

  /* pmk-perspective section style  */
  #pmk-perspective .perspective-container {
    grid-template-columns: 1fr;
  }

  .perspective-circle {
    height: 380px;
    width: 380px;
  }

  .perspective-circle::after {
    width: 260px;
    height: 260px;
  }

  .circle-center {
    width: 190px;
    height: 190px;
  }

  .perspective-content {
    order: 2;
  }
}

/* responsive styles:: large devices  */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* pmk-perspective section style  */
  #pmk-perspective .perspective-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .perspective-circle {
    height: 380px;
    width: 380px;
  }

  .perspective-circle::after {
    width: 260px;
    height: 260px;
  }

  .circle-center {
    width: 190px;
    height: 190px;
  }

  .perspective-object {
    height: 520px;
  }
}

/* responsive styles:: extra large devices  */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* responsive styles:: extra extra large devices  */
@media (min-width: 1400px) {
}
