*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --beigeColor1:#F9F1E7;
    --beigeColor2:#FCF8F3;
    --gray1:#3A3A3A;
    --teal:#E89F71;
    --gray3:#898989;
    
}
body {
    font-family: 'Cairo', sans-serif;
  }
a{
    text-decoration: none;
    color: black;

}
a:hover{
    color: black;
}
a:visited{
    color: black;
}

.container{
    margin: 0px auto;
    width: 90%;
    position: relative;
}
@media (max-width:768px) {
    .container{
        width: 90%;
    }
}

/* landing div */
.landing{
    width: 100%;
    height: 100vh;
    background-color: var(--beigeColor2);
    position: relative;
    z-index: 0;
    
   
}
.landing h1{
  
   
    font-size: 60px;
    font-weight: 800;
}
html {
    scroll-behavior: smooth;
}
.landingContent{
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    text-align: center;
    flex-wrap: wrap;
}


.servs{
    

    padding: 0px 50px;
    /* transform: translate(-50%,-50%); */
    width: 50%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width:900px) {
    .servs{
        width: 100%;
    }
    
}
.servs .connetction{
    display: flex;
    gap: 10px;
}
.servs .serv{
    background-color: black;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    transition: 1s;
    animation: photoAnimation 2s alternate-reverse 1s infinite ;

}
.serv:hover{
    background-color: var(--teal);
}
.serv a{
    color: white;
    font-size: 30px;
    font-weight: 500;
}

.dropdown {
    position: absolute;
    /* display: inline-block; */
    display: none;
    right: 20%;
}

.dropdown-button {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 4px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.dropdown-content nav ul li {
    padding: 8px ;
}

.dropdown-content nav ul li a {
    text-decoration: none;
    color: black;
    display: block;
}

.dropdown-content nav ul li a:hover {
    background-color: #ddd;
}





.dropdown-content .langs a.activeLang {
    font-weight: bold;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-button {
    background-color:var(--teal);
}
.serv a:hover{
    text-decoration: none;
}


/* header */
.header{
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 3;
}
.header img{
    width: 100px;
    height: 100px;
    margin-right: 132px;
}
@media (max-width:768px) {
    .header img{
        margin-right: 10px;
        width: 80px;
        height: 80px;
    }
}
.header ul{
    display: flex;
    list-style: none;
    gap: 40px;
}
.header li a{
color: var(--gray1);
font-size: 16px;
font-weight: 500;
line-height: 24px;
transition: 1s;
}
.header li a:hover{
    text-decoration: underline;
}
.langs{
    position: absolute;
    right: 0;
    display: flex;
}
.langs a{
    font-weight: 600;
   
    padding: 5px;

}
@media (max-width:990px) {
    .header .nav{
        display: none;
    }
    .dropdown{
        display: inline-block;
    }
    .serv a{
        color: white;
        font-size: 18px;
        font-weight: 500;
    }
    
}
.landing .activeLang{
    background-color: black;
    display: block;
    color: white;
   
}
.servicesContainer{
   
    width: 100%;
    min-height: 100vh;
    /* background-color: #F4F5F7; */
    background-color: var(--beigeColor1);
}
@media (max-width:768px) {
    .servicesContainer{
        display: flex;
        flex-direction: column;
    }
}
.servicesContainer h1{
    padding: 40px;
    text-align: center;
    font-weight: 700;
}
.servicesContainer h2{
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}
.servicesContainer .serviceText h3{
    font-weight: 600;
}
@media (min-width:769px) {
    .servicesContainer h1{
        padding: 20px;
    }
    .service .serviceText{
        width: 50%;
       
    }
}
 


.servicesContainer .service{
    height: 80vh;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service h2{
    font-weight: 600;
    margin-bottom: 10px;
}
.service h3{
    padding-left:15px ;
    font-size: 40px;

}
.service p{
    padding-left: 20px;
    font-size: 1rem;
}
.service .serviceText li{
    margin: 10px 0px;
}
.service .serviceText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.service .serviceImage {
    width: 400px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    transition: 0.8s;
    animation: photoAnimation 2s alternate-reverse  infinite ;

}
@keyframes photoAnimation {
    0%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(10px);

    }
    
}
@media (max-width:990px) {
    .servicesContainer h1{
        font-size: 30px;

    }
    .servicesContainer .service{
        height: 100%;
    }
    .service .serviceText{
        width: 100%;
    }
}

.service .serviceImage img{
    width: 90%;
    height: 90%;
}

@media (max-width:768px) {
    .service .serviceImage{
        width: 200px;
        height: 260px;

    } 
}
/* latestWork */
.latestWork{
    width: 100%;
    /* height: 100vh; */
    text-align: center;
    padding: 40px;
}
.latestWork h1{
    padding: 40px;
}
.card{
    width: calc(100% / 3);
   
    
  }
  @media (min-width:770px) {
    .card{
        height: 50vh;
    }
    .latestWork{
        height: 100vh;
    }
  }
  @media (max-width:767px) {
    .card{
        height: 15vh;
    }
    .latestWork h1{
        padding: 0;
        font-size: 20px;
    }
   
    
  }
  .card-body{
    display: none;
  }
  .card img{
    width: 100%;
    height: 100%;
  }/* features */
.features{
    display: flex;
    margin:88px 0px;
    gap: 92px;
    transition: 2s;
    flex-wrap: wrap;
    justify-content: center;
}
.features .feat{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: 2s;
}
.features .feat img{
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}
.features .feat i{
    font-size: 45px;
}
.feat .featText h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: var(--gray1);
}
.feat .featText p{
    font-size: 16px;
    font-weight: 500;
    color: var(--gray3);
    line-height: 24px;
}
/* footer */
footer{
    padding: 80px 0px;
    /* border-top: 1px solid #D8D8D8; */
    background-color: var(--teal);
}
footer h3{
    color: black;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
}
footer p{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: black;
}
footer img{
    width: 100px;
    height: 100px;
}
footer form{
    display: flex;
}
footer form input[type="email"]{
    width: 242px;
    height: 45px;
    background-color: #F4F5F7;
    border:none;
    padding: 5px;
}
footer form button{
    background-color: rgb(54, 117, 255);
    color: white;
    width: 46px;
    height: 45px;
    border: none;
    cursor: pointer;
}


.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    left: 20px; /* Distance from the right */
    background-color: #25D366; /* WhatsApp Green Color */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    z-index: 1000; /* Ensure the button is on top of other content */
    text-decoration: none; /* Remove underline from the link */
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Darker green for hover effect */
}

/* Optional: Additional styling for the icon */
.whatsapp-button i {
    margin: 0;
    font-size: 25px;
    color: white;
}
.whatsapp-button:hover{
    text-decoration: none;
}
