/* INFORMATION SECTION*/

.index-information {
    width: 75%;
    height: 100%;
    background-color: #ff5a6048;
    justify-content: center;
    display: flex;
    column-gap: 40px;
    z-index: -1;
    margin-top: 9px;
}

.index-information-header {
    width: 75%;
}

.index-information h1 {
    width: 100%;
    color: #373737;
    text-align: left;
    padding-bottom: 70px;
    padding-left: 40px;
    padding-top: 70px;
    font-size: 72px;
    line-height: 75px;
    flex-basis: 100%;
}

.index-information p {
    width: 100%;
    color: #616161;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -2px;
    text-align: left;
    margin-top: 80px;
    padding-bottom: 50px;
    padding-right: 40px;
    flex-basis: 100%;
    flex-wrap: wrap;
}

/* INFORMATION SECTION END*/

/* SERVICES SECTION */

.index-category-section {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 350px);
    grid-template-rows: repeat(2, 350px);
    row-gap: 60px;
    margin-top: 150px;
    margin-bottom: 150px;
}

.index-category {
    width: 75%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.index-category-header {
    width: 25%;
}

.index-category h1 {
    width: 100%;
    color: #373737;
    text-align: left;
    padding-bottom: 50px;
    padding-left: 80px;
    margin-top: 250px;
    font-size: 72px;
    line-height: 75px;
    flex-basis: 100%;
}

.index-category-box {
    width: 300px;
    height: 370px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 300px 150px;
    display: flex;
    flex-direction: column; /* Ensure the content is stacked vertically */
    justify-content: flex-start; /* Align items to the top */
    align-items: flex-start; /* Align items to the left */
    padding: 22px; /* Add padding around the box */
    box-shadow: 3px 2px 4px #373737;
    position: relative; /* Ensure the pseudo-element is positioned correctly */
    padding-top: 165px; /* Add padding to move content below the background image */
}

.index-category-box:nth-child(1) {
    background-image: url(../images/AdobeStock_453793068.jpeg);
}

.index-category-box:nth-child(2) {
    background-image: url(../images/AdobeStock_71581253.jpeg);
}

.index-category-box:nth-child(3) {
    background-image: url(../images/AdobeStock_45433423.jpeg);
}

.index-category-box:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px; /* Match the width of the background image */
    height: 150px; /* Match the height of the background image */
    border-bottom: 1px solid #b5b5b56d; /* Add the bottom border */
    box-sizing: border-box; /* Ensure the border is included in the element's dimensions */
}

.index-category-box:nth-child(4) {
    background-image: url(../images/AdobeStock_296961072.jpeg);
}

.index-category-box:nth-child(5) {
    background-image: url(../images/AdobeStock_486011953.jpeg);
}

.index-category-box:nth-child(6) {
    background-image: url(../images/AdobeStock_486011876.jpeg);
}

.index-category-box h3 {
    font-size: 16px;
    line-height: 20px;
    color: #adadadd6;
    margin-bottom: 12px; /* Add some space between the heading and the list */
}

.bullet-list {
    list-style-type: disc; /* Use disc bullets */
    margin: 0; /* Remove default margin */
    padding-left: 20px; /* Add some padding to the left */
}

.bullet-list li {
    margin-bottom: 5px; /* Add some space between list items */
    font-size: 14px;
    color: #373737; /* Change the text color */
}

/* SERVICES SECTION END */

/* ABOUT US SECTION */

.index-about {
    width: 75%;
    height: 100%;
    padding: 50px 0;
    background-color: #ff5a6048;
    justify-content: center;
    display: flex;
    column-gap: 40px;
}

.index-about-header {
    width: 20%;
}

.index-about h1 {
    width: 100%;
    color: #373737;
    text-align: left;
    padding-bottom: 50px;
    padding-left: 40px;
    margin-top: 100px;
    font-size: 72px;
    line-height: 75px;
    flex-basis: 100%;
}

