*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.menu-toggle{
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: white;
}
header{
    background: #0f172a;
    color: white;
    padding: 15px 0;
}
header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    flex-wrap: wrap;
    gap: 10px;
}
.container .log{
    width: 150px;
}
.container h1{
    font-size: 1.2rem;
    flex: 1;
    margin-right: 800px;
    text-align: center;
}
@media (max-width: 768px){
    .container h1{
        margin-right: 0;
        font-size: 1rem;
    }
}
header nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
header nav a{
    color: white;
    margin: 5px 10px;
    text-decoration: none;
}
@media (max-width: 768px) {
    .menu-toggle{
        display: block;
    }
     header nav{
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 999;
        background: rgba(15, 23, 42, 0.95);
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        background: #1e293b;
        margin-top: 10px;
        padding: 10px 0;
    }
    header nav.active{
        display: flex !important;
    }
    header nav a{
        padding: 10px;
        border-bottom: 1px solid #334155;
        width: 100%;
    }
}
.hero{
    position: relative;
    background: url(arkaa.jpg) no-repeat center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 20px;
    padding-left: 10%;
}
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.hero-text{
    position: relative;
    z-index: 2;
    
}
.hero h2{
    font-size: 28px;
}
.hero p{
    font-size: 16px;
}
.btn, .btnwhatsapp{
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}
.btn{
    background: #2563eb;
}
.btnwhatsapp{
    background: #22c55e;
}
.services{
    text-align: center;
    padding: 40px 20px;
}
.services h2{
    color: blue;
}
.cards{
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.card{
    width: 280px;
    padding: 15px;
    background: #f1f5f9;
    border-radius: 10px;
}
.card img{
    width: 150px;
    height: 150px;
    border-radius: 10px;
}
.card h3{
    margin-top: 10px;
}