:root{
    --primary-color: #172061;
    --secondary-color: #94cce5;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Lusail-Medium';
    src: url('../fonts/Lusail-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Lusail-Bold';
    src: url('../fonts/Lusail-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
body {
    font-family: 'Lusail-Medium', sans-serif;
}
h1, h2, h3, strong {
    font-family: 'Lusail-Bold', sans-serif;
    font-weight: bold;
}
 
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    box-sizing: border-box;
 
}
.container-small {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    box-sizing: border-box; 
    padding: 0 120px;
}
 .head {
    display: flex
    ;
        justify-content: space-between;
        align-items: center;
        z-index: 10;
        position: fixed;
        background: white;
        width: 100%;
        padding: 0 22px;
}
 .head .logo {
     width:22%;
 }
 .head .logo img {
    width: 200px;
}
 .head ul {
    display: flex;
    align-items: center;

}
 .head ul  a{
    margin: 0 20px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 23px;
}
 .head .links {
    display: flex;
    align-items: center;
}
 .head .links.small{
    display: none;
}
 .head .links a{
    margin: 0 10px;
    padding:10px 35px;
    color: white;
    border-radius: 7px;
    transition: .3s;
    font-size: 19px;
}
.head .links a:first-child{
    color: var(--primary-color);
    font-size: 20px;
    padding: 10px 15px;
}
 .head .links a:nth-child(2){
    background-color: var(--primary-color);

}
 .head .links a:nth-child(2):hover{
    background-color: var(--secondary-color);

}
 .head .links a:last-child{
    background-color: #9e0e46;
    
}
 .head .links a:last-child:hover{
    background-color: #71203f;
    
}
.menu-overlay {
    position: fixed;
    top: 130px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* لون شفاف للخلفية */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}
.landing {
    min-height: 65vh;
    width: 100%;
    background-image: url(../images/banner-inside.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.landing .title {
    width: 100%;
    height: 40vh;
    padding-top: 0;
}
.landing .title h2 {
    position: relative;
    top: 50%;
    left: 0;
    color: white;
    font-size: 45px;
    transform: translateY(-50%);
}








footer{
    background-color: var(--primary-color);
    padding: 80px 0 120px 0 ;
}
footer .footer-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footer-links .social a {
    margin: 0 5px;
    color: white;

}
footer .footer-links .logo img {
    width: 200px;
}
footer .footer-menu {
    margin-top: 60px;
}
footer .footer-menu ul{
    display: flex;


}
footer .footer-menu ul a {
    margin: 0 10px;
    color: white;
    font-size: 21px;
}

@media (max-width: 767px) {
    .container-small{
        padding: 0 120px;
    }
}

@media (min-width : 769px) {
    .toggle-menu{
        display: none;
    }
}
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 10px;
    }
    .menu ul {
        flex-direction: column;
    }
    .menu ul li {
        margin: 15px 0;
    }
    .toggle-menu {
        display: block;
        background-color: transparent;
        padding: 5px 10px;
        border: none;
        padding-right: 30px;
    }
    .toggle-menu  img {
        width: 30px;
    }
     .head .links {
        display: none;
    }
      .head .links.small {
        display: flex;
    }
}
@media (max-width: 598px){
    .container-small {

    padding: 0 25px !important;
    
}
footer .footer-links {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .footer-menu ul {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
footer .footer-menu ul a {
    margin: 14px 32px;
    display: block;
}
footer .footer-links .logo img {
    margin-bottom: 26px;
}
.head .logo img {
    width: 150px;
}
.landing {
    min-height: 100%;
}
.head .links a {
 
    padding: 10px 18px;
 
}
} 
