@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins' , sans-serif;
}

                    /* Header Section Start */

header{
    background-color: #F7F7F7;
    position: fixed;
    z-index: 999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 100px;
}
header .logo h2 {
    color: #393E46;
    font-size: 1.8em;
    font-weight: 600;
}
.humburugr{
    display: none;
}
.navbar ul{
    display: flex;
    list-style: none;
}
.navbar ul li a{
    display: block;
    text-decoration: none;
    padding: 20px;
    font-size: 0.8em;
    font-weight: 400;
    color: #393E46;
    position: relative;
    float: left;
}
.navbar ul li a:hover{
    color: #929AAB;
}
.navbar ul li a::after{
    content: " ";
    display: block;
    width: 0;
    height: 2px;
    background-color: #BBBFCA; 
    position: absolute;
    left: 0;
    bottom: 0.6;
    transition: width 0.5s; 
}
.navbar a:hover::after {
    width: 90%; 
}
@media only screen and (max-width:900px){
    header{
        padding:10px 15px ;
        justify-content: space-around;
    }
    .humburugr{
        display: block;
        cursor: pointer;
        z-index: 1000;
        padding: 1px;
        border-radius: 50%;
    }    
    .humburugr i{
        width:30px;
        padding: 8px;
        border-radius: 50%;
        color: #495464;
        margin: 6px;
        transition: 7s ease;
    }
    .humburugr:hover{
        transform: scale(1.1);
    }
    .navbar{
        height:0;
        position: absolute;
        top: 65px;
        left: 0px;
        right: 0px;
        transition: 0.5s;
        overflow: hidden;
        background-color: #F7F7F7;
    }
    .navbar.active{
        height: 450px;
    }
    .navbar ul{
        display: block;
        width: fit-content;
        margin: 40px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
        padding: 20px;
    }
    .navbar.active ul{
        opacity: 1;
    }
    .navbar ul li a{
        margin: 10px;
        margin-bottom: 12px;
        color: #393E46;
    }
    .navbar ul li a:hover{
        color: #495464;
        border-radius:10px 10px 0px 0px;
    }
    .logo{
        font-size: 1em;
    }

}

                    /* Header Section End */

                    /* Home Section Start */

