:root {
    --main-color: #043d5b;
    --main-color: #FF9800;
    /*--main-color: #fef8bc;*/
    /*--main-color: yellow;*/
    --Second-Color: #0d7abb;
    --Colors-Grey-60: rgba(153, 153, 153, 1);
    --Colors-Grey-40: #666666;
    --Card-Background: #F5F6F8;
    --Second-Color: #75DFFF;
    --DeepBlack :#050505;
    --FontBold: 'IBMPlexSansArabic-Bold';
    --FontMedium: 'IBMPlexSansArabic-Medium';
    --FontRegular: 'IBMPlexSansArabic-Regular';
    --EmMessiriBold: 'ElMessiriBold';
    --AmiriBold: 'AmiriBold';
}


@font-face {
    font-family: IBMPlexSansArabic-Bold;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Bold.ttf');
}

@font-face {
    font-family: IBMPlexSansArabic-Medium;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Medium.ttf');
}

@font-face {
    font-family: IBMPlexSansArabic-Regular;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Regular.ttf');
}

@font-face {
    font-family: ElMessiriBold;
    src: url('../fonts/elmessiri/ttf/ElMessiri-Bold.ttf');
}

@font-face {
    font-family: AmiriBold;
    src: url('../fonts/Amiri-Bold.ttf');
}



body {
    width: 100%;
/*    min-height: 100vh;*/
/*    height: 100%;*/
    direction: rtl;
    font-family: var(--FontRegular);
    font-weight: 400;
}

.main-container {
/*    background-color: red;*/
/*    padding-left: 160px;*/
/*    padding-right: 160px;*/
/*    margin-bottom: 200px;*/

    background-color: white;
/*padding-bottom: 180px;*/
/*    height: 100%*/
/*    overflow-x: hidden;*/
    padding-top: 10px;

}


/* Start Footer Style */
     /* Start Contact US */
.contact {
    min-height: 600px;
    background-image: url('../images/contact-bg.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    font-family: var(--FontRegular);
}

.contact .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255,255,255,.6); */
    background-color: rgba(255 255 255 / 80%); /* As The Same Previus Line */
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    font-weight: bold;
    font-size: 30px;
    color: var(--main-color);
    margin: 0 0 60px;  
    text-align: center;
}

.contact h2::after {
    content: '';
/*    width: 300px;*/
    width: 125px;
    height: 2px;
    transform: translate(-50%,-50%);
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    margin-top: 40px;
}

.contact form {
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

.contact form .left {
    float: left;
    width: 49%;
}

.contact form .right {
    float: right;
    width: 49%;
}

@media(max-width: 767px) {
    .contact form .left,
    .contact form .right {
        float: none;
        width: 100%;
    }
}

.contact form input:not([type="submit"]),
.contact form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #CCC;
    border-radius: 10px;
    background-color: rgba(218,218,218,0319);
}

.contact form input:not([type="submit"]):focus,
.contact form textarea:focus {
    outline: 1px solid var(--main-color);
}

.contact form input {
    height: 40px;
}

.contact form textarea {
    height: 150px;
}

.contact form input[type="submit"] {
    padding: 10px;
    width: 100%;
    border-color: transparent;
    background-color: var(--main-color);
    color: #FFF;
    cursor: pointer;
    font-weight: bold;
}

.contact form textarea:focus::-webkit-input-placeholder,
.contact form input:not([type="submit"]):focus::-webkit-input-placeholder {
    opacity: 0;
    transition: .3s;
}

.contact form textarea:focus::-ms-input-placeholder,
.contact form input:not([type="submit"]):focus::-ms-input-placeholder {
    opacity: 0;
    transition: .3s;
}

.contact form textarea:focus::placeholder,
.contact form input:not([type="submit"]):focus::placeholder {
    opacity: 0;
    transition: .3s;
}

 /* End   Contact US */


 /* Start Footer */
.footer {
    background-color: #343056;
    /*height: 450px;*/
    color: #EEE;
    margin-top: 60px;
    padding: 60px 160;
}

.footer .logo-area {
    /*background-color: yellow;*/
    text-align: center;
    width: 45%;
}

.footer .logo-area img {
    width: 160px;
    height: 80px;
    margin-bottom: 30px;
}

.footer .second {

}

.footer .second .contacts {
    /*text-align: center;*/
}

.footer .second .title span {
    font-size: 25px;
    font-family: var(--FontBold);
    font-weight: bold;
    margin: 0 0 12px;
    color: #fef8bc;
}

.footer .second .contacts-texts span {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.footer-social-media-icons {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: red; */
    padding: 20px 0; /* إضافة تباعد عمودي */
}

.footer-social-media-icons ul {
    list-style: none;
    display: flex;
    gap: 15px; /* لتباعد مناسب بين الأيقونات */
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.footer-social-media-icons ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-media-icons ul li a {
    text-decoration: none;
}

.footer-social-media-icons i {
    width: 40px; /* حجم أيقونة مناسب */
    height: 40px;
    background-color: #fef8bc;
    border-radius: 50%;
    font-size: 24px; /* تكبير حجم الأيقونة */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fef8bc;
}

.footer-social-media-icons i:hover {
    transform: scale(1.1);
}

.footer-social-media-icons i.fa-instagram,
.footer-social-media-icons i.fa-whatsapp {
    /*color: black;*/
}

.footer-social-media-icons i.fa-youtube,
.footer-social-media-icons i.fa-snapchat,
.footer-social-media-icons i.fa-linkedin-in,
.footer-social-media-icons i.fa-x-twitter,
.footer-social-media-icons i.fa-facebook-f {
    background-color: #fef8bc;
}




.footer .circles {
    margin-top: 15px;
    display: inline-flex;
}

.footer .circles .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    background-color: white;
    margin: 3px;
}

.footer .links {
    text-align: center;
}

.footer .links ul {
    list-style: none;
}

.footer .links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
}