@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
   --white-color :#fff;
    --black-color : #000 ;
    --prim-color : #358294 ;
    --sec-color : #9ec3cc ;

    --font-size-xxs : 0.5rem ;
    --font-size-xs : 0.7rem ;
    --font-size-s : 0.9rem ;
    --font-size-n : 1rem ;
    --font-size-m : 1.12rem ;
    --font-size-l : 130% ;
    --font-size-xl : 1.8rem ;
    --font-size-xxl : 2.3rem ;

    --font-weight-normal :400;
    --font-weight-medium :500 ;
    --font-weight-semibold : 600 ;
    --font-weight-bold : 700 ;

    --border-radius-prim : 20px;
    --border-radius-s : 8px ;
    --border-radius-m : 30px ;
    --border-radius-circle : 50% ;

    --site-max-width : 1300px;

}
html {
  scroll-behavior: smooth;
}
/* Stylings for whole site */
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
img {
  width: 100%;
}
:where(section, footer) .section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}
section .section-title {
  text-align: center;
  padding: 60px 0 10px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}
section .section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  background: var(--sec-color);
  border-radius: var(--border-radius-s);
}
header {
    min-height: 100vh;
    width: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/homeheader.jpg);
background-size: cover;
    position: relative;
}
header .navbar {
  display: flex;
  padding: 20px;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  max-width: var(--site-max-width);
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
header .logo {
    width: 40%; /* Adjust size of the logo */
    height: auto;
    position: absolute; /* Position it absolutely */
    top: 30%; 
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); 
}
.navbar img {
    width: 120px;
    height: auto;
    padding-left: 30px;
}
.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}
.navbar .nav-menu {
  gap: 10px;
  display: flex;
}
.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}
.navbar .nav-menu .nav-link:hover {
  color: var(--prim-color);
  background: var(--sec-color);
}
.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}
.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}
/* ******************************************************************************************** */
/* About section + home styling */
.header-about {
    min-height: 50vh;
    width: 100%;
   background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(images/aboutheader.png);
    background-size: cover;
    position: relative;
}
.about-section {
  padding: 4% 5%;
  background: var(--white-color);
}
.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
.about-section .about-image-wrapper .about-image {
  height: 445px;
  width: 460px;
  aspect-ratio: 1/1;
  object-fit: cover;
border-radius: var(--border-radius-circle);
align-items: flex-start;
}

.about-section .about-details {
  max-width: 90%;
}
.text-about-home{
    padding-top: 6%;
    text-align: center;

    
}
.about-section .about-details .section-title {
  padding: 0;
}
.about-section .about-details .text {
  line-height: 30px;
  margin: 5% 0 5%;
  text-align: center;
  font-size: var(--font-size-m);
}
.learnText {
  display: flex;
  gap: 25px;
  justify-content: center;
    color: var(--prim-color);

}
.learnText:hover {
   text-decoration: underline;
}
.link-title {
    color: var(--white-color);
    position: absolute; /* Position it absolutely */
    top: 50%; 
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); 
    font-size: var(--font-size-xxl);
}
/* التنسيقات الجديدة (بـ -mod) */
.about-section {
  padding: 4% 5%;
  width: 100%;
}
.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
.about-section .about-image-wrapper {
  width: 40%;
  display: flex;
  justify-content: flex-end; /* This will push the image to the right */
}
.about-section .about-image-wrapper .about-image-mod {
  height: 450px;
  width: 100%; /* Changed from 60% to 100% to use full container width */
  max-width: 600px; /* Optional: set a max-width if needed */
  object-fit: cover;
  border-radius: var(--border-radius-m);
}

.about-section .about-details-mod {
  width: 50%; /* Set to 50% to take half the space */
}
.about-section .about-details-mod .text-mod {
  line-height: 30px;
  margin: 2% 0 5%;
  text-align: left; /* Changed from center to left */
  font-size: var(--font-size-m);
}

/* ******************************************************************************************** */
/* Contact home */
.contact-cta {
    position: relative;
    padding: 2% 6% 5% 6% ;
}

.cta-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/contact.png); /* استخدم صورة الخلفية المطلوبة */
    background-size: cover;
    width: 100%;
    height: 350px; /* ارتفاع القسم */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
      border-radius: var(--border-radius-m);

}
.cta-content {
    color: var(--white-color);
    max-width: 600px;
}

.cta-title {
    font-size: var(--font-size-xl);
    margin-bottom: 10%;
}

