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

body{
    font-family:Arial,sans-serif;
    background:#fff;
    color:#222;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

section{
    padding:80px 0;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:8px;
    background:#e30613;
    color:#fff;
    font-weight:bold;
}

.btn:hover{
    opacity:.9;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.nav{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    color:#222;
    font-weight:600;
}

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
}

.hero-content{
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat{
    background:#f5f5f5;
    padding:30px;
    text-align:center;
    border-radius:10px;
}

.services{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
}

.projects{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.project{
    height:300px;
    background:#eee;
    border-radius:10px;
}

.blogs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.blog{
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
}

.blog-content{
    padding:20px;
}

.contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.form-group{
    margin-bottom:15px;
}

input,
textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

footer{
    background:#111;
    color:#fff;
    padding:40px 0;
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25d366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

@media(max-width:992px){

.services,
.projects,
.blogs,
.stats{
    grid-template-columns:1fr 1fr;
}

.hero-content h1{
    font-size:40px;
}

.contact{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

}

@media(max-width:768px){

.services,
.projects,
.blogs,
.stats{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:32px;
}

.hero-content p{
    font-size:16px;
}

section{
    padding:50px 0;
}

}
.yazi{}
.yazi p{}