
/* ------------------------------ */
.contact-section {
  padding: 40px 0;
  position: relative;
}
.contact-section-container{
    padding-inline: 100px;
    
}
.contact-section::before{
    content: "";
    position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
clip-path: polygon(0% 0%,75% 0%, 30% 100%, 0% 100% );
  background: linear-gradient(135deg, #0072ff, #0d47a1);
  z-index: -1;
}

.contact-form-box {
  background: #fff;
  padding-block: 50px;
  padding-inline: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
  position: relative;
}

.contact-section h2 {
  color: white;
  width: 50%;
  margin-bottom: 10px;
   padding-inline: 100px;
 
}

.contact-section-p {
  margin-bottom: 20px;
    padding-inline: 100px;
    width: 50%;
    font-size: 18px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.contact-form label i{
    color: #0072FF;
}
.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 14px;
}

.btn-submit {
  background: #000 !important;
  color: #fff !important;
  padding: 10px 28px !important;
  border-radius: 25px;
  font-weight: 600 !important;
  border: none !important;
  width: 100%;
}

.contact-info-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-block: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.contact-info-box img{
    width: 40px;
}
.contact-info-box div{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;


}
.contact-info-box div div{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0px;
}
.contact-info-box div div h6{
    margin-bottom: 0px !important;
}
.contact-image img {
  max-width: 80%;
  width: 80%;
  height: auto;
}


.iti {
    width: 100% !important;
}

@media (max-width:786px) {
    .contact-section h2{
        width: 100%;
        padding-inline: 20px;
    }
    .contact-section-p{
        width: 100%;
        padding-inline: 20px;
    }
    .contact-section-container{
        padding-inline: 20px;
    }
    .contact-form-box{
        padding-inline: 20px;
        padding-block: 20px;
    }
    .contact-section::before{
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .contact-image{
        display: none;
    }
}