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

body{
    font-family:'Poppins',sans-serif;
    background:#07111f;
    color:white;
    overflow-x:hidden;
}

.background-animation{
    position:fixed;
    width:100%;
    height:100%;
    z-index:-1;
}

.background-animation span{
    position:absolute;
    display:block;
    border-radius:50%;
    background:rgba(0,255,255,0.08);
    animation:float 15s linear infinite;
}

.background-animation span:nth-child(1){
    width:250px;
    height:250px;
    top:10%;
    left:5%;
}

.background-animation span:nth-child(2){
    width:180px;
    height:180px;
    top:60%;
    left:80%;
}

.background-animation span:nth-child(3){
    width:120px;
    height:120px;
    top:75%;
    left:30%;
}

.background-animation span:nth-child(4){
    width:90px;
    height:90px;
    top:20%;
    left:70%;
}

@keyframes float{
    0%{
        transform:translateY(0) rotate(0deg);
    }
    50%{
        transform:translateY(-40px) rotate(180deg);
    }
    100%{
        transform:translateY(0) rotate(360deg);
    }
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:999;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-box img{
    width:60px;
    animation:pulse 4s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#00d9ff;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 8%;
    gap:60px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
    min-width:300px;
}

.hero-text h2{
    font-size:4rem;
    margin-bottom:20px;
}

.hero-text span{
    color:#00d9ff;
}

.hero-text p{
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:30px;
    color:#ddd;
}

.hero-image img{
    width:400px;
    max-width:100%;
    animation:floating 5s ease-in-out infinite;
}

@keyframes floating{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

.btn{
    display:inline-block;
    padding:14px 28px;
    background:linear-gradient(135deg,#00d9ff,#0077ff);
    color:white;
    border-radius:40px;
    text-decoration:none;
    margin-right:15px;
    transition:0.4s;
}

.btn:hover{
    transform:translateY(-5px);
}

.secondary{
    background:transparent;
    border:2px solid #00d9ff;
}

.about,
.services,
.contact{
    background:rgba(255,255,255,0.05);
    margin:50px 8%;
    padding:50px;
    border-radius:25px;
    backdrop-filter:blur(10px);
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:3rem;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,0.06);
    padding:30px;
    border-radius:20px;
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
    background:rgba(0,217,255,0.1);
}

.card h3{
    color:#00d9ff;
    margin-bottom:15px;
}

.about p,
.contact p{
    line-height:1.9;
    color:#ddd;
}

.amharic-box{
    margin-top:30px;
    background:rgba(0,217,255,0.08);
    padding:25px;
    border-radius:15px;
}

.amharic-list li{
    margin-bottom:12px;
}

form{
    display:flex;
    flex-direction:column;
    margin-top:30px;
}

input,
textarea{
    margin-bottom:20px;
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:1rem;
}

textarea{
    height:150px;
}

button{
    background:linear-gradient(135deg,#00d9ff,#0077ff);
    color:white;
    border:none;
    padding:15px;
    border-radius:40px;
    cursor:pointer;
    font-size:1rem;
    transition:0.4s;
}

button:hover{
    transform:translateY(-5px);
}

footer{
    text-align:center;
    padding:25px;
    background:#02101f;
    margin-top:40px;
}

.fade-left{
    animation:fadeLeft 1.5s ease;
}

.fade-right{
    animation:fadeRight 1.5s ease;
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:768px){

header{
    flex-direction:column;
    gap:15px;
}

.hero-text h2{
    font-size:2.5rem;
}

.hero{
    text-align:center;
}

}
