@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);




html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.position{
    background-color: wheat;
    margin: 20px;
    padding: 40px;
}

.box{
    background-color: yellow;
    padding: 20px;
    width: 100%;
    border: 10px solid #333;
}

header{
    position: sticky;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background-color: #333;
}

.name{
    margin-top: 5px;
    margin-left: 50px;
    color: #fff;    
}

span{
    font-size: 30px;

}

ul{
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 10px;
}

li{
    font-size: 20px;
}
a{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

a:hover{
    color: red;
}

.nav-item a:link, .nav-item a:visited{
    color: whitesmoke;
    font-weight: medium;
}
  
.nav-item a:hover, .nav-item a:focus{
    font-weight:medium;
    color: red;
}

.nav-item a:after {
    content: " ";
    display: block;
    background: red;
    height: 2px;
    width: 0;
    transition: 0.4s ease-in;
}
.nav-item a:hover:after {
    width: 100%;

}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin-right: 2rem;
}

.nav-item {
    margin-left: 2rem;
}

/* about section */

.container1{
    background-color: rgb(221, 243, 243);
    height: 90%;
    padding: 40px;
}

.home{
    background-color: rgba(212, 208, 208, 0.438);
    backdrop-filter: blur(10px);
    height: 80vh;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;

}

.col {
    width: 50%;
}
.about{
    width: 100%;
}
.about h1{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bolder;
    font-size: 40px;
}

.home p{
    font-family: Arial, Helvetica, sans-serif;
    padding: 30px 0;
    font-size: 30px;
    line-height: 40px;
}


.col img{
    width: 80%;
    margin-left: 80px ;
    height: auto;
}


.splide{
    background-color:azure;
    padding: 20px;
    border: 2px solid #333;
    height: 75%;
    margin: 40px;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splide__track{
    margin: 30px;
}

.carousel{
    padding: 40px;
    background-color: azure;
}

.carousel-indicators [data-bs-target]{
    background-color: #333  ;
}

.carousel-item img:nth-child(1){
    width: 100%;
    height: 70%;
}


.services{
    background-color: rgb(221, 243, 243);
    padding: 40px 40px 0 40px;
    gap: 10%;
}


.card-row{
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
}

.ser-head{
    display: flex;
    justify-content: center;
}

.ser-head h2{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 40px;
}
.card-body{
    background-color: #ffffff;
    color: #000000;
    /* height: 230px; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 0 0 10px 10px;

}

.card-body a{
    display: block;
    align-items: flex-end;
    background-color: rgb(185, 81, 81);
}

.card{
    border-radius: 10px;
}
.card img{    
    border-radius: 10px 10px 0 0;
}

.card-body h5{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
}

.card-body p{
    font-family: sans-serif;
}

.contact{
    background-color: rgb(221, 243, 243);
    padding: 0 40px 40px 40px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.contact-sec{
    background-color: rgba(223, 223, 223, 0.58);
    padding: 40px;
    width: 300%;
    height: 65%;
}

.contact-row{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    padding-top: 50px;
}

.contact-head{
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}

.contact-head h2{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 40px;
}

.contact-sec button{
    background-color: red;
    color: #ffffff;
    width: 130px;
    height: 50px;
    border-radius: 8px;
    font-size: large;
}

.footer{
    background-color: #333;
}