body {
    margin: 0;
    font-family: Montserrat;
    overflow-x: hidden;
    content: var(--device-size);

}
#menu-icon{
    /* font-size: 2vw; */
    cursor: pointer;
    background-color: #ffffff;
    padding: 1%;
    position: fixed;
    /* display: flex; */
    height: fit-content;
    z-index: 200;   
    right: 0;
    left: auto;
}
/* .icon{
    width: 5.5vw;
    height: 4vh;
} */

#menu{
    /* padding: 0.2vh 0.2vw 0.2vh 0.2vw; */
    color: #181360;
}
/* تنسيق الأيقونات داخل القائمة */
#menu-icons {
    display: flex;
    justify-content: space-around;
    padding: 1vw;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* الانعكاس */
}
#menu-icons-theme{
    display: flex;
    justify-content: space-around;
    padding: 1vw;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* الانعكاس */
}
#navbar {
    position: fixed;
    top: 0;
    height: 100vh;
    width: fit-content;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 10vh;
    transition: transform 0.3s ease; /* تأثير الانزلاق */
    z-index: 102;
    right: 0;
    left: auto;
    /*direction: rtl; */
  }
  /* الوضع الافتراضي - مخفية */
.hidden-right {
    transform: translateX(100%); /* مخفية خارج الشاشة من اليمين */
  }
.hidden-left {
    transform: translateX(-100%); /* مخفية من اليسار */
  }
  #navbar a {
    padding: 1vw;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* الانعكاس */
  }
  
  /* عند فتح القائمة */
.show {
    transform: translateX(0); /* تدخل إلى الشاشة */
}



/* small_laptop */
body[data-size="small_laptop"][data-lang="en"][data-mode="day"] #section1{
    background-image: url("../images/tab_english_day.svg");
}
body[data-size="small_laptop"][data-lang="en"][data-mode="night"] #section1{
    background-image: url("../images/tab_english_night.svg");
}
body[data-size="small_laptop"][data-lang="ar"][data-mode="day"] #section1{
    background-image: url("../images/tab_arabic_day.svg");
}
body[data-size="small_laptop"][data-lang="ar"][data-mode="night"] #section1{
    background-image: url("../images/tab_arabic_night.svg");
}

/* تابلت  عرض ضعف الطول*/
body[data-size="tablet"][data-lang="en"][data-mode="day"] #section1{
    background-image: url("../images/tab_english_day.svg");
}
body[data-size="tablet"][data-lang="en"][data-mode="night"] #section1{
    background-image: url("../images/tab_english_night.svg");
}
body[data-size="tablet"][data-lang="ar"][data-mode="day"] #section1{
    background-image: url("../images/tab_arabic_day.svg");
}
body[data-size="tablet"][data-lang="ar"][data-mode="night"] #section1{
    background-image: url("../images/tab_arabic_night.svg");
}
/*  تابلت الطول ضعف العرض*/
body[data-size="tablet2"][data-lang="en"][data-mode="day"] #section1{
    background-image: url("../images/tablet_english_day.svg");
}
body[data-size="tablet2"][data-lang="en"][data-mode="night"] #section1{
    background-image: url("../images/tablet_english_night.svg");
}
body[data-size="tablet2"][data-lang="ar"][data-mode="day"] #section1{
    background-image: url("../images/tablet_arabic_day.svg");
}
body[data-size="tablet2"][data-lang="ar"][data-mode="night"] #section1{
    background-image: url("../images/tablet_arabic_night.svg");
}
/* موبايل */
body[data-size="mobile"][data-lang="en"][data-mode="day"] #section1{
    background-image: url("../images/mobile_english_day.svg");
}
body[data-size="mobile"][data-lang="en"][data-mode="night"] #section1{
    background-image: url("../images/mobile_english_night.svg");
}
body[data-size="mobile"][data-lang="ar"][data-mode="day"] #section1{
    background-image: url("../images/mobile_arabic_day.svg");
}
body[data-size="mobile"][data-lang="ar"][data-mode="night"] #section1{
    background-image: url("../images/mobile_arabic_night.svg");
}


