  /* #region reset  */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
  }

  /* #endregion */

  /* #region utilities */

  .section-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;

  }

  .text-center {
    text-align: center;
  }

  .light-gray {
    color: #757575;
  }

  .dark-gray {
    color: #474747;
  }

  .bg-color {
    background-color: #FFF8F3;
  }

  .ts-sm {
    font-size: 0.8rem;
  }

  .ts-md {
    font-size: 1rem;
  }

  .ts-lg {
    font-size: 1.15rem;
  }

  /* #endregion  */



  /* #region components */
  .common-btn {
    background-color: #FD6E0A;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }

  .common-btn img {
    width: 20px;
    height: 20px;
  }

  .line {
    border-bottom: 1px solid #D1D1D1;
    margin: 1.5rem auto;
  }

  /* #endregion */


  /* #region layout */


  .container {
    max-width: 1200px;
    width: 74%;
    margin: auto;
  }

  .section-margin {
    margin: 7rem auto;
  }

  /* #endregion */

  /* #region header section */
  header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url(./images/header_bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 110vh auto;
    position: relative;

  }

  .text-img {
    max-width: 66px;
    width: 100%;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);

  }

  /* #region navbar */
  nav {

    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
  }

  nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
  }

  nav a {
    text-decoration: none;
    color: #474747;

  }

  nav h2 {
    font-weight: 900;
    font-size: 2rem;
  }

  nav h2 span {
    color: #FD6E0A;
  }

  /* #endregion  */

  /* #region hero section */
  .hero-container {
    margin-left: 13%;
    margin-right: auto;
    display: flex;
    flex: 1;

  }

  .hero-left,
  .hero-right {
    flex: 1;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }


  .hero-subtitle {
    font-size: 2rem;
    color: #474747;
    font-weight: 500;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-description {
    color: #757575;
    line-height: 1.7;
    padding: 1.25rem 0;
  }

  .outline-btn {
    background-color: white;
    color: #FD6E0A;
    border: 1px solid #FD6E0A;

  }

  .button-group {
    display: flex;
    gap: 1rem;
  }

  .hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 2rem;
    padding-right: 1rem;

  }

  .hero-right-img {
    max-width: 500px;
    width: 100%;
    display: block;

  }

  /* #endregion  */

  /* #endregion  */


  /* #region about me section */
  .about-section {
    padding: 6rem 8.5rem;
    border-radius: 0.5em;
  }

  .about-me-container {
    max-width: 57rem;
    margin: 0 auto;
    line-height: 1.7;
  }

  .about-content {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;

  }

  .about-content strong {
    color: #474747;
  }

  /* #endregion */


  /* #region what i do section */
  .what-i-do-section {
    text-align: center;
  }

  .what-description {
    margin-bottom: 3rem;
  }

  .what-description,
  .card p {
    line-height: 1.7;

  }

  .card-container {
    display: flex;
    gap: 1.5rem;
    text-align: start;
  }

  .card {
    flex: 1;
    box-shadow: 0 4px 30px 0 rgb(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 1.4rem;
  }

  .card img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }

  .card h4 {
    margin-bottom: 1rem;
  }

  /* #endregion */


  /* #region summary of resume section */
  .summary-container {
    display: flex;
    gap: 1.4rem;
    text-align: start;
    margin-top: 6rem;
  }

  .education,
  .experience {
    flex: 1;
  }

  .summary-container h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .uni-or-org {
    margin-top: 0.7rem;
    margin-bottom: 0.9rem;
  }

  .light-gray.ts-sm {
    line-height: 1.7;
  }


  .summary-btn {
    margin: 2.6rem auto;
    display: flex;
    justify-content: center;
  }

  /* #endregion */

  /* #region amaging works section */
  .work-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    grid-template-areas:
      "a b c"
      "a b f"
      "d b f"
      "d e f"
      "d e f";
  }

  .img-1 {
    grid-area: a;
  }

  .img-2 {
    grid-area: b;
  }

  .img-3 {
    grid-area: c;
  }

  .img-4 {
    grid-area: d;
  }

  .img-5 {
    grid-area: e;
  }

  .img-6 {
    grid-area: f;
  }

  .work-container img {
    min-width: 256px;
    min-height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* #endregion */

  /* #region footer section */

  .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 120px 0;
  }

  .footer-connect {
    flex: 1;
  }

  .footer-connect p {
    margin-bottom: 20px;
  }

  .footer-connect img {
    margin-right: 10px;
  }

  .footer-message {
    flex: 1;
  }

  .footer-form input,
  textarea {
    width: 100%;
    border: none;
    padding: 20px;
    border-radius: 5px;
  }

  .footer-form button {
    margin-top: 20px;
  }

  /* #endregion */