/* profile short content start */
body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif !important;
  background: #0f6b57 !important;
  color: #ffffff !important;
  margin: 0;
}


.profile-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  min-height: 100vh;
  position: relative;
  padding: 80px 120px;
  padding-top: 10%;
}

/* ================= LEFT CARD ================= */

.profile-card {
  position: relative;
  width: 433px;
  height: 671px;
  background: #b58e3c;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.image-wrapper {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 433px;
  height: 671px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #b58e3c;
  text-align: center;
  padding: 25px 0;
  font-weight: 700;
  font-size: 50px;
  line-height: 80px;
  text-transform: uppercase;
}

/* ================= RIGHT CONTENT ================= */

.profile-content {
  max-width: 900px;
}

.heading-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.divider {
  width: 6px;
  height: 150px;
  background: #b58e3c;
  margin-top: 20px;
}

.profile-content h1 {
  font-weight: 700;
  font-size: 116px;
  line-height: 136px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin: 0;
}

.experience-badge {
  display: inline-block;
  background: #094d40;
  padding: 15px 35px;
  border-radius: 12px;
  margin-top: 40px;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: -0.1px;
  text-decoration: none;
}

.experience-badge span {
  color: #f4c15d;
}

.description {
  margin-top: 40px;
  font-weight: 400;
  font-size: 44px;
  line-height: 58px;
  letter-spacing: -0.1px;
  max-width: 750px;
}

/* =======================================================
   ================== RESPONSIVE =========================
   ======================================================= */

/* -------- 1440px -------- */
@media (max-width: 1440px) {
  .profile-section {
    gap: 80px;
    padding-top: 14%;
  }

  .profile-content h1 {
    font-size: 100px;
    line-height: 120px;
  }
}

/* -------- 1200px -------- */
@media (max-width: 1200px) {
  .profile-content h1 {
    font-size: 90px;
    line-height: 110px;
  }

  .description {
    font-size: 36px;
    line-height: 50px;
  }
}

/* -------- 1024px -------- */
@media (max-width: 1024px) {
  .profile-section {
    gap: 60px;
    padding: 60px;
    padding-top: 20%;
  }

  .profile-card {
    width: 380px;
    height: 600px;
  }

  .image-wrapper {
    width: 380px;
    height: 600px;
  }

  .profile-content h1 {
    font-size: 72px;
    line-height: 90px;
  }

  .experience-badge {
    font-size: 28px;
    line-height: 40px;
  }
}

/* -------- 768px -------- */
@media (max-width: 768px) {

  .profile-section {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .heading-wrapper {
    justify-content: center;
  }

  .divider {
    display: none;
  }

  .profile-content h1 {
    font-size: 60px;
    line-height: 70px;
  }

  .description {
    font-size: 28px;
    line-height: 40px;
  }
}

/* -------- 576px -------- */
@media (max-width: 576px) {

  .profile-card {
    width: 320px;
    height: 520px;
  }

  .image-wrapper {
    width: 320px;
    height: 520px;
  }

  .profile-name {
    font-size: 28px;
    line-height: 40px;
  }

  .profile-content h1 {
    font-size: 48px;
    line-height: 60px;
  }

  .experience-badge {
    font-size: 22px;
    padding: 10px 20px;
  }

  .description {
    font-size: 22px;
    line-height: 34px;
  }
}

/* -------- 480px -------- */
@media (max-width: 480px) {

  .profile-section {
    padding: 40px 20px;
    padding-top: 35%;
  }

  .profile-content h1 {
    font-size: 40px;
    line-height: 52px;
  }

  .description {
    font-size: 20px;
    line-height: 32px;
  }
}

/* -------- 425px -------- */
@media (max-width: 425px) {

  .profile-card {
    width: 280px;
    height: 460px;
  }

  .image-wrapper {
    width: 280px;
    height: 460px;
  }

  .profile-content h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .experience-badge {
    font-size: 18px;
  }

  .description {
    font-size: 18px;
    line-height: 28px;
  }
}
/* profile short content end */

/* porfile description */
.about-description {
  background: rgba(0, 96, 81, 1) !important;
  padding: 120px 0;
}

.about-description .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 120px;
}

.about-description p {
  color: rgba(255, 255, 255, 1);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 66px;
  letter-spacing: -0.1px;
  margin-bottom: 60px;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-description {
  background: #0f6b57;
  padding: 120px 0;
}

.about-description .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 120px;
}

.about-description p {
  color: rgba(255, 255, 255, 1);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 66px;
  letter-spacing: -0.1px;
  margin-bottom: 60px;
}

.about-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .about-description p {
    font-size: 36px;
    line-height: 56px;
  }
}

@media (max-width: 768px) {
  .about-description .container {
    padding: 0 40px;
  }

  .about-description p {
    font-size: 24px;
    line-height: 38px;
  }
}

@media (max-width: 480px) {
  .about-description p {
    font-size: 20px;
    line-height: 32px;
  }
}

/* profile description end  */