/* format square*/
body[data-size="square"][data-lang="en"][data-mode="day"] #section1{
    background-image: url("../images/squar_english_day.svg");
}
body[data-size="square"][data-lang="en"][data-mode="night"] #section1{
    background-image: url("../images/squar_english_night.svg");
}
body[data-size="square"][data-lang="ar"][data-mode="day"] #section1{
    background-image: url("../images/squar_arabic_day.svg");
}
body[data-size="square"][data-lang="ar"][data-mode="night"] #section1{
    background-image: url("../images/squar_arabic_night.svg");
}

/* format rect*/
body[data-size="rect"][data-lang="en"][data-mode="day"] #section1{
    background-image: url("../images/rect_english_day.svg");
}
body[data-size="rect"][data-lang="en"][data-mode="night"] #section1{
    background-image: url("../images/rect_english_night.svg");
}
body[data-size="rect"][data-lang="ar"][data-mode="day"] #section1{
    background-image: url("../images/rect_arabic_day.svg");
}
body[data-size="rect"][data-lang="ar"][data-mode="night"] #section1{
    background-image: url("../images/rect_arabic_night.svg");
}

#section1 {
    display: flex;   /* تفعيل flexbox */
    flex-direction: column;
    justify-content: center;   /* محاذاة العناصر أفقيًا في المنتصف */
    align-items: center; /* محاذاة العناصر عموديًا في المنتصف */
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
}
/* تنسيقات اللوغو الكامل   */

#section2 {
    height: 100vh;
    padding-top: 3vh;
    direction: ltr;
}

#section3 {
    height: 100vh;
    width:100%;
    background-size: cover;
    background-position: center;
    padding: 10vh 1vw 1vh 1vw;
    background-image: url("../images/tab_background_sec3.svg");
    direction: ltr;
    
}

#section4 {
    /* align-content: end; */
    height: 100vh;
    /*direction: rtl;*/
    /*text-align: rtl;*/
    padding-top: 10vh;
}

#logoFull {
    height: auto;
    align-content: center;
}

#normalSlogan {
    /* margin-top: 10vh; */
    line-height: 1.8;
    text-align: center;
    color: #181360;
    font-weight: regular; 
}

#section2 h1,
#section3 h1,
#section4 h1 {
    text-align: center;
    color: #181360;
    font-weight: bold;
    /* padding-top: 40px; */
    /* font-size: 1.7vw; */
}

#spanSlogan,
#section2 h1 span,
#section3 h1 span,
#section4 h1 span{
    color: #11CBCB;
    font-weight: bold
}

#navbar a:hover {
    color: #11CBCB; /* تغيير اللون عند مرور الفأرة */
    box-shadow: 0 2px 6px rgba(24, 19, 96, 0.9); /* الانعكاس */
}

/*  تنسيقات الوضع النهاري و الليلي */
/* تغيير لون الزر عند التحويل للوضع الليلي */

body.dark-mode #navbar #menu-icons-theme {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* الانعكاس */
}
#menu-icons-theme:hover {
    box-shadow: 0 2px 6px rgba(24, 19, 96, 0.9); /* الانعكاس */
}
body.dark-mode #navbar #menu-icons-theme:hover {
    box-shadow: 0 2px 6px rgba(17, 203, 203, 1); /* الانعكاس */
}
body.dark-mode #navbar #menu-icons{
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); 
}
#menu-icons:hover {
    box-shadow: 0 2px 6px rgba(24, 19, 96, 0.9); /* الانعكاس */
}
body.dark-mode #navbar #menu-icons:hover {
    box-shadow: 0 2px 6px rgba(17, 203, 203, 1); /* الانعكاس */
}


/* إخفاء أيقونة القمر في الوضع النهاري */
.moon-icon {
    display: none;
}

#footer a {
    text-decoration: none;
    color: #181360;
}
#footer p a:hover {
    color: #11CBCB;
    font-weight: 500;
}

/*////////////////////////         إعدادات الوضع الليلي          ///////////////////////////////////*

/* إظهار أيقونة القمر وإخفاء أيقونة الشمس في الوضع الليلي */
body.dark-mode .sun-icon {
    display: none;
}

