.logo{
    color:  black;
    font-weight: 10px;
    margin-bottom:-30px;
    outline: blue 20px;
    border-radius: 20px;
    padding: 15px;
}

.navbar{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    align-items: center;
    box-shadow: 0 2px 10px;
    z-index:1000 rgba(0,0,0,0,1) ;

}
.nav-menue{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.nav-menue a{
    color: #000;
    font-weight: 500;
    background: #f4c542;
    border-radius: 50%;
    display:relative;
    transition: 0.3s ease;
    position: relative;
    text-decoration: none;
    color: white;
}
.nav-menue a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background:red;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav-menue a:hover::after{
    transform: scaleX(1);
}
.nav-menue a:not(:hover)::after{
    transform-origin: right;
}
.nav-menue a ::before{
    left:50%;
    transfrom:translateX(-50%)
}
.navbar nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.navbar nav a{
    display: inline-block;
    justify-content: space-between;
    margin:0 10px;
    color:black;
    font-weight: 500;
}
.su{
    font-size: 20px;
}
p{
    font-size:20px;
    margin: 10px;
    margin-top: 0px;
}
body{
    padding-top: 170px;
    margin: 0px;
    background-color:white;
    border-radius: 20px;
    margin-left:12px;
}
nav a{
    
    margin-right:20px;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 15px;

}
.other{
    padding: 12px;
    margin-bottom: 12px;
    margin-top: -20px;
    gap:6px;
    display:inline-block;
    margin-right:60px;
    
}
nav a:hover{
    background:white ;
    color:red
    
}
.btn{
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    background: #1a365d;
    margin-bottom: 30px;
    color: white;
    text-decoration:none;
    
}
.btn:hover{
    background:red;
}
.about{
    padding: 60px 40px;
    background:#1a365d;
    border-radius: 50px;
    color: #fff;
    justify-content: center;
    margin-bottom:40px;
}
.about h2{
    font-size: 32px;
    margin-bottom: 20px;

}
.about p{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    
}
.services{
    padding: 60px 20px;
}
.it{
    margin-top: -40px;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top: -10px;
}
.card{
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #1a365d;
    background:white;
    box-shadow:0 2px 8px ;
    transition: 0.3s;
}
.card:hover{
    transform:translateY(-5px)
}
.why{
    padding:80px 20px;
    text-align: center;
    margin-top: -70px;
}
.why-grid{
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;

}
.why-card{
    padding: 20px;
    border-radius: 10px;
    border: 1px solid aqua;
    transition: 0.3s;
    
}
.why-card:hover{
    transform:translateY(5px);
    box-shadow: o 5px 15px;

}
.why-card h3{
    margin-bottom: 10px;
}
.why-card p{
    font-size: 14px;
    line-height: 1.5;
}
.contact{
    padding: 10px;
    text-align: center;
    margin-top: -40px;
    background:#f5f5f5;
}
.contact h2{
    margin-bottom: 10px ;
}
.contact p{
    margin-bottom: 10px;
    color:black;

}
.contact form{
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact input{
    width:100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}
.contact textarea{
    width:100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    outline:1px #1a365d;
    resize:vertical;
}
.contact button{
    padding: 15px;
    border-radius: 6px;
    background: #000;
    color: #fff;
    font-size: 16px;
    cursor: pointer;

}
.contact button:hover{
    background: #333;
}
.social-links{
    display: flex;
    gap:20px;
    margin-top:20px;
    justify-content: center;
}
.social-links a{
    background: #f4c542;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: o.3s ease;
}
.social-links a:hover{
    background: #000;
    color:#f4c542;
    transform: translateY(-5px);
}
.careers{
    padding: 60px 20px;
    background: #0B3C5D;
    color: white;
}
.career-form{
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.career-form input,
.career-form select,
.career-form textarea{
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}
.career-form button{
    padding: 12px;
    background: #F4C542;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}
.career-form button:hover{
    background: white;
    color: black;
}