body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
:root{
    --brand: rgb(18, 128, 64);
    --muted: #6b6b6b;
    --card-bg: #ffffff;
    --shadow: 0 8px 30px rgba(5,10,10,0.08);
    --radius: 14px;
  }

/* --------------HeroContactSection------------------ */

.HeroContactSection{
    display: flex;
    justify-content: space-around;
    margin-top: 8%;
}
.sectionImage{
    border-radius: 10%;
    box-shadow: 0px 2px 10px #0000009c;
    position: relative;
    cursor: pointer;
}
.sectionImage:hover{
    transform: scale(0.97);
    transition: 0.5s;
}
.sectionSecondImage{
    border-radius: 10%;
    box-shadow: 0px 2px 10px #0000009c;
    position: absolute;
    bottom: 4%;
    right: 30%;
    cursor: pointer;
}
.sectionSecondImage:hover{
    transform: scale(1.02);
    transition: 0.5s;
}
 .HeroContactSection h1{
    font-size: 60px;
    width: 45%;
    line-height: 104px;
    position: relative;

}
.HeroContactSection h1 span {
    color: var(--brand);
}
.HeroContactSection h1 img {
    position:absolute ;
    top: 0;
    right: -4%;
}

  /* --------------HeroContactSection------------------ */


  /* --------------Form------------------ */
  
  /* Container */
  .contact-card {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    margin-top: 15%;
  }
  
  /* Card */
  .contact-form {
    position: relative;
    width: 100%;
    max-width: 720px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
    border: 1px solid rgba(18,128,64,0.06);
  }
  
  /* Titles */
  .contact-form h2 {
    margin: 0 0 6px 0;
    font-size: 26px;
    color: #0e2b20;
  }
  .contact-form .sub {
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 14px;
  }
  
  /* Labels & inputs */
  .contact-form label {
    display: block;
    font-size: 13px;
    margin: 12px 0 6px;
    color: #3b3b3b;
  }
  
  .contact-form input,
  .contact-form input,
  .contact-form textarea {
    width: 93%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(10,10,10,0.06);
    background: #fbfcfb;
    font-size: 14px;
    outline: none;
    resize: vertical;
  }
  
  /* Focus */
  .contact-form input:focus,
  .contact-form textarea:focus {
    box-shadow: 0 6px 18px rgba(18,128,64,0.08);
    transform: translateY(-1px);
    border-color: rgba(18,128,64,0.25);
  }
  
  /* Button */
  .send-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, var(--brand), rgb(12,90,45));
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(18,128,64,0.22);
  }
  
  .send-btn svg { 
    color: rgba(255,255,255,0.95); 
}
  
  .send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(18,128,64,0.28);
  }
  
  /* Feedback message */
  .form-message {
    margin-top: 12px;
    font-size: 18px;
    color: white;
    background-color: #0e2b20e9;
    border-radius: var(--radius);
    padding: 10px 30px;
    width: 400px;
    position: absolute;
    top: 0;
    left: 17%;
    display: none;
  }
  #nameValidationMsg,#emailValidationMsg,#messagesValidationMsg{
    font-size: 12px;
    color: red;
    margin: 2px 0 0 10px;
    display: none;
  }


  /* --------------Form------------------ */

  .map {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map iframe{
    border-radius: var(--radius);
    box-shadow: 0px 2px 10px #0000009c;
  }


@media (max-width:1200px){
    .HeroContactSection h1{
        font-size: 40px;
    }
    
    .sectionImage{
        width: 400px;
    }
    .sectionSecondImage{
        width: 250px;
        bottom: 20%;
    }
}
@media (max-width: 963px) { 
    .map iframe{
      width: 80%;
    }
    .sectionImage{
        width: 340px;
        height: 300px;
        top: 40px;
    }
    .sectionSecondImage{
       display: none;
    }
    .HeroContactSection h1{
        font-size: 50px;
    }
    .HeroContactSection h1 img {
        right: 20%;
        top: -10px;
    }
}
@media (max-width: 768px) { 
    .HeroContactSection h1{
        font-size:40px;
        text-align: center;
        left: -2%;
    }
    .HeroContactSection h1 img {
        right: 2%;
        top: -10px;
    }
    .sectionImage{
        width: 270px;
        height: 240px;
        top: 55px;
        right: 2%;
    }
    .map iframe{
      width: 90%;
    }
}
@media (max-width: 600px){
    .HeroContactSection{
        flex-direction: column;
        align-items: center;
    }
    .HeroContactSection h1{
        font-size: 45px;
    }
    .sectionImage{
        width: 400px;
    }
}