/* FAQ Section Styling */
.faq-section {
    background-color: #ffffff; /* White background for the FAQ section */
    padding: 60px 0; /* Adequate padding for visual spacing */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow around the section */
    border-radius: 10px; /* Rounded corners for a more modern look */
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 40px;
    text-transform: uppercase; /* Make the heading stand out */
    letter-spacing: 1px; /* Slight letter-spacing for modern appeal */
}

.faq-item {
    background-color: #f9f9f9; /* Light gray background for each FAQ item */
    border: 1px solid #e0e0e0; /* Soft border around each FAQ item */
    border-radius: 8px; /* Rounded corners for each item */
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.faq-item:hover {
    background-color: #f1f1f1; /* Slight darker gray on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow effect on hover */
    transform: translateY(-5px); /* Lift effect on hover */
}

.faq-question h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.faq-question h4 svg {
    margin-right: 10px; /* Space between icon and text */
    width: 24px; /* Icon width */
    height: 24px; /* Icon height */
    fill: #ff33cc; /* Icon color */
    transition: transform 0.3s ease; /* Smooth transition on hover */
}

.faq-item:hover .faq-question h4 svg {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.faq-answer p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left;
}
.arrow {
    display: inline-block;
    margin-right: 8px;
    color: #333;
  }
  


/* Mobile responsiveness */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 1.4rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}




.list-container{
    margin-top: 3rem;
    margin-bottom:3rem;
}
.list-container-2{
    margin-top:4rem;
}
      
#contact-form {
    width: 100%;               /* Make the form 100% width */
    max-width: 450px;          /* Maximum width for large screens */
    margin: 0 auto;            /* Center the form horizontally */
    padding: 2rem;             /* Space inside the form */
    background-color: #e0e0e0; 
    border-radius: 8px;        /* Rounded corners */
    /* box-shadow: 0 4px 12px rgb(26 26 26 / 39%);  */
    border:1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.selling-points-h3{
    font-weight: 800; 
    text-align: left;
}
.ul-selling-points{
    font-size: 16px; 
    color: #333; 
    list-style: none; 
    padding-left: 8px;
    max-width: 600px;
}
.benefits {
    display: flex;
    align-items: center; 
    margin: 10px 0;
}

.benefits svg {
    margin-right: 10px;  /* Optional: adjust the spacing between the SVG and text */
}

#contact-form p {
    font-weight: 500;          /* Add some weight to the text */
    text-align: center;
    font-size: 15px;         
    margin-bottom: 1rem;     
    color: #3e3e3e;             
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;
    width: 100%;             /* Ensure all input fields take up full width */
    padding: 10px;           /* Padding for comfort */
    margin:0 0 5px;
    border: 1px solid #ccc;  /* Light gray border */
    border-radius: 4px;      /* Rounded corners */
    box-sizing: border-box;  /* Include padding/border in the width */
}

#contact-form textarea {
    height:100px;
    max-width:100%;
    resize:none;
}

#contact-form button {
    background-color: #007bff; /* Blue background */
    color: white;              /* White text */
    border: none;              /* Remove default border */
    width: 100%;               /* Button should be full width of the form */
    border-radius: 4px;        /* Rounded corners */
    margin:0 0 5px;
    padding:10px;           
    font-size:15px;
    cursor: pointer;          /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth color transition */
}

/* Button hover effect */
#contact-form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Input fields focus effect */
#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none;         /* Remove outline for better styling */
}

.review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    background-color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
}

.reviewer-icon {
    width: 55px;
    height: 55px;
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
    margin-right: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: bold;
    font-size: 12px;
}

.reviewer-stars {
    display: flex;
}

.star {
    color: #FFD700;
    font-size: 15px;
    margin-right: 2px;
}

