*{
    box-sizing: border-box;
}








@keyframes bounce {
    0% , 100% {
        transform: translate(-50% , 0);
    }
    50% {
        transform: translate(-50% , 10px);
    }
}












body{
    margin: 10px;
    padding: 10px;
    background-color: #0A1128;
    background: radial-gradient(circle at top left , #0A1128 60%  , #153D71 100% );
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'cairo' , sans-serif;
    overflow-x: hidden;
    
}
@media (max-width: 768px) {
    body{
        margin: 5px;
        padding: 5px;
    }
}

.container{
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

@media (max-width: 768px) {
    .container{
    padding: 0 10px;
    width: 100%;
}

    
}

/* Home Page Start */

.homepage{
    position: relative;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .homepage{
    position: relative;
}
}


.homepage .navbar{
    display: flex;
    justify-content: space-between;
}


.homepage .navbar .logo{
    position: relative;
    display: flex;
}
.homepage .navbar .logo .picture{
    position: relative;
    top: -50px;
    left: -70px;
}
@media (max-width: 768px){
    .homepage .navbar .logo .picture{
    position: relative;
    top: -35px;
    left: -56px;
}
}

.homepage .navbar .logo .omda {
    color: white;
    font-size: 30px;
    position: relative;
    left: -230px;
    top: 69px;
}


.homepage .navbar .logo .picture img{
    margin: 0%;
    width: 300px;
    
}

@media (max-width: 768px) {
    .homepage .navbar .logo .picture img{
    margin: 10px;
    width: 120px;
    
}
.homepage .navbar .logo .omda {
    color: white;
    font-size: 18px;
    position: relative;
    left: -133px;
    top: 10px;
}
    
}

.homepage .navbar ul{
    display: flex;
    color: white;
    font-size: large;
    margin: 30px;
    margin-right: 20px;
    
}

@media (max-width: 768px){
    .homepage .navbar ul{
        display: none;
    }
}




.navbar ul li{
    list-style: none;
    margin: 10px 10px 10px 10px;    
}

.navbar ul li span {
    padding: 10px 20px;
    transition: transform 0.3 ;
}
.navbar ul li span:hover{
    background:rgba(255 , 255 , 255 , 0.1);
    border-bottom: #1F68B2 solid 1px;
    cursor:pointer
}


.homepage .paragraph {
    margin-left: 20px;
}
@media (max-width: 768px){
    .homepage .paragraph {
    margin: 40px 0 0 0;
}
}
.homepage .paragraph p{ 
    color: white;
    font-size: 80px;
    font-weight: bolder;
    margin:  -30px 0PX;
    height: 100px;
    
}
@media (max-width: 768px){
    .homepage .paragraph p{ 
        text-align: center;
    font-size: 40px;
    margin:  -60px 0PX;

}
}


.homepage .text p {
    color: #B0BAC9;
    margin: 65px 50px 30px 20px;
    font-size: 26px;
    line-height: 35px;
}
@media (max-width: 768px){
    .homepage .text p {
    color: #B0BAC9;
    text-align: center;
    margin: 50px 0px 30px 0px;
    font-size: 20px;
    line-height: 30px;
}
}

.homepage .person{
    position: absolute;
    top: 50px;
    right: 10px;
    width: 700px;
    height: 900px;
    z-index: -1;
}
@media (max-width: 768px){
    .homepage .image{
        margin: 60px 0 0 0;
        display: flex;
        width: 100%;
        height: 500px;
        position: relative;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .homepage .image img{
        position: static;
        max-width:385px;
        height: 480px;
    }
}




.homepage .buttons{
    display: flex;
    color: white;
    font-weight: 600;
    text-align: center;
    margin-left: 20px;
    
}
@media (max-width: 768px){
    .homepage .buttons{
        position: absolute;
        width: 100%;
        top: 380px;
        display: flex;
        color: white;
        font-weight: 600;
        margin-left: 0;
        text-align: center;
        justify-content: center;
}
}
.homepage .buttons .learn{
    background-color: #1F68B2;
    border-radius: 6px;
    width: 100px;
    height: 35px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.homepage .buttons .learn:hover{
    cursor: pointer;
    transform: translateY(-5px);

}
.homepage .buttons .contact{
    background-color: #0A1128;
    border: #1F68B2 solid 1px;
    width: 100px;
    height: 35px;
    border-radius: 6px;
    transition: transform 0.3s ease;
    }
.homepage .buttons .contact:hover{
    cursor: pointer;
    transform: translateY(-5px);
}    

.homepage .scroll{
    color: white;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 36px;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Home Page End */


/* Start Services */

.services{
    display: grid;
    min-height: 100vh;
    grid-template-columns: repeat(auto-fit , minmax(250px , 1fr));
    gap: 20px;
    padding: 40px;

}

@media (max-width: 768px){
    .services{
    display: grid;
    min-height: 100vh;
    grid-template-columns: 1fr ;
    justify-items: center;
    row-gap: 20px;
    padding: 40px;
}
}

.services .box {
    max-width: 250px;
    height: 300px;
    background-color: #041b33;
    color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.services .box:hover{
    transform: translateY(-7px);
}

.services .card{
    width: 100%;
    height: 100%;
    text-align: center;
    display: grid;
    grid-template-rows: 50px 40px minmax(0,1fr) 40px;
    gap: 0;
}
@media (max-width: 768px){

}
.services .box .card i{
    font-size: 46px;
    color: #0574e3;
    grid-row: 1;
    align-self: end;
}
.services .box .card  h3{
    font-size: 17px;
    margin: 10px 0 10px 0;
    max-height: 40px;
    grid-row: 2;

}
.services .box .card p{
    font-size: 13px;
    margin: 10px 0 10px 0;
    grid-row: 3;
}
.services .box .card .learn{
    width: 100%;
    max-height: 40px;
    font-size: 16px;
    padding: 5px ;
    color: #0574e3;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    grid-row: 4;
    align-self: end;
    justify-self: center;
}

.services .box .card .learn i{
    font-size: 14px;
    position: relative;
    top: 1px;
}
.services .box .card .learn:hover i{
    transform: translateX(4px);
}
/* End Services */



/* Start Footer  */


footer{
    width: 100%;
    height: 300px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 768px){
    footer{
        display: block;

    }
}
footer .footer-top{
    padding: 20px 60px;
    display: flex;
    height: 215px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
@media (max-width: 768px){
    footer .footer-top{
    padding: 20px 60px;
    height: 700px;
    /* display: flex; */
    /* flex-wrap: wrap; */
    flex-direction: row;
    display: block;
    /* justify-content: space-around; */
}
}

footer .footer-top .footer-about {
    max-width: 300px;
}
footer .footer-top .footer-explore {
    display: flex;
    flex-direction: column;
}
footer .footer-top .footer-explore a{
    color: #B0BAC9;
    text-decoration: none;
    padding: 5px 10px 5px 0;
    margin: 0;
    transition: transform 0.5s ease;
}
footer .footer-top .footer-explore a:hover{
    color: #0574e3;
    transform: translateX(10px);
}
footer .footer-top .footer-explore a::before{
    content: " ";
    position: absolute;
    top: 55%;
    left: -10px;
    bottom: 0;
    transform: translateY(-50%);
    display: inline-block;
    opacity: 0;
    width: 6px;
    height: 6px;
    background-color: #0574e3;
    border-radius: 50%;
    transition: all 0.5s ease;
}
footer .footer-top .footer-explore a:hover::before{
    opacity: 1;    
}

footer .footer-top .footer-contact {
    display: flex;
    flex-direction: column;
}
footer .footer-top .footer-contact a {
    text-decoration: none;
    color: white;
    margin: 5px 0;
}
footer .footer-top .footer-contact a:hover {
    color: #0574e3;
}


footer .footer-top .footer-contact .social a{
    margin: 5px 10px 5px 0;
}





footer .footer-bottom{
    height: 85px;
    /* display: flex;
    justify-content: center; */
    text-align: center;
}
footer .footer-bottom p{
    font-size: 12px;
}
footer .footer-bottom p a{
    font-size: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.5s ease;
}
footer .footer-bottom p a:hover{
    
    color: #0574e3;

}

/* End Footer  */
