.hero-header-block {
    margin-top: -100px;
}

.hero-list{
    list-style-type: none;
    font-size: large;
    color: #000;
    font-weight: 300;
    margin-left: -20px;
}

#areaList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 0;
    list-style: none;
}

#areaList li {
    background-color: #f0f0f0; /* Light grey background */
    padding: 8px;
    margin: 5px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#areaSearch {
    margin: 20px;
}

#areaSearch h3 {
    color: #1a1a1a; /* Slightly darker text for the heading */
    margin-bottom: 10px;
}

#areaSearch label {
    display: block; /* Makes the label take up its own line */
    margin-bottom: 5px;
    color: #333;
    font-size: 1rem;
}





/*
Estimate page start
*/


.estimate-text-block {
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

/* .estimate-text-block span{
    align-items: end;
    display: block;
} */

.estimate-text-block h5 {
    margin: 0;
    cursor: pointer;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* background-color: #f0f0f0; */
    border-radius: 4px;
}

.estimate-text-block p {
    display: none;
    margin: 10px 0 0 0;
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
}




/*
Estimate page end
*/




#areaInput {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't increase the size of the input */
}

#areaInput:focus {
    border-color: #007bff; /* Highlight color when the input is focused */
    outline: none;
}

/* @media screen and (min-width: 600px) {
    #areaInput {
        width: 70%;
    }
} */

/* index page search */
.testimonial {
    position: relative;
    /* margin: 45px 0; */
    padding: 120px 0;
    background: linear-gradient(rgba(29, 36, 52, 1), rgba(29, 36, 52, .5), rgba(29, 36, 52, 1)), url(../img/testimonial-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: fit-content;
}

/* .hero .hero-text {
    height: calc(100vh - 400px);
} */

/* Most popular services Image Styles */

.testimonialItem {
    position: relative;
    /* margin: 45px 0; */
    padding: 60px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonialitem .container {
    max-width: fit-content;
}

.testimonial-item p{
   font-weight: 600;
   color: #000000c6;
}

.expandable-content {
    display: none;
    overflow: hidden;
}

.expandable-link {
    cursor: pointer;
}

.contact .contact-form input {
    background: white; 
}

.contact .contact-form textarea {
    background: white;
}

.service .service-img img {
    position: relative;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
.service .service-item {
    height: 850px;
    position: relative;
}
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item p {
  font-size: 18px;
  color: #000000db;
}


/* service_item Img */
#servicePic {
    height: 300px;
}


/* priceRangeBar */

.range-labels span {
    font-size: large;
    font-weight: 700;
}

.range-indicator {
    position: relative;
    border-radius: 15px;
    padding: 20px 0;
    background-color: #f5efe5;
  }
  
  .range-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
  }
  
  .range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .range-labels span {
    background-color: #f5efe5;
    padding: 2px 10px;
    position: relative;
    z-index: 1; /* Make sure labels appear above the line */
  }
  

  .about-text h3 {
    display: flex; /* Makes the h3 a flex container */
    justify-content: space-between; /* Spaces out the children: text on the left, icon on the right */
    align-items: center; /* Centers items vertically */
    position: relative; /* Needed for absolute positioning of children */
}

.info-box {
    display: none; /* Initially hidden */
    position: absolute;
    right: 0;
    top: 100%;
    width: 200px; /* Adjust width as needed */
    background-color: #1d2434;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 4px;
    z-index: 10; /* Ensure it's above other content */
}




/*pop up estimate menu */

#openModalBtn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    background: none;
    border: 2px solid #1d2434;
    border-radius: 0;
    transition: .3s;
}

.modal-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    background: none;
    border: 2px solid #1d2434;
    border-radius: 0;
    transition: .3s;
    margin-right: 15px;
    margin-top: 15px;
}

.icon {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon:before, .icon:after {
    content: '';
    position: absolute;
    background-color: black;
}

.icon:before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.icon:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.icon.active:before {
    height: 0;
}



#backBtn {
margin-top: 30px;
}

