.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  .contact-info h2 {
    /* font-weight: bold; */
    margin-bottom: 15px;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .contact-section h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 44px;
    font-weight: 500;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .contact-info p {
    margin-bottom: 20px;
    color: #555;
  }
  .contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
  }
  .contact-info .info-item a {
    font-size: 18px;
    margin-right: 10px;
    color: #000;
  }
  .contact-info .social-icons a i{
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
    cursor: pointer;
    background: black;
    padding: 12px 15px 12px 15px;
    border-radius: 100%;
  }
  .contact-info .social-icons a i:hover {
    color: white;
    background-color: #6ebe44;
  }
  .contact-form {
    padding: 20px;
    border-radius: 15px;
    color: #000000;
  }
.add{
    text-align: center;
    padding-top: 25px;
}.add i{
    color: #5dc761;
}.addr-text{
    font-size: 18px;
}
  .contact-address {
    float: left;
    width: 100%;
    border-bottom: 2px solid red;
    padding-bottom: 5px;
    position: relative;
    color: #000;
    margin-bottom: 20px;
  }
  .contact-form .form-control,
  .contact-form .form-select {
    border-radius: 5px;
  }
  .contact-form .btn-submit {
    background: #5dc761;
    border: none;
    width: 15% !important;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
  }
  .contact-form .btn-submit:hover {
    color: white;
    background-color: #6ebe44;
  }
  @media (max-width: 767px) {
    .row > [class*='col-'] {
      margin-bottom: 20px;
    }
  }

/* contact form  */

.banner_form_phone {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.phone_col1 {
    width: 60px; /* Country code width */
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ccc;
}

.phone_col1 input {
    border: none;
    background: transparent;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.phone_col2 {
    flex: 1;
    position: relative;
}

.phone_col2 input {
    border: none;
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.phone_col2 input:focus {
    outline: none;
}

.phone_col2 .error {
    color: red;
    font-size: 12px;
    position: absolute;
    bottom: -18px;
    left: 0;
}


/* General select styling */
#CmbCountry {
    width: 100%;                /* Full width of parent */
    padding: 8px 15px;         /* Inner spacing */
    font-size: 16px;            /* Text size */
    border: 1px solid #ccc;     /* Border color */
    border-radius: 5px;         /* Rounded corners */
    background-color: #fff;     /* Background color */
    color: #333;                /* Text color */
    outline: none;              /* Remove default focus outline */
    transition: all 0.3s ease; /* Smooth hover/focus effect */
    appearance: none;           /* Remove default arrow (for custom arrow later) */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Focus effect */
#CmbCountry:focus {
    border-color: #007bff;     /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Optional: add a custom arrow */
#CmbCountry-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

#CmbCountry-wrapper::after {
    content: '▼';
    font-size: 12px;
    color: #333;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Optional: responsive for mobile */
@media (max-width: 768px) {
    #CmbCountry {
        font-size: 14px;
        padding: 8px 12px;
    }
}

button, input, optgroup, select, textarea {
    font-size: 15px !important;
}