.cta-button {
    padding: 10px 20px;
    background: var(--prim-color);
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--sec-color);
    color: var(--prim-color);
}
/* ******************************************************************************************** */
/* Menu section styling */
.menu-section {
  color: var(--white-color);
  background: var(--dark-color);
  padding: 50px 0 100px;
}
.menu-section .menu-list {
  display: flex;
  gap: 110px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.menu-section .menu-list .menu-item {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: calc(100% / 3 - 110px);
}
.menu-section .menu-list .menu-item .menu-image {
  width: 83%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  object-fit: contain;
}
.menu-section .menu-list .menu-item .name {
  margin: 12px 0;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
}
.menu-section .menu-list .menu-item .text {
  font-size: var(--font-size-m);
}
/* ******************************************************************************************** */
/* Services styling */
.header-services {
    min-height: 50vh;
    width: 100%;
   background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(images/servicesheader.png);
    background-size: cover; 
    position: relative;
}
.services-section {
  padding: 4% 5%;
  width: 100%;
  text-align: center;
}

.services-section .section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section .services-details-mod {
  padding: 0 15%;
}

.section-title-mod {
  font-size: var(--font-size-xxl);
  margin-bottom: 1rem;
  color: var(--black-color);
}

.services-subtitle-mod {
  font-size: var(--font-size-m);
  color: #666;
  margin-bottom: 3rem;
}

.services-text-mod {
  line-height: 1.8;
  font-size: var(--font-size-m);
  color: var(--black-color);
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.sales-locations-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.sales-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* تنسيقات الصور */
.map-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-m);
    object-fit: contain;
}

.networks-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-m);
}
/* العنوان الجديد الخاص بـ Sales Locations */

.sales-locations-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.sales-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-box {
    background: var(--sec-color);
    border-radius: var(--border-radius-m);
    padding: 20px;
    text-align: center;
}

.long-box {
    width: 100%;
}

.small-boxes {
    display: flex;
    gap: 15px;
}

.small-box {
    flex: 1;
}

.stat-number {
    color: var(--prim-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--white-color);
    font-size: var(--font-size-m);
}
.services-details-sales {
    width: 100%;
    text-align: center; /* تغيير من center إلى right */
    padding-top: 5%;
}

.sales-title {
    text-align: center; /* العنوان لليمين */
    margin-bottom: 20px;
}

.sales-text {
    text-align: center; /* النص لليمين */
    line-height: 30px;
    
}
.sales-locations-wrapper {
    display: flex;
    gap: 50px;
    align-items: center; /* تغيير من flex-start إلى center */
}
/* ******************************************************************************************** */
/* Contact section styling */
.header-contact {
    min-height: 50vh;
    width: 100%;
   background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(images/contact.png);
    background-size: cover;
    position: relative;
}
.section-title-con {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
  color: var(--black-color);
}
.contact-section {
  padding: 50px 0 10px;
}

.contact-section .section-content {
  padding-inline: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}
.contact-section .contact-info-list .contact-info i {
  font-size: var(--font-size-m);
}
.contact-section .contact-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 10px;
  font-size: var(--font-size-s);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--medium-gray-color);
}
.contact-form .form-input {
  border-radius: 20px !important; /* زوايا دائرية */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important; /* ظل خفيف */
  border: 1px solid #ddd !important; /* حدود خفيفة */
  padding: 15px !important; /* مساحة داخلية أكبر */
  transition: all 0.3s ease !important; /* تأثير حركي */
}
.contact-section .contact-form {
  max-width: 80%;
}
.contact-section .contact-form textarea.form-input {
  height: 200px;
  padding: 12px;
  resize: vertical;
}
.contact-section .contact-form .form-input:focus {
  border-color: var(--sec-color);
}
.contact-section .contact-form .submit-button {
  padding: 10px 28px;
  outline: none;
  margin-top: 10px;
  margin-bottom: 50px;
  border: 1px solid var(--prim-color);
  border-radius: var(--border-radius-m);
  background: var(--prim-color);
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}
.contact-section .contact-form .submit-button:hover {
  color: var(--prim-color);
  background: transparent;
}
/* تنسيقات جديدة لقسم الاتصال */
.contact-info-wrapper {
    width: 45%; /* تحديد عرض ثابت */
}
.contact-form-wrapper {
    width: 45%; /*/* تأكد من أن الحاوية تأخذ نصف العرض على الأقل */
}

.form-container {
    width: 100%;
    max-width: 100%; /* تأكد من أن النموذج يأخذ كامل العرض المتاح */
}

.contact-form {
    width: 100%;
    max-width: 100%; /* النموذج يأخذ كامل عرض الحاوية */
}

.contact-form .form-input {
    width: 100%; /* الحقول تأخذ كامل عرض النموذج */
    box-sizing: border-box; /* تضمن أن الحشو لا يزيد العرض */
}
.left-align {
    text-align: left;
    margin-bottom: 30px;
}

.right-align {
    text-align: left;
    margin-bottom: 30px;
}

