*{
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 20px;
}
a{
    text-decoration: none;
    color: var(--lightColor);
}

:root{
    --primaryColor: #6e64c6;
    --darkColor: #eacc23d2;
    --lightColor: rgb(240, 216, 78);
}

nav{
    background-color: var( --primaryColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
    border-bottom: 1px solid var(--darkColor);
}
#navbar{
    position: fixed;
    width: 100%;
    z-index: 1;
}

nav ul{
  width: 40%;
  font-size: 2rem;
  display: flex;
  justify-content: space-evenly;
  padding-top: 1rem;
}

nav ul li:hover{
    cursor: pointer;
    text-decoration: underline;
    color: var(--darkColor);
}

nav ul li{
    color: var(--lightColor);
    transition: color .4s ease-in-out;
}

nav h1{
    font-size: 2.5rem;
    color: var(--lightColor);
    padding-left: 1rem;
    
}

nav h1 span{
    font-size: 2.5rem;
    color: var(--darkColor);
    font-weight: 300;
}
.hero{
height: 92vh;
display: flex;
background-color: var(--primaryColor);
}

.hero .left{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    line-height: 3rem;
}

.hero .right{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .right img{
    height: 55vh;
    border-radius: 50% 20% / 10% 45%;
    padding-right: 2rem;
    margin-bottom: -3rem;
    transform: rotate(2deg);
  
}

.left p{
    color: var(--darkColor);
}
.left h1{
    font-size: 3rem;
}

.socialMedia{
    width: 12rem;
    display: flex;
    justify-content: space-evenly;
}

.socialMedia img{

    height: 2rem;
    border-radius: 50%;
}

.socialMediaNames{
    
    width: 12rem; 
    display: flex;
    justify-content: space-evenly;
    margin-top: -1rem;
}

.socialMediaNames p{
    font-size: 0.7rem;

}

.services{
    padding-left: 1rem;
    padding-right: 1rem;
    height: 85vh;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 2rem;
    row-gap: 3rem;
    color: white;
    padding-top: 2rem;
}

.services div{
    height: 15rem;
    border: 1px solid red;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #aea8e6;
    line-height: 2rem;
    border-radius: 25% 10%;
    margin-top: -1rem;
    transition: background-color .6s ease-in-out;
}
.services div img{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
}

.services div h3{
    color: var(--lightColor);
}

.services div p{
    font-size: .8rem;
    padding: 0 0.3rem;
}

.outsiderOfServices{
color: var(--darkColor);
text-align: center;
font-size: 3rem;
margin-top: 2rem;
margin-bottom: 1rem;
text-decoration: underline;

}

.services div:hover{
    cursor: pointer;
    background-color: #7b72d0;
}

#projects{
    height: 90vh;
    width: 100vw;
    padding: 3rem;
}

/* .carousel-inner img{
    padding: 1.5rem;
} */

.carousel-inner h5{
    color: var(--lightColor);
    position: relative;
   top: 60px
}

.carousel-inner p{
    color: var(--lightColor);
    position: relative;
   top: 43px
}

#contact{
    height: 100vh;
    width: 100vw;
    padding: 0% 3rem;
    display: flex;
}
.contactLeft{
    height: 100%;
    width: 25%;
    background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contactRight{
    height: 100%;
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
  
}
.contactForm{
   max-width: 40rem; 
   width: 100%;
   background-color: #fff;
   padding: 2rem;
   border-radius: .8rem;
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label{
    display: block;
    font-weight: bold;
    margin-bottom: .6rem;
}

input, textarea{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: .4rem;
    margin-bottom: .5rem;
}

button{
    background-color: var(--primaryColor);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: .4rem;
    transition: background-color .4s ease-in-out;
}
button:hover{
    background-color:  #aea8e6;
    color: aqua;
}

#contact #p1{
    position: relative;
    left: 47px;
}
