* {
    margin: 0;
}

html {
  scroll-behavior: smooth;
}
.arch-main {
    width: 100%;
    height: auto;
    /* background-color: yellowgreen; */
}

/* ---------------------------------------- 
           NAVBAR                    
----------------------------------------  */
.arch-nav-main {
    width: 100%;
    height: auto;
    /* background-color: rgb(79, 111, 14); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    position: absolute;
}

.nav-content-main {
    width: 85%;
    height: 65px;
    background-color: #005555;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.nav-logo {
    width: 200px;
    height: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    width: 6rem;
}

.nav-pages {
    width: 500px;
    height: 100%;
    /* background-color: yellowgreen; */
    /* padding-right: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'popins', sans-serif;
    font-size: 13px;
}

.nav-pages ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-pages a {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.nav-menu {
    width: 70px;
    display: none;
    font-size: 25px;
    color: white;
}

.nav-menu i {
    cursor: pointer;
}

.nav-side-menu {
    display: none;
}

@media (max-width:750px) {
    .nav-pages {
        display: none;
    }

    .nav-menu {
        display: flex;
        /* background-color:  yellow; */
        align-items: center;
        justify-content: center;
    }

    .nav-side-menu {
        display: flex;
        position: fixed;
        top: 100px;
        right: -300px;
        /* Initially hidden */
        width: 200px;
        height: auto;
        background: #005555f7;
        box-shadow: rgba(0, 0, 0, 0.422) 0px 7px 29px 0px;
        color: white;
        transition: right 0.3s ease-in-out;
        padding: 30px 0;
        border-radius: 10px;
        z-index: 100;
        font-family: 'popins', sans-serif;
        align-items: center;
        justify-content: center;
    }

    .nav-side-menu.open {
        right: 20px;
        /* Slide into view */
    }

    .nav-side-menu ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        gap: 20px;
        padding: 0;
    }

    .nav-side-menu a {
        text-decoration: none;
        color: white;
        cursor: pointer;
    }

    .close-menu {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 25px;
        color: white;
        cursor: pointer;
    }
}

/* ---------------------------------------- 
                  Home                   
----------------------------------------  */