.contact-info-list {
    padding-left: 0;
}
.contact-info #icon-address, #icon-email, #icon-phone, #icon-whats ,#icon-pdf{
  color: var(--prim-color);
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--prim-color);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: var(--prim-color);
}
.download-section {
  text-align: center;
  margin: 40px auto;
  max-width: 500px;
  color: #111;
}

.download-section h2 {
  font-size: var(--font-size-l);
  margin-bottom: 20px;
  padding-top: 5%;
}

.download-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 1.5px solid var(--prim-color);
  border-radius: var(--border-radius-prim);
  text-decoration: none;
  color: var(--prim-color);
  font-size: var(--font-size-m);
  transition: background 0.3s, color 0.3s;
}

.download-button .download-icon {
  font-size: var(--font-size-m);
  margin-right: 10px;
}

.download-button:hover {
  background: var(--prim-color);
  color:  var(--white-color);
}
/* ********** phone number *********8 */


.form-input-num{
 background-color: var(--prim-color); /* تغيير اللون الأصفر إلى لون الموقع الأساسي */
  border-radius: 20px !important; 
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important; /* ظل خفيف */
  border: 1px solid #ddd !important; /* حدود خفيفة */
  padding: 18px 12px!important; /* مساحة داخلية أكبر */
  transition: all 0.3s ease !important; /* تأثير */
  width: 40% !important; /* تحديد عرض ثابت */
  height: 52px;
  display: flex;
  align-items: center;

}


.selected-option strong {
 padding-right: 40px;
 padding-left: 5px;
}
.select-box input {
    width: 100%;
    padding: 1rem .6rem;
    font-size:var(--font-size-m);
    
    border: .1rem solid transparent;
    outline: none;
}

input[type="tel"] {
    border-radius: 0 .5rem .5rem 0;
}

.select-box input:focus {
    border: .1rem solid var(--primary);
}

.selected-option {
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: space-between;
}


.selected-option div{
    position: relative;
    width: 15rem;
    padding: 0 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
}

.selected-option div::after{
    position: absolute;
    content: "";
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: .6rem;
    height: .6rem;
    border-right: .12rem solid  var(--white-color);
    border-bottom: .12rem solid  var(--white-color);

    transition: .2s;
}

.selected-option div.active::after{
   right: 2rem;
    top: 56%;
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    bottom: -10rem;
    width: 25%;
    background-color: var(--white-color);
    border-color: var(--prim-color);
    box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: var(--border-radius-prim); 
    display: none;
}

.select-box .options.active {
    display: block;
}

.select-box .options::before {
    position: absolute;
    content: "";
    right: 1rem;
    top: 1.2rem;
    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-bottom-color: var(--prim-color);
    display: none;
}

input.search-box {
    color:var(--prim-color);
    border-radius: .5rem .5rem 0 0;
    padding: 1.4rem 1rem;
}

.select-box ol {
    list-style: none;
    max-height: 15rem;
    overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
    width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
        margin-top: 50px;
    width: 0.4rem;
    height: 3rem;
    background-color: var(--prim-color);
    border-radius: .4rem;
}

.select-box ol li {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.select-box ol li.hide {
    display: none;
}

.select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #eee;
}

.select-box ol li:hover {
    background-color: var(--prim-color);
    border-radius: var(--border-radius-m);
}

.select-box ol li .country-name {
    margin-left: .4rem;
}
/*******************************************************************************/
/* Footer section styling */

.text-foot, .text-foot *{
    font-size: var(--font-size-s);
   color: var(--white-color) !important;
}
.footer-section {
  padding: 20px 0;
  background: var(--prim-color);
}
.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-section .section-content .text{
    color: var(--white-color);
}
.footer-logo {
    width: 120px;
    height: auto;
    padding-left: 30px;
} 
/* Responsive media query code for max width 1024px */
@media screen and (max-width: 1024px) {
  .menu-section .menu-list {
    gap: 60px;
  }
  .menu-section .menu-list .menu-item {
    width: calc(100% / 3 - 60px);
  }
}
/* ********************************************************************************** */
/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
  }
  header {
     min-height: 50vh;
  }
  body.show-mobile-menu {
    overflow: hidden;
  }
  body.show-mobile-menu header::before {
    content: "";
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
  }
  .navbar :is(#menu-open-button, #menu-close-button) {
    font-size: var(--font-size-l);
    display: block;
  }
  .navbar :is(#menu-open-button, #menu-close-button):hover {
    color: var(--sec-color) !important;
  }
  .navbar #menu-open-button {
    color: #fff;
  }
  .navbar .nav-menu #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }
  
  .navbar .nav-menu {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    transition: left 0.2s ease;
  }
  body.show-mobile-menu .nav-menu {
    right: 0;
  }
  .navbar .nav-menu .nav-link {
    display: block;
    margin-top: 17px;
    padding: 10px 22px;
    color: var(--dark-color);
    font-size: var(--font-size-l);
  }
  .cta-background {
    height: 200px; /* ارتفاع القسم */
  }
  .cta-title {
    font-size: var(--font-size-m);
}
.section-content-mod {
    flex-direction: column;
}
    
    .about-image-mod {
        /* width: 100%;
        max-width: 300px;
        height: auto; */
        display: none;
    }
    
    .about-details-mod {
        order: 2;
    }
  
  .about-section .section-content {
    flex-direction: column;
  }
  
  .about-image {
    display: none;
  }
  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    max-width: 250px;
  }
  .menu-section .menu-list {
    gap: 30px;
  }
  .menu-section .menu-list .menu-item {
    width: calc(100% / 2 - 30px);
  }
  .menu-section .menu-list .menu-item .menu-image {
    max-width: 200px;
  }
  .contact-section .section-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .left-align,
    .right-align {
        text-align: center;
    }
    
    .contact-form-wrapper {
        width: 100%;
    }
    .contact-info-wrapper{
        width: 100%;
    }
   .contact-info-list{
    padding-left: 20%;
   }
    
    .contact-section .contact-form {
        max-width: 100%;
    }
  .contact-section .section-content {
    align-items: center;
    flex-direction: column-reverse;
  }


