.contact_section {
  background-color: #EEF3F6;
}

.contact_title {
font-weight: 600;
font-size: 44px;
line-height: 54px;
letter-spacing: 0;
color: var(--color-text-violet);
}

.contact_subtitle {
font-weight: 400;
font-size: 16px;
line-height: 26px;
letter-spacing: 0;
color: var(--color-text-accent);
}

.brand_flex {
    gap: 15px;
    margin-top: 20px;
    display: flex
;
    flex-wrap: wrap;
}

.brand_item {
    background-color: #F8F8F8;
  border-radius: 8px;
  /* padding: 10px; */
  text-align: center;
  /* font-size: 14px; */
  /* font-weight: 600; */
  color: #0d2b45;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contact_form {
   background-color: #F8F8F8;
      border: 1px solid #ECEEF2;
}

.contact_btn {
    background-color: var(--color-primary);
    border: none;
    font-weight: 500;
    height: 48px;
    padding: 0 20px;
    color: #fff; /* ensure text is visible */
    cursor: pointer;
    transition: all 0.3s ease; /* smooth animation */
}

.contact_btn:hover {
     background-color: #fafafa;
  color: var(--color-light-blue);
    transform: scale(1.05) translateY(-3px); /* scale + slide up */
}

.form_control_input{
        height: 48px;
font-size: 16px;
line-height: 24px;
letter-spacing: 0px;

}

.contact_form label{
font-weight: 500;
font-size: 12px;
line-height: 20px;
letter-spacing: 0.5px;
color: #526077;
}
.all_contact_us_container{
    width: 80%;
}


@media (max-width: 767px) {
  
  .all_contact_us_container {
    width: 100%;
}
.brand_flex{
  margin: 0  auto;
    justify-content: center;
}
.contact_title {
font-weight: 500;
font-size: 32px;
line-height: 38px;
letter-spacing: 0;

}
.contact_subtitle {
font-size: 16px;
line-height: 28px;
letter-spacing: 0;

}
}


@media (min-width:767px) {
  .brand_flex {
    width: 80%;
  }
}