.home{
    width: 100%;
    height: 100vh;
    background: url(Images/pexels-binyamin-mellish-116077.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.home::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.home *{
    z-index: 1;
}
.countainer{
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%; 
    position: absolute;
    text-align: center;
}
.countainer h2{
    color: #EEEEEE;
    font-size: 2em;
    font-weight: 600;
}
.countainer p {
    color: #929AAB;
}
.countainer a{
    display: inline-block;
    text-decoration: none;
    margin: 10px;
    color: #EEEEEE;
    border: 1px solid #EEEEEE ;
    padding: 0.6em 1.6em;
}
@media only screen and (max-width:900px){
    .countainer h2{
        font-size: 1.6em;
    }
    .countainer p {
        font-size: 1em;
    }
    .countainer a{
        font-size: 0.8em;
        margin: 10px;
        padding: 0.3em 1.2em;
        border-radius: 6px;
    }
}
@media only screen and (max-width:400px){
    .countainer h2{
        font-size: 1em;
    }
    .countainer p {
        font-size: 0.8em;
    }
    .countainer a{
        font-size: 0.6em;
    }
}

                    /* Home Section End */

                    /* About Section Start */

.about{
    padding: 90px 60px;
    background-color: #F7F7F7;
}
.text{
    padding: 60px 0px;
}
.countent{
    display: flex;
    justify-content: space-between;
}
.text h2{
    font-size: 2em;
    color: #393E46;
}
.text p{
    color: #495464;
    margin: 10px 0;
}
.countent img{
    width: 47%;
    transition: 0.7s ease;
    object-fit: contain;
    margin-left: 10px;
}
.countent a{
    text-decoration: none;
    color: #EEEEEE;
    background-color: #393E46;
	display: inline-block;
	padding: 0.9375em 2.1857em;
    transition: 0.7s ease;
    margin: 20px 0;
    border-radius: 2px;
}
.countent a:hover{
    transform: scale(1.1);
}
@media only screen and (max-width:900px){
    .about{
        padding: 50px 20px;
    }
    .text{
        padding: 30px 0px;
    }
    .text h2{
        font-size: 1.2em;
        color: #393E46;
    }
    .text p{
        font-size: 0.7em;
        margin: 10px 0;
    }
    .countent img{
        width: 50%;
        transition: 0.7s ease;
        object-fit: contain;
        margin-left: 10px;
    }
    .countent a{
        font-size: 1em;
        padding: 0.5em 1.5857em;
        margin: 10px 0;
    }
    .countent a:hover{
        transform: scale(1.1);
    }
}
@media only screen and (max-width:400px){
    .about{
        padding: 40px 30px;
    }
    .countent{
        display: block;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .text{
        padding: 30px 0px;
    }
    .text h2{
        font-size: 1.2em;
        color: #393E46;
    }
    .text p{
        font-size: 0.7em;
        margin: 10px 0;
    }
    .countent img{
        display: none;
    }
    .countent a{
        font-size: 1em;
        padding: 0.5em 1.5857em;
        margin: 10px 0;
    }
    .countent a:hover{
        transform: scale(1.1);
    }
}

                    /* About Section End */

                    /* Services Section Start */

.services{
    padding: 40px 80px;
    background-color: #F7F7F7;
}
.services h2{
    text-align: center;
    font-size: 2em;
    color: #393E46;
    margin: 10px;
}
.services-all{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
}
.services-list{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 300px;
    background-color: #EEEEEE;
    margin: 10px;
    padding: 30px;
    border-radius: 5px;
    box-shadow:  5px 5px 26px #c6c6c4,
    -5px -5px 26px #ffffff;
    text-align: center;
    transition: 0.7s ease;

}
.services-list:hover{
    transform: scale(1.1);
}
.services-list img {
    width: 100%;
    margin: 20px;
}
.services-list h2{
    color: #393E46;
    font-size: 1.3em;
    margin: 10px;
}
.services-list p{
    color: #495464;
    font-size: 0.8em;
}
@media only screen and (max-width:900px){
    .services h2{
        font-size: 1.6em;
    }
    .services-all{
        margin: 10px;
        align-items: center;
        justify-content: center;
    }
    .services-list img {
        width: 90%;
        margin: 20px;
    }
    .services-list h2{
        font-size: 1.2em;
        margin: 10px;
    }
    .services-list p{
        font-size: 0.7em;
    }
}
@media only screen and (max-width:400px){

    .services-list img {
        width: 100%;
        margin: 20px;
    }
    .services-list h2{
        font-size: 1em;
        margin: 10px;
    }
    .services-list p{
        font-size: 0.5em;
    }
}

                    /* Services Section End */

                    /* Contact Section Start */

.contact{
    padding: 40px 120px;
    background-color: #F7F7F7;
}
.contact h2{
    text-align: center;
    font-size: 2em;
    color: #393E46;
    margin: 10px;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #EEEEEE;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
form {
    display: grid;
    gap: 1rem;
}
label {
    color: #495464;
    font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
}
button {
    background-color: #393E46;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
}
button:hover {
    background-color: #555;
}
@media only screen and (max-width:900px){
    .contact{
        padding: 10px 70px;
        background-color: #F7F7F7;
    }
}
@media only screen and (max-width:400px){
    .contact{
        padding: 3px 30px;
        background-color: #F7F7F7;
    }
}

                    /* Contact Section End */

             /*     Footer section Start  */

footer{
    background-color: #393E46;
    padding: 50px 50px;
    
}
.nav-bar ul{
    display: flex;
    list-style: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 20px;
}
.nav-bar ul li a{

    text-decoration: none;
    color: #F4F4F2 ;
    font-size: 0.9em;
    float: left;
    display: block;
    position: relative;
    padding: 0 25px;
}
.nav-bar a:hover {
    color: #BBBFCA; 
    text-decoration: none;
}
.social-icons{
    color: #F1F6F9;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.social-icons a i{
    text-decoration: none;
    color: #F4F4F2;
    width: 40px;
    transition: 0.8s;
	transform: translateX(0);
	cursor: grab;
}
.social-icons a i:hover{
    transform: scale(1.1);
}
.footer-title{
    text-align: center;
    align-items: center;
    color: #F4F4F2;
	font-size: 1em;
	font-weight: 600;
    margin: 10px;
}
.footer-title span{
	color: #E8E8E8;
}

             /*     Footer section End  */