.download-button  {
  font-size: var(--font-size-s);
}

.about-section .about-details-mod {
  width: 95%;
}
  .sales-locations-wrapper {
        flex-direction: column;
    }
    
    .services-image-wrapper {
        order: -1; /* لجعل صورة الخريطة تظهر أولاً */
    }
    
    .map-image {
        max-width: 80%;
        margin-bottom: 20px;
    }
    
    .networks-image {
        max-width: 100%;
    }
    .header-services {
    min-height: 50vh;
    width: 100%;
   background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(images/servicesheader2.png);
    background-size: cover; 
    position: relative;
}
  .services-image-sales{
   display: none;
  }
.services-details-sales {
    width: 100%;
    text-align: center; /* تغيير من center إلى right */
    padding-right: 20%;
    padding-top: 10%;
}

.sales-title {
    text-align: center; /* العنوان لليمين */
    margin-bottom: 20px;
}

.sales-text {
    text-align: center; /* النص لليمين */
    line-height: 30px;
    font-size: var(--font-size-s);
}
.text-foot, .text-foot *{
    font-size: var(--font-size-xs);
   color: var(--white-color) !important;
}
}
/* Responsive media query code for max width 640px */
@media screen and (max-width: 640px) {
    header {
    min-height: 30vh;
}
.text-about-home{
    padding-top: 6%;
text-align: center;
.header-services {
    min-height: 50vh;
    width: 100%;
   background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(images/servicesheader2.png);
    background-size: cover; 
    position: relative;
}

}
  .navbar img {
    width: 80px;
    height: auto;
    padding-left: 10px;
}
#menu-close-button {
   color: var(--black-color);
  }
  .menu-section .menu-list .menu-item,
  .gallery-section .gallery-list .gallery-item {
    width: 100%;
  }
  .menu-section .menu-list {
    gap: 60px;
  }
.about-image {
    display: none;
  }
.select-box .options {
    width: 70%;
    font-size: .8rem;
}
  .contact-section .section-content {
      padding: 0px 20px 0px 20px;
    align-items: start;
    flex-direction: column-reverse;
  }
.about-section .about-details-mod {
  width: 95%;
}
.services-subtitle-mod {
  font-size: var(--font-size-m);
  color: #666;
  margin-bottom: 1rem;
}
.stats-boxes{
    padding-left: 15%;
}
.sales-title ,.sales-text{
   
    padding-left: 8%;
}
section .section-title {
  text-align: center;
  padding: 0px 0 5px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}
  .services-image-sales{
   display: none;
  }
    .services-details-sales {
    width: 100%;
    text-align: center; 
    padding-left: 10%;/* تغيير من center إلى right */
}

.sales-title {
    text-align: center; /* العنوان لليمين */
    margin-bottom: 20px;
}

.sales-text {
    text-align: center; /* النص لليمين */
    line-height: 30px;
    font-size: var(--font-size-s);
}

.text-foot, .text-foot *{
    font-size: var(--font-size-xxs); /* xxs */
    color: var(--white-color) !important;
}

.footer-logo {
    width: 80px;
    height: auto;
    padding-left: 10px;
} 
}
@media (max-width: 768px) {
    .text-foot, .text-foot * {
        color: var(--white-color) !important;
    }
    .header-services {
    min-height: 50vh;
    width: 100%;
   background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(images/servicesheader2.png);
    background-size: cover; 
    position: relative;
}

}