/* CSS reset */
html, body {
    font-family: "Figtree", sans-serif;
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
    
}

body {
    font-family: sans-serif; 
}

h1 {
    color: white;
    font-size: 5rem;
    margin: 8rem;
}

h2 {
    color: black;
    font-size: 2rem;
    text-align: center;
}

h3 {
    color: black;
    font-size: 1.5rem;
    /* padding-top: 1rem; */
}

h4 {
    color: black;
    font-size: 1.3rem;
    text-align: center;
}

nav {
    background-color: rgb(242 229 213 / 70%);
    margin: 0%;
    padding: 0%;
    width: 100vw;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: fixed;
}

.logo {
    /* float: left; */
    margin-left: 2rem;
}

.menu {
    /* float: right; */
    align-items: center;
    margin-right: 2rem;
}

.menu ul li a {
    font-size: 1.3rem;
}

ul {
    margin: 0;
}

li {
    float: left;
    padding: 25px;
    margin: 10px;
    text-align: center;
    list-style: none;
}

a {
    text-decoration: none;
    color: 223440;
}

a:hover {
   font-weight: 700;
}

/* hero section */
.hero{
    height: 95vh;
    width: 100%;
    background-image: url('../Images/1 bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;

    /* flexbox */
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: left;

}

/* intro section */
.intro {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    margin: 2rem 0;
}

.intro img {
    width: 85vw;
    margin: 1rem;
}

#introtx {
    display: flex;
    justify-content: center;
    font-size: 3rem;
    margin: 3rem 14rem;
}

hr {
    color: #223440;
    opacity: 80%;
    
}

/* projects section */
.projectsHP {
    width: 100%;
    height: auto;
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 4rem 0;
}

.projectsHP h3 {
    margin: 1rem 0 0.5rem ;
}

#viewproject {
    color: rgb(217,71,20);
    font-size: 1.2rem;
}

.viewallprojects {
    /* width: 100%; */
    /* height: auto; */
    padding: 1rem;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline; 
    text-decoration-color: rgb(217,71,20);
    font-size: 28px;
    color: black;
}

.viewallprojects a:hover {
    color: D94814;
}

/* our services section */
.ourservices{
    width: 100%;
    height: auto;
    margin-top: 3rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.servicerow {
    display: flex;
    width: 70%;
    height: 40%;
    margin: 2rem 0;
    justify-content: space-around;
   
   
}

.ourservicesitems {
    width: 100%;
    height: 100%;
    margin: 0 2rem;
}

.ourservicesitems h4 {
    margin: 0.7rem 0;
}

.servicebox {
    width: 100%;
    height: 300px;
    background-color: grey;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    background-size: cover;
    background-position: center;
}

#servicebox1 {
    background-image: url('../Images/6.jpg');
}

#servicebox2 {
    background-image: url('../Images/7.jpg');
}

#servicebox3 {
    background-image: url('../Images/8.jpg');
}

/* cta section */
.ctaHP {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: auto; */
    width: 100%;
}

.getintouchbt {
    height: 70px;
    width: 350px;
    margin: 3rem 0 5rem 0;
    background-color: F27127;

    display: flex;
    align-content: center;
    justify-content: center;
}

#getintouchbt {
    color: white;
    display: flex;
    align-items: center;
}

/* footer */
footer {
    width: 100%;
    height: auto;
    background-color: #223440;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerlogo {
    margin: 2rem 5rem;
    display: flex;
    align-items: center;
}

.footertext {
    margin: 0 4rem;
    display: flex;
    flex-direction: row;
    justify-content: left;
}
.fcolumn {
    display: flex;
    align-items: left;
}

footer ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* text-align: left; */
}

footer ul li {
    display: flex;
    justify-content: left;
    color: white;
    margin: 1rem;
    padding: 0rem;
}

footer ul li a {
    color: white;
    padding: 1rem 0;
    
}



