* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*#region Index Page Style*/

/*#region Hero Section */
.hero {
    background: url('../images/hero-picture.png') center/cover no-repeat;
    color: white;
    text-align: left;
    height: 75vh;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.text-content {
    max-width: 600px;
}
.text-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.text-content p {
    font-size: 18px;
    margin-bottom: 30px;
}
.cta-button {
    display: inline-block;
    padding: 18px 24px;
    background-color: #18A0FB;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #042038;
}
/*#endregion Hero Section*/

.content-section {
    margin: 0 auto;
    padding: 75px 75px;
    background-color: #F2F2F2;
    text-align: center;
}
.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.image-box {
    /*width: calc(33.33% - 50px); !* Adjust the width as needed, considering margin *!*/
    margin-top: 50px;
    position: relative;
    width: 20%;
}
.image-box a {
    text-decoration: none;
    color: inherit;
}
.image-box img {
    width: 100%;
    height: auto;
    display: block;
}
.image-box p {
    margin-top: 10px;
    font-size: 16px; /* Adjust font size as needed */
    height: 60px; /* Set your desired fixed height */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* Allow text to wrap to the next line */
}

/*#region Content Section 2 */
.content-section-2 {
    background-color: #FFFFFF;
    padding: 50px 50px;
    text-align: center;
}

.section-title-left {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.section-title-left h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-title-left p {
    font-size: 18px;
    color: #888;
}

.numbered-list {
    list-style: none;
    text-align: left;
    padding: 50px;
}

.numbered-list li {
    margin-bottom: 20px;
    padding: 0 20px; /* Add left and right padding to each list item */
}

.numbered-list li p{
    text-align: justify;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center items vertically */
}
/*#endregion Content Section 2*/

.flex-container li {
    flex: 1;
    text-align: center; /* Center content inside each list item */
}

.spacing {
    margin: 50px;
}
/*#endregion Content Section*/

/*#region Contact Section */

.contact-section {
    text-align: center;
    padding: 20px 20px; /* Adjust padding to create space on smaller screens */
    background-color: #042038;
}
.section-title-center {
    margin-bottom: 30px;
    margin-top: 30px;
}
.section-title-center h2 {
    color: white;
}
.contact-form {
    max-width: 600px; /* Set a maximum width for the form container */
    margin: 0 auto; /* Center the form horizontally */
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.form-group textarea {
    resize: none;
    height: 200px;
    width: 100%; /* Make the textarea take up the full width */
}
.input-group {
    display: flex;
    justify-content: space-between;
}
.half-width {
    flex: 1;
    padding: 10px;
    border: 0.5px solid #ccc;
    font-size: 16px;
    background-color: #D9D9D9;
    width: 100%;
}
.first-input {
    margin-right: 10px;
}
.full-width {
    width: 100%; /* Make the input fields take up the full width */
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #D9D9D9;
}
.contact-form button {
    padding: 18px 24px;
    background-color: #0F001F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Make the button take up the full width */
}
.contact-form button:hover {
    background-color: #0056b3;
}

/*#endregion Contact Section*/

/*#region Get your estimate Section */
.text-button-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0077B6;
    padding: 40px 50px;
    text-align: left;
    height: 25vh;
}
.text-button-section .text {
    flex: 2; /* Takes 2/3 of the available space */
    padding-right: 20px;
}
.text-button-section .text p {
    font-size: 25px;
}
.text-button-section .button {
    flex: 1; /* Takes 1/3 of the available space */
    text-align: right;
}
.text-button-section button{
    display: inline-block;
    padding: 18px 24px;
    background-color: #0F001F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
/*#endregion Get your estimate Section*/

/*#endregion Index Page*/


/*#region Mobile version */
/* Mobile Phones (Portrait) */
@media screen and (max-width: 415px) {
    .section-title h2{
        font-size: 36px;
        margin-bottom: 10px
    }
    .content-section {
        margin: 0 auto;
        padding: 50px 50px;
        background-color: #F2F2F2;
        text-align: center;
    }
    .row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
    }
    .image-box {
        width: 290px;
        position: relative;
    }
    .content-section-2 {
        background-color: #F2F2F2;
        padding: 0;
    }
    .section-title-left {
        text-align: center;
        margin-bottom: 30px;
        padding-left: 0;
    }
    .numbered-list {
        list-style: none;
        text-align: center;
        padding: 0;
    }
    .flex-container {
        display: block;
        justify-content: space-between;
        align-items: center; /* Center items vertically */
    }
    .flex-container li {
        flex: 1;
        text-align: center;
    }
    .spacing {
        margin-bottom: 15px;
    }
    .text-button-section {
        flex-direction: column;
        padding: 15px;
    }
    .text-button-section .text p {
        font-size: 16px;
    }
    .text-button-section .text {
        font-size: 16px;
        flex: 1;
        text-align: center;
        padding-right: 0px;
        margin-top: 10%;
    }
    .numbered-list li p {
        font-size: 14px;
    }
}

/* Tablets */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Styles for tablets in both portrait and landscape orientations */
}

/* Small Desktops and Laptops */
@media screen and (min-width: 1024px) and (max-width: 1280px) {
    /* Styles for smaller desktop screens and laptops */
}

/* Medium Desktops */
@media screen and (min-width: 1281px) and (max-width: 1440px) {
    /* Styles for medium-sized desktop screens */
}

/* Large Desktops and High-Resolution Displays */
@media screen and (min-width: 1441px) {
    /* Styles for larger desktop monitors and high-resolution displays */
}

/*#endregion Mobile version*/



