.contact-bg{
 /* background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
 url(../img/background-3.png); */
  background-color: #f4f3ee;
 min-height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.contact-header{
    margin-top: 100px;
}

.contact-intro {
      color: #2e2e2e;
      display: flex;
      flex: 1;
      flex-wrap: nowrap;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 5% 6%;
}

.contact-intro h2{
      font-size: 2rem;
  font-weight: 600;
}
.contact-intro p{
    font-size: 3rem;
    font-weight: 700;
}

.contact-intro span {
    display: inline-block;
  width: 50px;
  height: 4px;
  background: rgb(196, 254, 139); /* green highlight */
}

.contactme{
    flex: 1;
}


.contactme h2{
  font-size: 2rem;
  font-weight: 600;
  
}

.contactme p{
          font-size: 1rem;
  font-weight: 300;
  font-family: "Assistant", sans-serif;
}

.contactme ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.contactme ul li{
    text-decoration: none;
    list-style: none;
    color: white;
      font-family: "Assistant", sans-serif;
font-weight: 300;
}
.contactme i{
    color: white;
}







    /*  Contact Section  */
    .contact-section {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 80px 6%;
      gap: 50px;
      color: white;
      /* background-color: rgba(0, 0, 0, 0.372); */
      background-color: #2e2e2e;
    }

    /*  Left Info Area  */
    .contact-info {
      flex: 1;
    }

    .contact-info__title {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 20px;
      text-transform: lowercase;
    }

    .contact-info__title::before {
      content: "";
      display: block;
      width: 50px;
      height: 5px;
      background: rgb(196, 254, 139);
      margin-bottom: 15px;
      border-radius: 2px;
    }

    .contact-info__desc {
      color: #ccc;
      margin-bottom: 30px;
      max-width: 400px;
    }

    .contact-info__item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .contact-info__icon {
      color: rgb(196, 254, 139);
      font-size: 20px;
      margin-right: 15px;
    }

    .contact-info__text {
      font-size: 16px;
    }

    /* Right Form Area */
    .contact-form {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form__input,
    .contact-form__textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid black;
      /* border-radius: 6px; */
      background: black;
      color: #fff;
      font-size: 15px;
      outline: none;
      transition: border 0.3s;
    }

    .contact-form__input:focus,
    .contact-form__textarea:focus {
      border: 1px solid #4caf50;
    }

    .contact-form__textarea {
      min-height: 120px;
      resize: none;
    }

    .contact-form__button {
      background: #4caf50;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      padding: 12px 20px;
      border: none;
      /* border-radius: 8px; */
      cursor: pointer;
      transition: background 0.3s;
      width: fit-content;
    }

    .contact-form__button:hover {
      background: #43a047;
    }

    /*  Responsive  */
    @media (max-width: 829px) {
      .contact-header{
        padding: 7% 6%;

      }
      .contact-section {
        flex-direction: column;
        padding: 50px 10%;
        justify-content: center;
        /* align-items: center; */
      }

    }
  