.review-text {
    margin-top: 10px;
    font-size: 15px;
    color: #424242;
    font-style: italic;
}
.review-div{
    display:flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.sm-text{
    font-size: 15px;
}


.main-hero-row-2{
    height: 420px;
}

.main-hero-div-2{
    max-width:500px;
}
.heroPicLP{
    border: 5px solid #212529;
    /* height: 90%; */
    margin: auto;
    width: auto;
    z-index:1;
}
.heroText2{
    display: flex;
        justify-content: center;
        align-items: center;
    }
.benefits-list{
    display: flex;
    flex-direction: column;
}


.service-areas {
    padding: 3rem 1rem 0rem 1rem;
    background: #f9f9f9;
    font-family: sans-serif;
  }
  
  .service-areas h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .service-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
    justify-items: center;
  }
  
  .service-item h3 {
    margin-top: 0;
    font-size: 1.125rem;
    color: #222;
  }
  
  .service-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    /* color: #555; */
  }
  
  @media screen and (max-width:991px) {
    .faq-question h4 svg{
        width: 48px;  
        height: 48px;
    }
    .benefits-list{
        align-items: center;
    }
  }


@media screen and (min-width: 768px) and (max-width:991px) {
    .heroText2{
        border-top: 3px solid #212529;
        /* border-bottom: 3px solid #212529; */
      }
       .main-hero-div-2{
        height: auto;
        max-height: auto;
            margin-top: 2em;
            margin-bottom: 2em;
            max-width: 100%;
            width: 90%;
        
    }
    .main-hero-row-2{
        height: 100%;
    }
        .home-group2{
        flex-flow: column;
    }
    .faq-question h4 svg{
        width: 48px;  
        height: 48px;
    }
    .faq-question h4{
        font-size:1.3em;
        text-align: left;
    }
    .heroPicLP{
        height: 90%;
        object-fit: cover;
        margin:auto;
    }  
    .selling-points-h3{
        font-size: 1.4em;
    }
    .ul-selling-points{
        font-size: 1em;
    } 
    .sm-text{
        font-size:.9em;
    }
    .selling-points-imgs{
        object-fit: cover;
       
    }
}



@media screen and (min-width: 576px) and (max-width:767px) {
    .faq-question h4{
        font-size:1.3em;
        text-align: left;
    }
    .home-group, .home-group2{
        flex-flow: column;
    }
    .main-hero-row-2{
        height: 100%;
    }
    .heroPicLP{
        height: auto;
    }
    .heroText2{
        border-top: 3px solid #212529;
        /* border-bottom: 3px solid #212529; */
      }
      .main-hero-pic-div{
        padding-left: 0;
        padding-right: 0;
        /* border-bottom: 3px solid #212529; */

    }
    .main-hero-div-2{
        height: auto;
        max-height: auto;
            margin-top: 2em;
            margin-bottom: 2em;
            max-width: 100%;
            width: 90%;
        
    }
    .selling-points-imgs{
        margin-bottom:1rem;
    }
    .review-div{
        flex-direction: column;
        align-items: center;
    }
    .review-card{
        width: 475px;
        margin-bottom:10px;
    }
    .benefits-list{
        align-items: center;
    }
}


@media screen and (max-width:575px) {
    .benefits-list{
        align-items: center;
    }
    .selling-points-imgs{
        margin-bottom:1rem;
    }
    .main-hero-div-2{
        margin-top: 2em;
        margin-bottom: 2em;
        max-width: 100%;
        width: 90%;
    }
    .heroPicLP{
        height: auto;  
        width: 100%;
        border: none;  
    }
    .heroText2{
        border-top: 3px solid #212529;
        border-bottom: 3px solid #212529;
    }
    .main-hero-pic-div{
        padding-left: 0;
        padding-right: 0;
        border-bottom: 3px solid #212529;

    }
    .main-hero-row-2{
        height: 100%;
    }
    .review-div{
        flex-direction: column;
        align-items: center;
    }
    .review-card{
        /* max-width:100%;
        width: 475px; */
        margin-bottom:10px;
        width: 100%;
        max-width: 475px;
    }
    .list-container-2{
        margin-top: 2rem;
    }

}

