@import url('./root.css'); 
section{
    margin-bottom: 2rem;
}
.banner{
    padding-top:3rem;
    padding-bottom: 2rem;
    /* margin-bottom: 7rem; */
}
.banner h1{
    font-size: 2.75rem;
}
.aboutBanner{
    padding: 5rem;
    width: 100%;
    background-size: 100%;
    background-repeat:no-repeat;
}
.aboutBanner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary-overlay);
}
.aboutBanner{
    background: url(https://static.vecteezy.com/system/resources/previews/009/649/092/original/3d-realistic-background-climat-control-concept-cooling-air-conditioning-system-in-the-living-room-with-a-couch-vector.jpg);
    background-position: top 45% center;
}
.bg-temp {
    background: #ffffffb5;
    padding: 2rem;
}
.service-img{
    width: 100%;
    height: 400px;
}
.service-img{
    width: 100%;
    height: 100%;
    position: absolute;
}
.bgCta{
    background:url('../img/air-conditioning-installation.jpg');
    height: 100%;
    background-size:100%;
}
.btn-primary,.bg-primary{
    background-color: var(--primary-clr)!important;
}
.btn-primary{
    border-color: var(--primary-clr)!important;
}
nav a{
    color:var(--primary-clr);
}
.btn-outline-primary{
    border:1px solid var(--primary-clr);
    color:var(--primary-clr);
}
.btn-outline-primary:hover{
    background:var(--primary-clr);
    border:1px solid var(--primary-clr);
    color:var(--white-clr)!important;
}

/* Styling for all inputs */
input.form-control, select.form-control, textarea.form-control {
    /* font-family: Arial, sans-serif; */
    font-size: 16px;
}

/* Placeholder Styling */
input::placeholder, textarea::placeholder, select option.placeholder {
    color: #6c757d!important;  /* Light gray color for placeholder */
    /* font-style: italic; */
}

/* Custom dropdown default option styling */
select.form-control {
    /* background-color: #f8f9fa; */
    color: #6c757d;  /* Match placeholder color */
    border: 1px solid #ced4da;  /* Border style */
}

/* For the 'Choose Service' placeholder option */
select option.placeholder {
    color: #6c757d;  /* Same color as placeholder */
    /* font-style: italic; */
}

/* Focused Input Styling (when user focuses on the form fields) */
input:focus, textarea:focus, select:focus {
    border-color: #007bff;  /* Blue border on focus */
    box-shadow: 0 0 5px rgba(38, 143, 255, 0.5);
}

/* Styling the submit button */
button[type="submit"] {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 16px;
}
button[type="submit"]:hover {
    background-color: #0056b3;
    border-color: #004085;
}
/* .bxCTA{
    padding: 1rem;
    height: 150px;
    border-radius: 5px;
    background-image: url('../img/air-conditioning-installation.jpg');
    background-size: 100%;
    background-position: center bottom 55%;
    position: relative;
    overflow: hidden;
}
.bxCTA::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000006c;
    top: 0;
    left: 0;
} */
.bxCTAMap{
    height:295px;
}

footer {
    background-color: #f8f9fa;  /* Light background */
    color: #6c757d;  /* Muted text color */
}

footer a:hover {
    color: #007bff;  /* Hover effect for links */
}

footer .fab {
    font-size: 20px;  /* Social icons size */
}
.process-list li {
    list-style-type: unset;
    position: relative;
    margin-bottom: 1rem;
    display: grid;
    width: 100%;
    font-size: 18px;
    grid-template-columns: 5% 95%;
}
.inputWrapper{
    position: relative;
    margin-bottom: 1rem;
}
.error{
    position: absolute;
    left: 0;
    bottom: -1rem;
    color: red;
    font-size: 14px;
}

#loader{
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    position: absolute;
    top: 0;
    z-index: 999999;
}
.num-list{
    list-style: number;
}