@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
body{
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

html{
    scroll-behavior: smooth;
}

::-webkit-scrollbar{
    width: 20px;
}

::-webkit-scrollbar-thumb{
    background-color: #00b8db;
}

::-webkit-scrollbar-thumb:hover{
    background-color: #01768d;
}



.logo{
    width: 125px;
}

.header{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    z-index: 1000;
}

.header nav{
    position: relative;
}

.header nav ul{}

.header nav ul li {
    display: inline-block;
    margin-right: 30px;
}

.header nav ul li a{
    font-size: 19px;
    transition:  0.3s ease;
}

.header nav ul li a:hover,
.header nav ul li a.active {
    color: cyan;
}

.humburger-icon{
    display: none;
}

.humburger-icon i{
    color: #FFF;
    font-size: 23px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .header nav{
        position: relative;
    }
    .header nav ul {
        position: absolute;
        left: -16px;
        top: 62px;
        background-color: #171717;
        width: 300px;
        height: 400px;
   }
   .header nav ul li {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 50px 0;
        overflow: hidden;
    }

    .header nav ul li a{
        font-size: 18px;
        transition: all 0.3s ease;
        padding: 10px 20px;
        border-radius: 10px;
    }
    .header nav ul li a:hover,
    .header nav ul li a.active{
        background-color: #FFFFFF66;
    }
    .logo{
        width: 80px;
        margin-top: 8px;
    }
    .humburger-icon{
        display: block;
    }

    #list-menu{
        transition: 0.4s;
        max-width: 0;
    }
}


/* Start Landing */

.landing{
    background: url('../img/bg1.jpg');
    background-size: cover;
    background-position: center;
    height: 86vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px){
    .landing{
        height: 70vh;
        text-align: center;
    }
}


.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);

}

.landing .text{
    position: relative;
    color: #fff;
    padding-left: 15px;
}

.landing .text h1 span{
    color: cyan;
}

.btn-main{
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-main:hover{
    background-color: #01768d;
    color: #fff;
}

/* Start About Section */


.about h2{
    /* margin-left: 45px; */
    font-size: 30px;
    position: relative;
    width: fit-content;
    transition: color 0.3s ease;
}

.about h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 6px solid #00b8db;
    width: 70px;
    transition: border-color 0.3s ease;
}

.about h2:hover::before{
    border-color: #333;
}



.content-about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 45px;
    gap: 20px;
}

@media (max-width: 767px) {
    .content-about{
        flex-direction: column;
        text-align: center;
    }
    .content-about .text {
        width: 100%;
        margin-bottom: 20px;
    }
    .about h2{
        text-align: center;
    }
}



.content-about .text {
    width: 60%;
    font-size: 19px;
}

.content-about .image {
    width: 70%;
    /* border: 3px solid #00b8db; */
    outline: #fff 8px solid;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Start products Section */

.products h2{
    font-size: 30px;
    position: relative;
    width: fit-content;
    transition: color 0.3s ease;
}

.products h2::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 6px solid #00b8db;
    width: 70px;
    transition: border-color 0.3s ease;
}

.products h2:hover::before{
    border-color: #333;
}

.products-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

@media (max-width: 767px) {
    .products-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}


.products .products-list .item{
    width: 250px;
    margin: 0 15px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.products .products-list .item:hover{
    transform: scale(1.05);
}

.products .products-list .item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.products .products-list .item h3{
    font-size: 20px;
    margin: 10px 0;
    text-align: left;
}

.products .products-list .item p{
    font-size: 16px;
    color: #666;
    text-align: left;
}

.products .products-list .item .info{
    /* background-color: darkorchid; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
}



/* Start Contact Section */

.contactus-content{
    background-image: url('../img/contactbg1.jpg');
    background-size: cover;
    background-position: center;
    height: 86vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contactus-content h2{
    position: relative;
    z-index: 40;
}

.contactus-content .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.contactus-content .form{
    position: relative;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.contactus-content .form input,textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    outline: none;
}

.contactus-content .form input:focus,textarea:focus{
    border: 1px solid #00b8db;
}

/* Start Footer */

.footer{
    background-color: #333;
    color: #00b8db;
    padding: 15px;
    font-size: 25px;
    text-align: center;
}