.index-about p {
    width: 100%;
    color: #616161;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -2px;
    text-align: left;
    margin-top: 65px;
    padding-bottom: 50px;
    padding-right: 40px;
    flex-basis: 100%;
   
}

/*ABOUT US SECTION END */

/*GET IN TOUCH SECTION */

.get-in-touch {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px; 
}

.get-in-touch h1 {
    color: #373737;
    text-align: center;
    padding-bottom: 20px;
    padding-left: 0px;
    font-size: 92px;
    line-height: 95px;
    flex-basis: 100%;
}

/* FORM SECTION */

textarea {
    width: 100%;
    height: 163px;
    resize: vertical;
}

textarea,
input {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    font-family: Roboto Mono;
    font-size: 10px;
    text-transform: uppercase;
}

textarea:focus,
input[type="text"]:focus {
    outline: 2px solid #bb4246;
}

textarea:focus,
input[type="email"]:focus {
    outline: 2px solid #bb4246;
}

button {
    width: 100px;
    background-color: #FF5A5F;
    border-radius: 10px;
    color: #ffffff;
    font-family: Roboto Mono;
    font-size: 16px;
    text-align: center;
}

button:hover {
    background-color: #bb4246;
    cursor: pointer;
}

.button-form {
    display: flex;
    justify-content: right;
}

input[type=text],
textarea,
select,
button {
    padding: 10px;
}

input[type=email] {
    padding: 10px;
}

/* FORM SECTION END */
/*GET IN TOUCH SECTION END*/

/* MOBILE VERSION */

@media only screen and (max-width: 675px) {
 

 /* INFORMATION SECTION  

    .index-information {
        width: 100%;
        height: 100%;
        padding: 10px 0px 20px;
        margin-top: 70px;
        flex-wrap: wrap;
        gap: 0px;
    }

    .index-information-header {
        width: 100%;
    }
    
    .index-information h1 {
        width: 100%;
        padding: 20px 20px;
        margin-top: 20px;
        font-size: 40px;
        text-align: center;
        line-height: 45px;
    }
    
    .index-information p {
        font-size: 18px;
        line-height: 20px;
        text-align: left;
        margin-top: 20px;
        padding: 0 40px;
    } 

  /* SERVICES SECTION 

  .index-category {
    padding: 20px 0 20px;
    row-gap: 10px;
}

.index-category-section {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0px 5px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.index-category {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.index-category-header {
    width: 100%;
}

.index-category h1 {
    width: 100%;
    color: #373737;
    text-align: center;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 0px;
    font-size: 40px;
    line-height: 45px;
    flex-basis: 100%;
}

.index-category-box:nth-child(4)::before {
    display: none;
}

.index-category-box {
    width: 100%;
    height: 100px;
    background-size: cover;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.index-category-box h3 {
    font-size: 20px;
    color: #ffffff;
    margin-top: 0px;
    text-align: center; 
    text-shadow: -1px 3px 2px #000000;
}

.bullet-list {
    display: none;
}

/* SERVICES SECTION */

    /* ABOUT US SECTION  

    .index-about {
        width: 100%;
        padding: 10px 0 20px;
        flex-wrap: wrap;
        gap: 0px;
    }
    
    .index-about-header {
        width: 100%;
    }
    
    .index-about h1 {
        width: 100%;
        padding: 10px 20px;
        margin-top: 40px;
        font-size: 40px;
        text-align: center;
        line-height: 45px;
    }
    
    .index-about p {
        font-size: 18px;
        line-height: 20px;
        margin-top: 20px;
        padding: 0 40px; 
    }

    /*GET IN TOUCH SECTION 

    .get-in-touch {
        width: 100%;
        padding: 40px 0;
        gap: 10px; 
    }
    
    .get-in-touch h1 {
        font-size: 40px;
        line-height: 45px;
    }

    /* FORM SECTION 

    textarea {
        height: 100px;
        resize: vertical;
    }

    /* MOBILE VERSION END */
} 