.home-main {
    width: 100%;
    height: 100vh;
    background: url(./arch-img/home-bk) center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-text-main {
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 45, 43, 0.489);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.home-text-main h2 {
    color: white;
    font-family: 'popins', sans-serif;
    font-size: 2.5rem;
    margin-top: 100px;
}

.home-search {
    width: 50%;
    height: 70px;
    /* background-color: violet; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.home-search input {
    width: 72%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 20px;
    padding-left: 20px;
}

.home-search button {
    width: 100px;
    height: 45px;
    border-radius: 20px;
    border: none;
    background-color: #005555;
    color: white;
    cursor: pointer;
}

@media (max-width:750px) {
    .home-text-main h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .home-search {
        width: 70%;
    }
}

/* ---------------------------------------- 
               properties                   
----------------------------------------  */

.prop-main {
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prop-main-head {
    width: 90%;
    height: 100px;
    /* background-color: yellow; */
    font-family: 'popins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prop-main-head h3 {
    font-size: 2rem;
}

.prop-main-head button {
    width: 130px;
    height: 35px;
    border: none;
    background-color: #005555;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

.prop-content-main {
    width: 90%;
    overflow-x: auto;          /* Enable horizontal scroll */
    overflow-y: hidden;
    display: flex;
    gap: 20px;
    padding: 10px 0;
    /* background-color: yellow; */
    scroll-behavior: smooth;
}

.prop-content-main::-webkit-scrollbar {
    height: 8px; /* horizontal scrollbar height */
}

/* Scrollbar Thumb (the draggable part) */
.prop-content-main::-webkit-scrollbar-thumb {
    background-color: #005555;  /* color of the thumb */
    border-radius: 10px;
}

/* Scrollbar Track background */
.prop-content-main::-webkit-scrollbar-track {
    background-color: #eee;  /* track color */
    border-radius: 10px;
}

.prop-box {
    width: 300px;
    height: 400px;
    border: 1px solid black;
    padding: 10px;
    flex-shrink: 0;           /* Prevent box from shrinking */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.prop-box-img {
    width: 100%;
    height: 230px;
    /* background-color: yellowgreen; */
}
.prop-box-img img{
    width: 100%;
    height: 100%;
}

.prop-box-content {
    width: 90%;
    height: auto;
    /* background-color: violet; */
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'popins',sans-serif;
}

.prop-box-amount {
    width: 90px;
    /* background-color: wheat; */
    color: #005555;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1.5px solid black;
    padding-bottom: 5px;
    font-weight: 600;
}
.prop-box-facility{
    display: flex;
    font-size: 12px;
    gap: 20px;
    color: gray;
}
.prop-box-content button{
    width: 120px;
    height: 35px;
    background-color: #005555;
    border: none;
    color: white;
    border-radius: 20px;
    cursor: pointer;
}

@media (max-width:500px) {
    .prop-main-head{
        flex-direction: column;
        justify-content: start;
        gap: 10px;
        align-items: start;
    }
    .prop-box{
        width: 250px;
    }
}


/* ---------------------------------------- 
               Service                   
----------------------------------------  */

.service-main{
    width: 100%;
    height: auto;
    background-color: #f2f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    
}
.service-content-main{
    width: 90%;
    height: auto;
    /* background-color: yellow; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    flex-direction: row;
}
.service-content-box{
    width: 200px;
    height: 200px;
    /* background-color: violet; */
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.service-box-img{
    width: 100%;
    height: auto;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    font-family: 'popins',sans-serif;
}
.service-box-img img{
    width: 3rem;
}
.service-content-box button{ 
    font-size: 12px;
    border: none;
    height: 25px;
    background-color: #005555;
    color: white;
    border-radius: 10px;
    width: 100px;
    cursor: pointer;
}

@media (max-width:878px) {
    .service-content-main{
        width: 80%;
    }
}
@media (max-width:578px) {
    .service-content-main{
        width: auto;
    }
}


/* ---------------------------------------- 
                  about
----------------------------------------  */

.about-main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    font-family: 'popins',sans-serif;
    gap: 40px;
}
.about-head{
    width: 80%;
    height: auto;
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.about-head h2{
    color: #1b0055;
    text-align: center;
}
.about-head-text{
    width: 50%;
    display: flex;
    text-align: center;
    font-size: 13px;
    color: gray;
}
.about-content-main{
    width: 90%;
    height: auto;
    /* background-color: violet; */
    display: flex;
    justify-content: space-between;
}
.about-content-list{
    width: 45%;
    height: auto;
    /* background-color: yellowgreen; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* align-items: center; */
    justify-content: center;
}
.about-list-1{
    width: 100%;
    height: 80px;
    /* background-color: turquoise; */
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-list-icon{
    width: 70px;
    height: 70px;
    background-color: rgb(219, 218, 218);
    /* border: 1px solid black; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-list-text{
    width: 300px;
    height: 70px;
    /* background-color: tomato; */
}
/* .about-list-text p{

} */
.about-list-text span{
    font-size: 12px;
    color: gray;
}
.about-img-main{
    width: 45%;
    height: 400px;
    /* background-color: rgb(175, 75, 75); */
}
.about-img-main img{
    width: 100%;
    height: 100%;
}

@media (max-width:850px) {
    .about-content-main{
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
    .about-img-main{
        width: 90%;

    }
    .about-content-list{
        width: 90%;
    }
    .about-list-text{
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
.about-head-text{
    width: 70%;
}
}
/* ---------------------------------------- 
                  footer
----------------------------------------  */

.footer-main{
    width: 100%;
    height: auto;
    background-color: #005555;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}
.footer-content-main{
    width: 70%;
    height: auto;
    /* background-color: yellowgreen; */
    display: flex;
    justify-content: space-between;
    font-family: 'popins',sans-serif;
}
.footer-logo{
    width: 250px;
    height: 100%;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    text-align: center;
    gap: 10px;
    color: white;
    padding: 10px 0;
}
.footer-logo img{
    width: 10rem;
}
.footer-links{
    width: 250px;
    height: auto;
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.footer-links p{
    font-size: 18px;
    color: wheat;
    margin-left: 20px;
}
.footer-links ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 10px;
    color: white;
}
.footer-links a{
    color: white;
    text-decoration: none;
}
.footer-social{
    width: 250px;
    height: 200px;
    /* background-color: violet; */
    display: flex;
    gap: 20px;
    font-size: 25px;
    align-items: center;
    color: white;
}
.footer-social i{
    cursor: pointer;
}
@media (max-width:800px) {
    .footer-content-main{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-social{
        height: auto;
        justify-content: center;
    }
}