#openModalBtn:hover {
    color: #D5B981;
    background: #1d2434;
}


.modal-btn:hover {
    color: #D5B981;
    background: #1d2434;
}


.modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}


@media screen and (min-width: 1200px) {
    .modal-content {
     width: 50%;
    }
    }

.modal-content {
    background-color: #fefefe;
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
}

.questionsGroupe {
    margin-top: 30px;
    margin-bottom: 15px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
}

.question button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1d2434;
    background: none;
    border: 2px solid #1d2434;
    border-radius: 0;
    transition: .3s;
    margin-right: 15px;
    margin-top: 15px;
}

.question button:hover {
    background-color: darken(#1D2434, 10%);
}

#progressBarContainer {
    width: 100%;
    background-color: #ddd;
    margin-top: 20px;
}

#progressBar {
    width: 0%;
    height: 20px;
    background-color: #D5B981;
}

  


#bookForm {
    display: flex;
    flex-direction: column;
}

#bookForm label {
 font-weight: 700;
}

.info-inputs {
    padding: 8px;
    margin-bottom: 8px;
}

#quickPrice {
    font-weight: 800;
    font-size: xx-large;
}

#message {
    min-height: 100px;
}




/**/


.blog .blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.contact .container-fluid {
    background: none;
    background-size: contain;
}

.ratingStar {
    color: #F9C339;
}

#servicesList {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 0;
    list-style: none;
}

#servicesList li {
    background-color: #f0f0f0; /* Light grey background */
    padding: 8px;
    margin: 5px;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#servicesSearch {
    margin: 20px;
}

#servicesSearch h3 {
    color: #1a1a1a; /* Slightly darker text for the heading */
    margin-bottom: 10px;
}

.contact-text {
    position: relative;
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    margin-top: 20px;
    color: #D5B981;
}

.contact-text-p {
    font-weight: 800;
    margin-top: 24px;
    font-size: large;
    color: #e7e5e5;
}

#servicesSearch label {
    display: block; /* Makes the label take up its own line */
    margin-bottom: 5px;
    color: #333;
    font-size: 1rem;
}

#servicesInput {
    width: 85%;
    padding: 8px;
    position: absolute;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't increase the size of the input */
}
#servicesInput::placeholder {
    color: #575757;
    font-weight: 600;
}



.contact .contact-form input::placeholder, .contact .contact-form textarea::placeholder,
.footer .footer-newsletter input::placeholder{
    color: #575757;
    font-weight: 600;
}

#servicesInput:focus {
    border-color: #007bff; /* Highlight color when the input is focused */
    outline: none;
}


#dropdown {
    list-style: none;
    display: none;
    padding: 0;
    width: 85%;
    margin-top: 50px;
    position: absolute;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 200px;
}

#dropdown ul{
    width: 85%;
}
#dropdown li {
    padding: 8px;
    background-color: #ffffff;
    color: black;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

#dropdown li:hover {
    background-color: #e0e0e0;
    cursor: pointer;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 500;
    color: #ffffff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #1d2434;
}


.page-header p {
    display: inline;
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #1d2434;
}

/* .page-header p:hover {
    color: #ffffff;
} */

.page-header p::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #1d2434;
}

.page-header p:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header p {
        font-size: 18px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


.blog-meta p {
    font-size: 18px;
    color: #000000db;
}


.stepsContainer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin-top: 30px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}
.step p {
    font-size: 20px;
    font-weight: 600;
}
.step img {
    width: 50%; /* Adjust the size as needed */
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .stepsContainer {
        flex-direction: column;
    }
    .step img {
        width: 50%; /* Adjust image size on smaller screens if necessary */
    }
}

.questionsBlock {
    width: 100%; 
    margin-top: 30px;
}

.questionsBlock h3 {
    padding-left: 15px;
}
.questionsBlock p {
    padding-left: 15px;
    color: #000000db;
}