body.dark-mode .moon-icon {
    display: inline;
}

body.dark-mode {
    background-color: #051325;
    color: white;
}

body.dark-mode #navbar {
    background-color: #051325;
}
body.dark-mode #menu-icon{
    background-color: #051325; 
}
body.dark-mode #menu{
    color: #fff; 
}
body.dark-mode #navbar a {
    color: rgb(255, 255, 255);
}

body.dark-mode #navbar a:hover {
    color: #11cbcb;
    box-shadow: 0 2px 6px rgba(17, 203, 203, 1);
}
body.dark-mode #navbar a {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* الانعكاس */
}
body.dark-mode #menu-icons {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* الانعكاس */
}
body.dark-mode #logoFull {
    content: url('../images/logo_dark_mode.png');
}

body.dark-mode #normalSlogan {
    color: white;
}

body.dark-mode #section2 h1,
body.dark-mode #section3 h1,
body.dark-mode #section4 h1 {
    color: white;
}
body.dark-mode .testimonial .nav-btn{
    background-color: #11CBCB;
}

body.dark-mode footer p {
    color: white;
}

body.dark-mode #footer p a{
    color: #fff;
}
body.dark-mode #footer p a:hover {
    color: #11CBCB;
}
/*////////////////////////        language         ///////////////////////////////////*/

/* تصحيح اتجاه الأسهم عند RTL */
html[dir="rtl"] .swiper-button-next {
    left: 10px;
    right: auto;
    transform: rotate(180deg);
}

html[dir="rtl"] .swiper-button-prev {
    right: 10px;
    left: auto;
    transform: rotate(180deg);
}
/*////////////////////////        section6        ///////////////////////////////////*/
#section5{
    height: 50%;
    width: 100vw;
    margin-top: 10vh;
    /* align-content: end; */
    background-color: rgb(5, 19, 37, 1);
    direction: ltr;
}

.container-social-media{
    width: 100%;
    height: 50%;
    display: flex;
    padding-top: 2%;
    align-items: center;
    justify-content: center;
}
.social-media{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 10%;
    padding: 1vh 1vw 1vh 1vw;
}
.image-logo {
    flex: 1;
    display: flex;
    order: 1;
    width: 100%;
    height: 20%;
    align-items: center;
    justify-items: center;
    justify-content: center;
}
.icon-social-media{
    flex: 1;
    order: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    column-gap: 1vw;
    width: 90vw;
}
.icon-social-media a i {
    color: #ffffff;
    font-size: 1.5vw;
}
.txt{
    flex: 1;
    display: flex;
    order: 2;
    align-items: center;
    justify-items: center;
    justify-content: center;
    color:#fff;
}
.icon-social-media a i:hover{
    color: #11cbcb;
}
#image-logo{
    width: 10%;
    height: 100%;
}
body[data-lang="ar"] #syria{
    width: fit-content;
    height: fit-content;
    padding: 1vw 1vw 1vw 1vw;
    box-shadow: 0 2px 6px rgba(17, 203, 203, 0.7); 
    direction: rtl;
    text-align: rtl;
}
body[data-lang="ar"] #uae{
    width: fit-content;
    height: fit-content;
    padding: 1vw 1vw 1vw 1vw;
    box-shadow: 0 2px 6px rgba(17, 203, 203, 0.7); 
    direction: rtl;
    text-align: rtl;
}

body[data-lang="en"] #syria{
    width: fit-content;
    height: fit-content;
    padding: 1vw 1vw 1vw 1vw;
    box-shadow: 0 2px 6px rgba(17, 203, 203, 0.7); 
    direction: ltr;
    text-align: ltr;
}
body[data-lang="en"] #uae{
    width: fit-content;
    height: fit-content;
    padding: 1vw 1vw 1vw 1vw;
    box-shadow: 0 2px 6px rgba(17, 203, 203, 0.7); 
    direction: ltr;
    text-align: ltr;
}
.footer{
    height: 97%;
    align-content: end;
} 
