.contact-form {
    background-color:#ea7c23;
    padding:15px 50px;
}

.contact-form h2{
	color: #fff!important;
    font-size: 30px!important;
    margin-top: 0px!important;
}
.contact-form input, .contact-form textarea, .contact-form select {
    color: #7a7a7a;
    font-size: 15px;
    border: 1px solid #ffac00;
    background-color: #fff2db;
    width: 100%;
    height: 46px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 30px;
}
button.main-button-icon {
    border: none;
    outline: none;
    font-size: 13px;
    border-radius: 25px;
    padding: 13px 25px;
    background-color: #196baf;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#enquiry input, #enquiry textarea, #enquiry select {
    color: #7a7a7a;
    font-size: 15px;
    border: 1px solid #ffac00;
    background-color: #fff2db;
    width: 100%;
    height:35px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom:15px;
}
#enquiryBottom input, #enquiryBottom select {
    color: #7a7a7a;
    font-size: 15px;
    border: 1px solid #ffac00;
    background-color: #fff2db;
    width: 100%;
    height:35px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom:15px;
}
 #enquiryBottom textarea{
     height:100px;
     color: #7a7a7a;
    font-size: 15px;
    border: 1px solid #ffac00;
    background-color: #fff2db;
    width: 100%;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom:15px;
 }


.services-box{
    background-color: #222;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
}

.services-box .post{
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
}
.services-box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) rotateX(90deg);
    transform-origin: bottom center;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transition: all 0.3s ease;
}
.services-box:hover .icon{
    opacity: 1;
    transform: translateX(-50%) rotateX(0);
}
.services-box .icon li{
    display: inline-block;
    margin: 0 2px;
}
.services-box .icon li a{
    color: #fff;
    background-color: #ff7b08;
    font-size: 14px;
    text-align: center;
    line-height: 35px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}
.services-box .icon li  a:hover{
    color: #ff7b08;
    background-color: #fff;
}
.services-box-content{
    padding:15px;
    background: #f7f7f7;
}
.btn-service{
    background: #ea7c23;
    border: 1px solid;
}
.btn-primary:hover{
    background:#196baf;
}


/* Hide native arrows and add space on the right */
.service-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;           /* match your form bg */
  padding-right: 2.25rem;           /* space for arrow */
  cursor: pointer;
}

/* Custom arrow via SVG background */
.service-select {
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'>\
    <path d='M1 1l5 5 5-5' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round'/>\
  </svg>");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 12px 8px;
}

/* Optional: consistent height & border with Bootstrap form-control */
.service-select.form-control {
  line-height: 1.5;
}

/* Safari fix (sometimes keeps native arrow) */
.service-select::-ms-expand { display: none; }      /* old Edge/IE */
select.service-select::-webkit-textfield-decoration-container { visibility: hidden; }


@media only screen and (max-width:990px){
    .services-box { margin: 0 0 30px; }
}