:root{
    --textColor: #444;
    --headingColor: #000;
    --hoverColor: #ffc000;
    --headerBgColor: #fff;
    --headerTextColor: #444;
    --footerBgColor: #000;
    --footerTextColor: #c0c0c0;
}

body {
    font-family: "Ubuntu", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    background-color: #fff;
    min-height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--textColor);
    overflow-x: hidden;
    line-height: 180%;
    word-break: break-word;
}

h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    line-height: 1.4 !important;
    color: var(--headingColor);
}

a:focus{
    outline: 0;
}

.text-gradient{
    background-image: linear-gradient(#FFEB3B, #f59e0b);
    color: transparent;
    background-clip: text;
}

.page-banner {
    background: #8c5a30;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .55)), url('../images/header/banner.jpg') center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center
}
.btn{
    background: #fff;
    color: #000;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    transition: all ease 0.3s;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #f2c94c;
    outline: 0;
    cursor: pointer;
    font-size: inherit;
    font-weight: 600;
}
.btn-primary, .btn:hover{
    background: linear-gradient(135deg, #f2c94c, #f59e0b);
    color: #fff;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    transition: all ease 0.3s;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid transparent;
    outline: 0;
    cursor: pointer;
    font-size: inherit;
    font-weight: 600;
}
.btn-primary:hover{
    background: linear-gradient(135deg, #f59e0b, #f2c94c);
    color: #fff;
}
.CTAformInfoWrapper{
    background-color: #ffffff40;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.CTAformField{
    position: relative;
    margin-bottom: 2.5rem;
}
.CTAformField .form-label {
    margin-bottom: 0;
    font-size: 12px;
    background: #fff;
    padding: 0 8px;
    position: absolute;
    top: -12px;
    left: 15px;
}

.form-control, .form-select{
    padding: 1rem .75rem .75rem;
    border-color: #f4a617;
    font-size: 14px;
    box-shadow: none !important;
    outline: 0 !important;
}

.form-control::placeholder, .form-select::placeholder{
    font-size: 12px;
    color: #d0cece;
}

/* Our service section design starts here */


.service-card {
    padding: 24px;
    overflow: hidden;
    outline: 0;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
}

.stats-card,
.service-card {
    border-radius: 18px;
    transition: .3s
}

.stats-card:hover,
.service-card:hover {
    transform: translateY(-8px)
}
.servicesIcon{
    margin: 0 auto;
    width: 55px;
    height: 55px;
    overflow: hidden;
}
.servicesHeading{
    color: var(--headingColor);
    font-weight: 500;
    padding-bottom: 10px;
    font-size: 20px;
}

.servicesContent{
    color: var(--textColor);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
.serviceActionBtn{
    padding-top: 12px;
}
.serviceActionBtn a{
    border: 0;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 22px;
    text-align: center;
    line-height: 1;
    background: linear-gradient(135deg, #f2c94c, #f59e0b);
    color: #fff;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    transition: all ease 0.3s;
}

.serviceActionBtn a:hover{
    text-decoration: none;
    background: linear-gradient(135deg, #f59e0b, #f2c94c);
    color: #fff;
}


.CTASection{
    display: flex;
    flex-direction: column;
    position: relative;
}


.CTABgWrapper{
    padding: 60px 0 250px 0;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .55)), url('../images/cta.jpg') center/cover;
    z-index: 1;
}
.CTAFormWrapper{
    z-index: 2;
}

.CTAFormMain{
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    border-radius: 40px;
    padding: 30px;
    position: relative;
    margin-top: -200px;
    z-index: 2;
    width: 100%;
    background: #fff;
}

/* Contact us page design */

.contact-card{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 35px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon{
    width: 40px;
    font-size: 40px;
    flex: 0 0 40px;
    text-align: center;
    color: #FF9800;
}

.contact-info{
    display: block;
}

@media (min-width: 992px){
    .CTAFormMain{
        padding: 60px;
    }
}