
.residentialbox {
    background-image: url(/Images/residentialhome.webp);
    background-size: cover;
    background-position: center;
    /* background-repeat: no-repeat; */

    width: 100vw;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.commercialbox {
    background-image: url(/Images/commercialbuilding.jpeg);
    background-size: cover;
    background-position: center;

    width: 100vw;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.residentialtitle { 
    margin: 50px;
    font-size: 30px;
    letter-spacing: 0.7px;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
}

.residentialphases {
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    width: 60vw;
}

.residentialphaseone {
    font-size: 30px;
    letter-spacing: 0.7px;
    margin: 10px;
}

.residentialphasetwo {
    font-size: 30px;
    letter-spacing: 0.7px;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
}

.residentialcandowrapper {
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    width: 60vw;

    margin: 10px;
    margin-top: none;
}

.residentialcandotitle {
    width: 60vw;
    display: flex;
    justify-content: center;
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.residentialdropdown {
  position: relative;
  display: inline-block;
}

/* ---------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

.accordion-item {
    background-color: #FFFFFF; /* White background for items */
    border: 1px solid #E0E0E0; /* Light border */
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Softer shadow */
}

.accordion-header {
    background-color: rgb(38, 78, 73); /* Soft purple */
    color: #FFFFFF; /* White text */
    padding: 15px;
    font-size: 18px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #5753C9; /* Darker shade of purple */
}

.accordion-content {
    background-color: #FAFAFA; /* Very light grey for content */
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
}

.icon {
    transition: transform 0.3s ease;
}

.active .icon {
    transform: rotate(45deg);
}

.aboutboxbutton {
    display: flex;
    align-items: center;
    height: 600px;
    margin: 10px;
}

.aboutboxbutton a {
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 500;
    transition: 0.4s;
}

.aboutboxbutton a:hover {
    background-color: rgb(3, 114, 108);
}

@media (max-width: 780px) {
    .residentialtitle {
        font-size: 20px;
        width: 90vw;
        display: flex;
        justify-content: center;
        margin: 10px;
    }

    .residentialphases {
        width: 90vw;
    }

    .residentialphaseone, .residentialphasetwo {
        font-size: 17px;
    }

    .residentialcandotitle {
        font-size: 15px;
    }

    .aboutboxbutton {
        height: 60px;
    }

    .aboutboxbutton a {
        font-size: 15px;
    }

    .accordion-header {
        font-size: 15px;
    }

    .accordion-content {
        font-size: 10px
    }

    .footer {
        margin-top: 0px;
    }

    .residentialcandowrapper {
        width: 90vw;
    }
}