/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

@font-face {
  font-family: "SF Arabic Rounded";
  src: url('../fonts/SFArabicRounded.ttf');
}
@font-face {
  font-family: 'SF Arabic';
  src: url('../fonts/SFArabic-Regular.woff2') format('woff2'),
      url('../fonts/SFArabic-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #6A9CB0; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #313336;  /* The default color of the main navmenu links */
  --nav-hover-color: #6A9CB0; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #6A9CB0; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "SF Arabic Rounded";
  direction: rtl;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  padding: 20px 0px;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 0 32px 8px rgba(102, 102, 102, 0.08);
  border-bottom: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);
  background: var(--Colors-Gray-White, #FFF);
 
}
#header-container{
gap: 10px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 77px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 1199px) {
  .header .logo img {
    max-height:  50px;
  }
  .header .vision{
    order: 3;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }
  .vision img{
    width: 48px;
    height: 32px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
  #header-container{
    justify-content: space-between;
  }
}




.header-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}
.header .whatsapp,
.header .whatsapp:focus {
  display: flex;
  padding: 12px 12px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Primary-Extra-Light, #E1EBEF);
  background: var(--Primary-Off-White, #F3F7F9);
justify-content: center;
align-items: center;

}
.header .whatsapp .lang-text{
  color: var(--Primary-Default, #6A9CB0);
  text-align: right;

  /* English/Sub Headings/SH3 */
  font-family: "Clash Display Variable";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.vision{
  display: flex;
  padding: 12px;
  align-items: center;
 

}
.translate {
display: flex;
padding: 12px 30px;
align-items: center;
gap: 4px;
border-radius: 8px;
background: var(--Primary-Default, #6A9CB0);
}

.translate img {
  margin-right: 8px; /* اضبط الهامش حسب الحاجة */
}

.translate-text {
  color:#FFF;
  text-align: right;
  font-family: "SF Arabic Rounded";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 30px 0 0; /* تغيير الهامش */
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  @media (max-width: 1199px) {
    .header .logo {
    order: 2; /* تحديد الترتيب */
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

  .header .btn-getstarted {
    order: 2;
    margin: 0 0 0 15px; /* تغيير الهامش */
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;

  }
}

.scrolled .header {

  box-shadow: 0 0 32px 8px rgba(102, 102, 102, 0.08);
}

/* Index Page Header
------------------------------*/
.index-page .header {

  border-bottom: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);

/* Grey */
box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #d3e3fd;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-left: auto !important;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap:5px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-align: right;
    font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;

  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #6A9CB0;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .bi-x::before{
    color: #000;
  }
  .mobile-nav-toggle {
    order: 1;
    color: #6A9CB0;
    font-size:50px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;

padding: 3px;
border-radius: 10px;
border: 1px solid var(--Primary-Extra-Light, #E1EBEF);
background: var(--Primary-Off-White, #F3F7F9);
  }


  .navmenu {
    padding: 0;
    z-index: 9997;
 
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #f3f7f9;;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
 
  

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: "SF Arabic Rounded";
  
    display: flex;
    align-items: center;
  
    white-space: nowrap;
    transition: 0.3s;
    justify-content: center;

   
text-align: right;
font-size: 20px;
font-style: normal;
font-weight: 711;
line-height: normal;


  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
/* أيقونات الموبايل */
.mobile-icons {
  margin-top: 15%;
  padding-top: 15px;


  text-align: center;
}

.mobile-icons-container {
  display: flex;
  justify-content: space-around;
  gap: 20px; /* مسافة بين الأيقونات */
}


}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffff;
  background-color: #F4F4F4;
  font-size: 14px;
  border-bottom: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);

  position: relative;

}

.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-about{
display: flex
;
    flex-direction: column;

    gap: 24px;
}
.footer .footer-about .logo {
  line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;

}


.footer .footer-about p {
  color: var(--Colors-Gray-Darker, #333);
  text-align: right;
  font-family: "SF Arabic Rounded";
  font-size: 14px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
}
.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "SF Arabic Rounded";
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: "SF Arabic Rounded";
}
.footer .social-links  {
  margin-top: 0 !important;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #6A9CB0;
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
  background-color: #6A9CB0;
}

.footer .social-links a:hover {
  color: #333;
  border-color: #6A9CB0;
}

.footer h4 {
  position: relative;
  padding-bottom: 12px;

text-align: right;
font-family: "SF Arabic Rounded";
font-size: 20px;
font-style: normal;
font-weight: 711;
line-height: normal;
color: var(--Primary-Default, #6A9CB0);


}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  line-height: 1;

color: var(--Colors-Gray-Darker, #333);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.footer .footer-links ul .icons{
padding-left: 10px;
}

.footer .footer-links ul a:hover {
  color:  #6A9CB0;;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}



/* صورة 2030 أسفل */
.footer-2030-logo {
  position: absolute;
  left: 120px;
  bottom: 37px;
}



/* تحسين المظهر على الشاشات الصغيرة */
@media (max-width: 1199px) {


  .footer-2030-logo{
    position: absolute;
    left: 106px;
    bottom: 3px;
  }
}



.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.copyright {
  background-color: #F4F4F4;
  display: flex;

  flex-direction: column;
  align-items: flex-start;

}

.copyright p {
color: var(--Black-Full, #000);
text-align: center;
font-family: "SF Arabic Rounded";
font-size: 14px;
font-style: normal;
font-weight: 511;
line-height: normal;
display: flex;
height: 22px;
flex-direction: column;
justify-content: flex-end;
align-self: stretch;
margin-top: 1rem;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.map-container{
width: 80%;
}
@media (max-width: 1199px) {
  .map-container{
    width: 50%;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color:#6A9CB0;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color:#6A9CB0;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
#scroll-call-top,
#scroll-watsapp-top {
  position: fixed; /* ثابت في الشاشة */

  left: 15px; /* محاذاة إلى اليسار */
  z-index: 9999; /* يظهر فوق كل العناصر */
  width: 44px;
  height: 44px;
  border-radius: 50%; /* يجعل الزر دائري */
  background-color: #25d366; /* لون خلفية واتساب */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* ظل خفيف */
  display: none !important;  /* مخفي افتراضيًا */
  align-items: center;
  justify-content: center;
}
/* ✅ أيقونة الاتصال */
#scroll-call-top {
  bottom: 70px; /* أعلى أيقونة الواتساب */
  background-color: #25d366; /* لون أزرق */
}
#scroll-watsapp-top {
  bottom: 20px; /* في الأسفل */
  background-color: #25d366; /* لون أخضر */
}
#scroll-call-top img,
#scroll-watsapp-top img {
  width: 30px;
  height: 30px;
}


/* ✅ إظهار الزر فقط على الجوال */
@media (max-width: 1199px) {
/* ✅ تصميم الزر العائم على الجوال فقط */
#scroll-call-top,
  #scroll-watsapp-top {
    display: flex !important; /* يظهر فقط على الشاشات الصغيرة */
}

}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 1199px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {

  color: var(--Colors-Gray-Darkest, #111);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 30px;
font-style: normal;
font-weight: 711;
line-height: normal;
}
.page-title .breadcrumbs{
  border-radius: 12px;
  border: 1px solid var(--Accent-Turquoise, #00C1DE);
  background: var(--Colors-Gray-White, #FFF);
  color: var(--Accent-Turquoise, #00C1DE);
  text-align: right;

  font-family: "SF Arabic Rounded";
  font-size: 16px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
  padding: 12px;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);

  padding: 40px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {

  padding-bottom: 8px;
  position: relative;
  font-family: "SF Arabic Rounded";
  color: #111;
font-size: 32px;
font-style: normal;
font-weight: 711;
line-height: normal;
}


.section-title p {
  margin-bottom: 0;
  color: #666;
text-align: center;
font-family: "SF Arabic Rounded";
font-size: 20px;
font-style: normal;
font-weight: 400;

}
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 24px;

  }
  .section-title p {
    font-size:16px;
  }
  .section-title {
    padding-bottom: 30px;
  }
}
  

  

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* خلفية القسم */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex
;
    align-items: center;

      background-image: url('../img/BG\ \(4\).png');
      background-size: cover;
      background-position: center;

    
}



/* محتوى القسم */
.property-section {
  display: flex;
  align-items: center;
  justify-content:space-evenly;
  gap: 30px;
  z-index: 1;
  width: 100%;
}

.property-image-container {
  position: relative;
}

.property-image {
  width: 350px;
  border-radius: 20px;
}


/* الشارة العامة */
.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;


  padding: 8px 12px;
 
  font-family: 'SF Arabic Rounded', sans-serif;
 
  text-align: center;
  z-index: 10;
  border-radius: 12px;
background: var(--Colors-Gray-White, #FFF);
box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);

font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;
}

/* أيقونة الشارة */
.icon-badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* تخصيص ألوان الشارات */
.badge-1 {
  color: var(--Success-Default, #93D500);
}

.badge-2 {
  color: var(--Failure-Default, #E0592A);

}

.badge-3 {
  color: var(--Primary-Default, #6A9CB0);

}

/* الشارة الأولى: أعلى يمين */
.badge.badge-1 {
  top: 13%;
  right: -3%;
  transform: translate(50%, -50%);
}

/* الشارة الثانية: أعلى يسار */
.badge.badge-2 {
  top: 39%;
  left: 0%;
  transform: translate(-50%, -50%);
}

/* الشارة الثالثة: أسفل منتصف */
.badge.badge-3 {
  bottom: 44%;
  left: 109%;
  transform: translate(-50%, 50%);
}

/* تحسين الوضع على الشاشات الصغيرة */
@media (max-width: 1199px) {
  .badge {
    font-size: 12px;
    padding: 6px 10px;
  }

  .icon-badge img {
    width: 20px;
    height: 20px;
  }

  .badge.badge-1 {
    top: 22%;
    right: 23%;
  }

  .badge.badge-2 {
    top: 37%;
    left: 22%;
  }

  .badge.badge-3 {
    bottom: 40%;
    left: 85%;
  }
}


.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.heading-text {
  color: var(--Colors-Gray-Darkest, #111);
  text-align: right;
  font-family: "SF Arabic Rounded";
  font-size: 48px;
  font-style: normal;
  font-weight: 711;
  line-height: normal;
}

.cta-button {
  display: flex;

  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
background: var(--Primary-Default, #6A9CB0);
color: var(--Colors-Gray-White, #FFF);
text-align: right;
border: 1px solid #6A9CB0;
font-family: "SF Arabic Rounded";
font-size: 18px;
font-style: normal;
font-weight: 511;
line-height: normal
}

.cta-button:hover {
  background-color: #588A9E;
}
@media (max-width: 1199px) {
  .hero {
    margin-top: 94px;
    background-image: url('../img/BG\ \(3\).png');
    background-size: cover;
    background-position: center;
    
  }
  .index-page .header{
    border-bottom: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);

    /* Grey */
    box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);
  }
  .property-section {
    display: flex;
  
    flex-direction: column;
    justify-content: center;
    
    gap: 24px;
    align-self: stretch;
  }
 
  #mobileStyle
  {
    flex-direction: column-reverse !important;
    gap: 20px;
    align-items: center !important;
  }

    #herobutton {
        justify-content: center !important;
    }


}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}
.hero .text-content {

  display: flex;
flex-direction: column;
justify-content: center;

gap: 32px;
flex: 1 0 0;
}
.hero .text-content p{
  color: var(--Colors-Gray-Darker, #333);
  text-align: right;
  font-family: "SF Arabic Rounded";
  font-size: 48px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
  text-transform: capitalize;

}
.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

@media (min-width: 1199px) {
  .hero .hero-img {
    max-width: 600px;
  }

}

.hero .btn-get-started {
  color: var(--Colors-Gray-White, #FFF);
  font-family: "SF Arabic Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
  text-transform: capitalize;
  display: inline-block;
  
  border-radius: 12px;
    background: var(--Primary-Default, #0061FE);
    padding: 12px 32px;
}
@media (max-width: 1199px) {
  .hero .btn-get-started {
  padding: 15px 32px;
}
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  border-radius: 10px;
  padding: 10px 32px;
  transition: 0.5s;
  margin-right: 25px;
  color: #0061FE;
  font-weight: 511;
  font-family: "SF Arabic Rounded";
font-size: 18px;

background: rgba(255, 255, 255, 0.48);
 
}

.hero .btn-watch-video i {
  color: #0061FE;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-left: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1199px) {
  .hero h1 {
    color: var(--Colors-Gray-Darkest, #111);
text-align: right;

font-family: "SF Arabic Rounded";
font-size: 32px;
font-style: normal;
font-weight: 711;
line-height: normal;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
  .hero .text-content p {
  
    font-size: 30px;
    padding: 10px;
    
  }
  .hero .image-content img {
    width: 246.961px;
    height: 247.623px;
    flex-shrink: 0;
  }

}



/*--------------------------------------------------------------
# services-mic  Section
--------------------------------------------------------------*/

.featuresmic {
  background: var(--Primary-Off-White, #F3F7F9);
  padding: 40px 0;
}
.services-mic-grid {
  display: flex;
  flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 16px;
  
}

.service-mic {

  box-sizing: border-box;

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 12px;

  
}

.service-mic img {
  max-width: 100%;

  
}
.service-mic #Fatoora {
  width: 186.173px;
  height: 122px;
}
.service-mic h2 {
  color:  #111111;
  text-align: center;
  font-family: "SF Arabic Rounded";
  font-size: 20px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.service-mic p {
  color: var(--Colors-Gray-Dark, #666);
text-align: center;
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
/* Responsive Design */
@media (max-width: 1199px) {
  .services-mic-grid {
      flex-direction: column;
      align-items: center;
  }

  .service-mic {
      flex: 1 1 100%;
      margin-bottom: 20px;
  }
  .service-mic p {
    font-size: 14px;
  }
  .service-mic h2 {
    font-size: 18px;
  }


}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
  background:  #F3F7F9;
}
.clients .swiper-container {
  overflow: hidden;
  width: 100%;
}
.clients .swiper-wrapper{
  width:100%
}
.clients .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 96px;
  width: 140px !important; /* تثبيت عرض الشريحة */

  } 
.clients .swiper-slide img {
   max-width: 100%;
   height: auto;
   }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
 
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {

 
  color: var(--Primary-Default, #6A9CB0);


font-family: "SF Arabic Rounded";
font-size: 24px;
font-style: normal;
font-weight: 711;
line-height: normal;
}
.features-details .features-item hr {
  width: 16%;
  height: 8px;
  background: var(--Primary-Extra-Light, #E1EBEF);
  border-top: solid #E1EBEF;
  margin: 0rem 0 1rem 0;
  opacity: 1;
}
.features-details .features-item p {
  color: var(--Colors-Gray-Darker, #333);
  text-align: right;

  font-family: "SF Arabic Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
}

.features-details .features-item .more-btn {
  
  color: #fff;
 
  padding: 11px 32px;
  border-radius: 8px;
background: var(--Primary-Default, #6A9CB0);
}

.features-details .features-item .more-btn:hover {
  background-color: #6A9CB0;
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
 
  border: 1px solid #fff;
  height: 100%;
  padding: 30px;
  justify-content: space-around;
  align-items: flex-start;
display: flex;
padding: 48px;

gap: 24px;
align-self: stretch;
border-radius: 16px;


}
.services .header-service-item{
  display: flex;
  align-items: center;
  justify-content: space-between
}
.services .service-item .icon {
  
  border-radius: 10px;
  position: relative;
  margin-left: 0px;
 
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

}

.services .service-item h3 {
  color: var(--Colors-Gray-Darkest, #111);
  text-align: right;
 
  font-family: "SF Arabic Rounded";
  font-size: 24px;
  font-style: normal;
  font-weight: 711;
  line-height: normal;
}

.services .service-item p {
  color: var(--Colors-Gray-Darker, #333);
  text-align: right;

  font-family: "SF Arabic Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
margin-top: 10px;
border-radius: 10px;
background: var(--Primary-Default, #6A9CB0);
color: var(--Colors-Gray-White, #FFF);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 18px;
font-style: normal;
font-weight: 511;
line-height: normal;

padding: 11px 32px;

}

.services .service-item .read-more i {
  margin-right: 10px;
}


/*--------------------------------------------------------------
# services .swiper-container Section
--------------------------------------------------------------*/
.services .swiper-container {
  width: 100%;
 
  padding: 20px 0;
  overflow: hidden;
}
.services .swiper-slide{
 
  border: 1px solid #fff;
  height: 100%;
  padding: 30px;
  justify-content: space-around;
  align-items: flex-start;
display: flex;

gap: 24px;
align-self: stretch;
border-radius: 16px;
overflow: hidden;
background-image: url('../img/service/66.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}
.services .header-service-item{
  display: flex;
  align-items: center;
  justify-content: space-between
}
.services .swiper-slide .icon {
  
  border-radius: 10px;
  position: relative;
  margin-left: 0px;
 
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

}

.services .swiper-slide h3 {
  color: var(--Colors-Gray-Darkest, #111);
  text-align: right;
 
  font-family: "SF Arabic Rounded";
  font-size: 24px;
  font-style: normal;
  font-weight: 711;
  line-height: normal;
}

.services .swiper-slide p {
  color: var(--Colors-Gray-Darker, #333);
  text-align: right;

  font-family: "SF Arabic Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
}

.services .swiper-slide .read-more {
  display: inline-flex;
  align-items: center;
margin-top: 10px;
border-radius: 10px;
background: var(--Primary-Default, #6A9CB0);
color: var(--Colors-Gray-White, #FFF);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 18px;
font-style: normal;
font-weight: 511;
line-height: normal;

padding: 11px 32px;

}

.services .swiper-slide.read-more i {
  margin-right: 10px;
}
/* أزرار التنقل */
.services .swiper-button-next,
.services .swiper-button-prev {
    color: #fff;
   
    
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
background: var(--Primary-Default, #6A9CB0);
}
/* ضبط مكان الأزرار */
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 16px
}

.swiper-button-next, .swiper-button-prev{
 
    top: auto;
}
/* النقاط (Pagination) */
.services .swiper-pagination-bullet {
  background-color: #E1EBEF;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  /* Pagination Styling */

  margin-top: 16px;

}

.services .swiper-pagination-bullet-active {
  background-color: #6A9CB0;
}
.services .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom:  auto !important;
  top: var(--swiper-pagination-top, auto);
  left: 0;
}


@media (max-width: 1199px) {
  .services .swiper-slide{
    flex-direction: column;
    align-items: center;
  }
  .services .swiper-slide h3 {
font-size: 24px;
  }
  .services .swiper-slide p {
    font-size: 16px;

  }
}


/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# partners Section
--------------------------------------------------------------*/
.partners {
  padding: 20px 0;
  overflow: hidden;
}

.partners .swiper-container {
  width: 100%;
  overflow: hidden;
}

.partners .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
   
}

.partners .swiper-slide img {
  max-width: 100%;
  height: auto;
  padding: 10px 20px;

 background: var(--Colors-Gray-White, #FFF);


}
@media (max-width: 1199px) {
  .partners .swiper-slide img {
  padding: 8px 20px;
}
.partners .swiper-slide {
  margin: 20px auto;
}
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Pricing Featured Highlight
--------------------------------------------------------------*/
.pricing .pricing-backages{
  border-radius: 0px 24px 24px 0px;
  border: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);
  background: var(--Colors-Gray-White, #FFF);
  /* Grey */
box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);
}
.pricing .pricing-backages3{
  border-radius: 24px 0px 0px 24px;
border: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);
background: var(--Colors-Gray-White, #FFF);
/* Grey */
box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);
  }
  .pricing .pricing-backages2{
    border-radius: 24px;
    background: var(--Primary-Default, #6A9CB0);
    box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);
    transform: scale(1.05);
  }
.pricing .pricing-item {

  padding: 40px 40px;
  height: 100%;


}

.pricing #featured h3 {
  color: #fff;
}
.pricing h3 {
  
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--Colors-Gray-Darkest, #111);
font-family: "SF Arabic Rounded";
font-size: 20px;
font-style: normal;
font-weight: 622;
line-height: normal;
}

.pricing h4 {

  margin-bottom: 0;
  color: var(--Colors-Gray-Darkest, #111);
font-family: "SF Arabic Rounded";
font-size: 46px;
font-style: normal;
font-weight: 700;


}
.pricing #featured h4 {
  color: #fff;
}
.pricing h4 sup {
  color: var(--Colors-Gray-Darkest, #111);
  font-family: Urbanist;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;

}
.pricing #featured h4 sup {
  color: #fff;
}
.pricing h4 span {
  color: var(--Colors-Gray-Dark, #666);
  font-family: "SF Arabic Rounded";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}
.pricing #featured h4 span {
  color: #fff;
}
.pricing .description {
  color: var(--Primary-Lighter, #A6C4D0);
font-family: Urbanist;
font-size: 13px;
font-style: normal;
font-weight: 500;
text-decoration-line: line-through;

}
.pricing .pricing-item .user{
  color: var(--Color-Neutral-Neutral-3, #404040);
  text-align: right;
  font-family: "SF Arabic Rounded";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pricing #featured .user{
  color: #fff;
}
.pricing .cta-btn {
 
  color: #6A9CB0;
  display: block;
  text-align: center;
  padding: 10px 35px;

  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;

  border-radius: 8px;
border: 1px solid var(--Primary-Default, #6A9CB0);


font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 711;
line-height: normal;
}
.pricing #featured  .cta-btn {
  background: var(--Colors-Gray-White, #FFF);
  color: #6A9CB0;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
 
  line-height: 20px;
  color: var(--Colors-Gray-Darkest, #111);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 14px;
font-style: normal;
font-weight: 622;

}
.pricing #featured ul{
  color: #fff;
}
.pricing ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #93D500;
  font-size: 24px;
  padding-left: 3px;
}
.pricing #featured ul i{
  color: #fff;
}
.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
 
  left: 15px;

  padding: 4px 15px 6px 15px;
  margin: 0;
  color: var(--Colors-Gray-White, #FFF);
text-align: center;
font-family: "SF Arabic Rounded";
font-size: 12px;
font-style: normal;
font-weight: 511;
line-height: normal;

  border-radius: 100px;
  background: rgb(106 156 176);
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}
.pricing .extra-users,
.pricing .total {
  margin: 10px 0;
  font-size: 14px;
}

.pricing .user-economic-card{
  color: var(--Colors-Gray-Darkest, #111);
  text-align: right;
  font-family: "SF Arabic Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pricing #featured .user-economic-card{
  color:#fff;
}
.pricing .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pricing .economic-card {
  border-radius: 16px;
  display: flex;
  max-width: 300px;
  flex-direction: column;
  font-family: SF Arabic Rounded, sans-serif;
  text-align: right;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(230, 230, 230, 1);
}

.pricing .pricing #featured .economic-card{

  border: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);
  background: var(--Primary-Lightest, #C3D7DF);
  }
  .pricing .economic-title {
  color: var(--Colors-Gray-Darkest, #111);
  font-size: 16px;
  font-weight: 400;
}
.pricing #featured  .economic-title {
  color: #fff;
}
.pricing .price-container {
  border-radius: 24px;
  background-color: rgba(243, 247, 249, 1);
  display: flex;
  margin-top: 16px;
  width: 100%;
  align-items: center;
 
  font-size: 30px;
  color: var(--Primary-Default, #6a9cb0);
  font-weight: 711;
  white-space: nowrap;
  justify-content: space-between;
  padding: 0px 6px;
}

.pricing .price-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 30px;
}

.pricing .price-value {
  margin: auto 0;
}
.pricing .total-container {
  border-radius: 16px;
  display: flex;
  max-width: 300px;
  flex-direction: column;
  font-family: SF Arabic Rounded, sans-serif;
  white-space: nowrap;
  text-align: right;
  justify-content: center;
  padding: 20px;
  border: 1px solid #E6E6E6;

}
.pricing #featured .total-container {
  background: var(--Primary-Light, #88B0C0);
  
}
.pricing .total-label {
  color: var(--Colors-Gray-Darkest, #111);
  font-size: 18px;
  font-weight: 400;
}
.pricing #featured .total-label{
  color: #fff;
}
.pricing .amount-display {
text-align: center;
  align-self: stretch;
  border-radius: 12px;
  background-color: #F6FCEB;
  margin-top: 16px;
  width: 100%;
  font-size: 32px;
  color: #93D500;
  font-weight: 711;
  padding: 4px 0px;
}

.pricing #featured .amount-display {
  background-color:#A6C4D0;
  color:#fff;
}

/* تصميم العنصر الأساسي */
.pricing .checkbox-item {
  margin-bottom: 10px;
  margin-top: 20px;

  display: flex;
  
  flex-direction: column;
}

/* تصميم الحاوية */
.pricing .checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  position: relative;
  gap: 30px;

}

/* إخفاء الـ Checkbox الافتراضي */
.pricing  .checkbox-container input[type="checkbox"] {
  position: absolute;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #6A9CB0;
  border-radius: 4px;
  margin-right: 8px;
}

/* النص بجانب المربع */
.pricing .checkbox-container span {
  color: var(--Colors-Gray-Darkest, #111);
font-family: "SF Arabic Rounded";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.pricing #featured .checkbox-container span {
  color: #fff;
}
.pricing .checkbox-item .sup {
color: var(--Colors-Gray-Default, #999);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
align-items: flex-start;
margin: 5px 34px;
}
.pricing #featured .checkbox-item .sup {
  color: #fff;
}
@media (max-width: 1199px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq{
  padding: 20px 0;
}
.faq .faq-container #faq-top{
  border-radius: 16px;
border: 1px solid var(--Colors-Gray-Lighter, #E6E6E6);
background: var(--Colors-Gray-Lightest, #fff);
}
.faq .faq-container .faq-item ul li {
  color: var(--Colors-Gray-Dark, #666);
text-align: right;

/* Arabic/العناوين الفرعية/ع ف١ */
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;
padding-bottom: 12px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #F4F4F4;
  overflow: hidden;
  border-radius: 16px;
 background: var(--Colors-Gray-Lightest, #F4F4F4);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  
 
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--Colors-Gray-Darkest, #111);
 text-align: right;

font-family: "SF Arabic Rounded";
font-size: 20px;
font-style: normal;
font-weight: 511;
line-height: normal;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;

}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: var(--Colors-Gray-Dark, #666);
text-align: right;

/* Arabic/العناوين الفرعية/ع ف١ */
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 18px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  background-color: #6A9CB0;
  color: #fff;
  border-radius: 50px;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #fff;
}

.faq .faq-container .faq-active {
  border: 1px solid #F4F4F4;
  overflow: hidden;
  border-radius: 16px;
background: var(--Colors-Gray-Lightest, #F4F4F4);
}

.faq .faq-container .faq-active h3 {
  color: var(--Colors-Gray-Darkest, #111);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
 
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials{
  background: var(--Primary-Default, #6A9CB0);
}
.testimonials .section-title{
  padding-bottom: 30px;
}

.testimonials .section-title h2{
  color: var(--Colors-Gray-White, #FFF);
  text-align: center;
  font-family: "SF Arabic Rounded";
  font-size: 32px;
  font-style: normal;
  font-weight: 711;
  line-height: normal;
}
.testimonials .section-title p {
  color: var(--Primary-Extra-Light, #E1EBEF);
text-align: center;

font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;
}
/* Swiper Container */
.testimonials .testimonials-swiper {
  width: 100%;

  position: relative;
}
/* Testimonial Card */
.testimonial-card {
  background-color: #6A9CB0;
  border-radius: 16px;
  text-align: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
 

}
.testimonial-text {
  font: 511 18px SF Arabic Rounded, sans-serif;
  color: #fff;
 
  
}
.quote-mark {
  width: 24px;
  height: 24px;
  position: absolute;
}

.quote-mark-top {
  right: 12px;
  top: 12px;
}

.quote-mark-bottom {
  left: 35px;
 top: 90px;
}
.author-section {
  margin-top: 16px;
  text-align: center;
}

.author-name {
  color: var(--Colors-Gray-White, #FFF);
  text-align: center;
 
  font-family: "SF Arabic Rounded";
  font-size: 20px;
  font-style: normal;
  font-weight: 711;
  line-height: normal;
}

.author-title {
  color: var(--Primary-Extra-Light, #E1EBEF);
  text-align: center;
 
  font-family: "SF Arabic Rounded";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* Navigation Buttons */
.nav-button {
  color: #fff;
  display: flex;
width:32px;
height: 32px;
justify-content: center;
align-items: center;
border-radius: 6px;
background: var(--Primary-Lighter, #A6C4D0);
top: 80%;
}



.nav-button::after {
  font-size: 20px;
}
.swiper-pagination{
  justify-content: center;
 
}


.swiper-pagination-bullet {
  background-color: #a6c4d0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;

}

.swiper-pagination-bullet-active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-text {
    font-size: 16px;
  }
  .author-name {
    font-size: 18px;
  }

  .author-title {
    font-size: 14px;
  }
  .quote-mark-top {

    top: 0px;
  }
  
  .quote-mark-bottom {
    left: 35px;
   bottom: auto;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact{
  background: var(--Colors-Gray-White, #FFF);
}
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {

  height: 100%;
  padding: 30px;
 
color: var(--Colors-Black-60, #666);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;
}

@media (max-width: 1199px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form .form-group {
  margin-bottom: 15px; /* مسافة بين الحقول */
}

.contact .php-email-form .form-label {
  display: block; /* يجعل الليبل يظهر فوق الحقل */
  color: var(--Colors-Black-60, #666);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
text-align: right;
  color: var(--default-color);

  border-radius: var(--Corner-radius-Small, 12px);
border: var(--Border-2X-Small, 1px) solid var(--Colors-Black-Light, #E6E6E6);
background: var(--Colors-Black-White, #FFF);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #D2E6FF;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  
  color: var(--Colors-Black-40, #999);
text-align: right;

font-family: "SF Arabic Rounded";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.contact .php-email-form button[type=submit] {
  color: var(--Colors-Gray-White, #FFF);
font-family: "SF Arabic Rounded";
font-size: 18px;
font-style: normal;
font-weight: 511;
line-height: normal;
text-transform: capitalize;

  border: 0;
  padding: 10px 30px;
width: 100%;
border-radius: 16px;
background: var(--Primary-Default, #6A9CB0);
}

.contact .php-email-form button[type=submit]:hover {
  background: #7A89AF;
}

@media (max-width: 1199px) {
  .contact .php-email-form .form-label {
    font-size: 14px;
  }
  .contact .php-email-form button[type=submit] {
    font-size: 14px;
  }
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  margin: auto 0;
}
.contact-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-family: SF Arabic Rounded, sans-serif;
  font-weight: 711;
  text-align: right;
  justify-content: center;
}
.contact-subtitle {
  color: rgb(106, 156, 176);
  font-size: 20px;
  text-transform: uppercase;
}
.contact-title {
 
  margin-top: 16px;
  color: var(--Colors-Gray-Darkest, #111);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 48px;
font-style: normal;
font-weight: 711;
line-height: normal;
}
.contact-list {

  display: flex;
  margin-top: 40px;
  width: 428px;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
}
.contact-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  justify-content: end;
}
.contact-text {
  align-self: stretch;
  min-width: 240px;

  text-align: right;
  width: 360px;
  margin: auto 0;
  color: var(--Colors-Gray-Dark, #666);
text-align: right;
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 511;
line-height: normal;
}
.contact-icon {
  border-radius: 100px;
  background-color: rgb(243, 247, 249);
  align-self: stretch;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  padding: 14px;
}
.contact-icon-img {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin: auto 0;
}
.contact-item + .contact-item {
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .contact-section {
    max-width: 100%;
    margin-top: 40px;
  }
  .contact-header {
    max-width: 100%;
  }
  .contact-subtitle {
    max-width: 100%;
  }
  .contact-title {
    max-width: 100%;
    font-size: 40px;
  }
  .contact-list {
    margin-top: 40px;
  }
  .contact-item {
    max-width: 100%;
  }
  .contact-text {
    white-space: initial;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# contant detlais section 
--------------------------------------------------------------*/
.contant {
  background: var(--Colors-Gray-White, #FFF);
  padding: 40px 0;
}
.contant-detlais-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.contant-detlais{
  flex: 1 1 calc(25% - 20px);
  box-sizing: border-box;
  margin-bottom: 20px;
  background-color: #FFF;
  padding: 20px;

  border-radius: 16px;
box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);

display: flex;

flex-direction: column;
justify-content: center;
align-items: center;


  
}
.contant-detlais  .icons{
  display: flex;
padding: 12px;
justify-content: center;
align-items: center;
border-radius: 12px;
background: var(--Primary-Off-White, #F3F7F9);
margin-bottom: 12px;
}

   
.contant-detlais h2 {
  color:  #111;
  text-align: center;
  font-family: "SF Arabic Rounded";
  font-size: 16px;
  font-style: normal;
  font-weight: 511;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contant-detlais p {
  color: var(--Colors-Gray-Dark, #666);
text-align: center;
font-family: "SF Arabic Rounded";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
/* Responsive Design */
@media (max-width: 1199px) {
  .contant-detlais-mic {
      flex-direction: column;
      align-items: center;
  }

  .contant-detlais {
      flex: 1 1 100%;
      margin-bottom: 20px;
  }
  .contant-detlais p {
    font-size: 14px;
  }
  .contant-detlais h2 {
    font-size: 18px;
  }

  

}
/*--------------------------------------------------------------
# contant-helper-detils 
--------------------------------------------------------------*/
.accounting-system {
  padding: 30px 20px;
  background-color: #FFF;
}


.header-icon {
  width: 48px;
  height: 48px;
  margin: auto;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.video-card {
  flex: 1 1 calc(50% - 16px); /* 4 في الصف */
  max-width: calc(50% - 16px);
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 16px;
 
  overflow: hidden;
  text-align: center;
  position: relative;
  padding: 24px;
/* Grey */
box-shadow: 0px 0px 32px 8px rgba(102, 102, 102, 0.08);
}

.video-title {
  margin-bottom: 8px;
 
  color: var(--Colors-Gray-Darkest, #111);
text-align: right;


/* Arabic/العناوين الفرعية/ع ف١ */
font-family: "SF Arabic Rounded";
font-size: 18px;
font-style: normal;
font-weight: 511;
line-height: normal;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.play-button {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}



/* الهواتف */
@media (max-width: 1199px) {
  .video-card {
    flex: 1 1 calc(100% - 16px); /* 1 في الصف */
    max-width: calc(100% - 16px);
  }
}





/*--------------------------------------------------------------
# Starter alues-section 
--------------------------------------------------------------*/

.values-section {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  font-family: 'SF Arabic Rounded', sans-serif;
  justify-content: center;

}


.values-section .values-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  width: 100%;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.values-section .value-card {
  display: flex;
 
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  margin: auto 0;
}

.values-section .value-icon-wrapper {
  align-self: center;
  display: flex;
  width: 150px;
  max-width: 100%;
  flex-direction: column;
  color: #0061fe;
  font: 700 32px 'Poppins', sans-serif;
}

.icon-container {
  display: flex;
  flex-direction: column;
  position: relative;
  aspect-ratio: 0.603;
  width: 100%;
  padding: 0px;
 
justify-content: center;
align-items: center;
}

.values-section .icon-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: flex;
justify-content: center;
align-items: center;

}

.values-section .icon {
  aspect-ratio: 1;
  object-fit: contain;
  width:80%;
  background-color: #0061fe;

  position: relative;
  display: flex;
justify-content: center;
align-items: center;
border-radius: 100px;
}
.values-section .icon img{
border: 2px solid transparent;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
border-radius: 50%;
position: relative;
padding: 16px;

border-left: 2px solid #fff;
}

.values-section .icon-number {
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: center;
  aspect-ratio: 1;
  margin-top: 56px;
  width: 46px;
  padding: 6px 19px;
}
.values-section .icon-span{
background-color: #fff;
width: 60px;
height: 60px;
flex-shrink: 0;
border-radius: 50px;
display: flex;
  justify-content: center;
  align-items: center;
}
.value-title {
  color: #111;
  font-size: 20px;

  text-align: center;
  margin-top: 16px;

font-family: "SF Arabic Rounded";

font-style: normal;
font-weight: 711;
line-height: normal;
}

.values-section .value-description {

  margin-top: 16px;
  color: var(--Colors-Gray-Dark, #666);
text-align: center;
font-family: "SF Arabic Rounded";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
padding: 0px 42px;
}
@media (max-width: 480px) {
  .values-section .value-description {
    padding: 0px 2px;
    font-size: 14px;
  }
  .values-section .values-grid{
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .values-section .value-description {
    padding: 0px 2px;
    font-size: 14px;
  }
  .values-section .values-grid{
    flex-direction: column;
  }
  .values-section {
    padding: 32px 20px;
  }

  .values-header,
  .values-title,
  .values-subtitle {
    max-width: 100%;
  }

  .values-grid {
    margin-top: 40px;
  }

  .icon-number {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
#  Model Section
--------------------------------------------------------------*/
/* زيادة حجم المودال */
.modal-dialog {
  max-width: 650px; /* يمكنك تغيير القيمة حسب الحاجة */
  width: 80%; /* عرض المودال كنسبة مئوية */
}
.modal-content {

background: var(--Colors-Gray-White, #FFF);

  padding: 10px;
  border-radius: 10px;
}

.modal-header {
  background-color: #FFF;
    border-bottom: var(--bs-modal-header-border-width) solid #ffffff;
    padding: 5px 24px;
}
  


.modal-title {
  color: var(--Colors-Gray-Darkest, #111);
  text-align: right;
  
  font-family: "SF Arabic Rounded";
  font-size: 24px;
  font-style: normal;
  font-weight: 711;
  line-height: normal;
}
.modal-body{
  padding: 0px;
}

.modal-body img {
  max-width: 100%;
  height: auto;
 
}
@media (max-width: 1199px) {
  .modal-dialog {
      width: 90%; /* عرض أكبر للمودال على الشاشات الصغيرة */
      max-width: none; /* إزالة الحد الأقصى للعرض */
      margin: 100% auto; /* مسافة من الأعلى */
      top: auto; /* إعادة ضبط الموضع الرأسي */
      transform: none; /* إلغاء التأثير الرأسي */
  }

  .modal-content {
      padding: 15px; /* زيادة المسافة الداخلية للمحتوى */
      border-radius: 8px; /* تقليل نصف القطر للحواف */
  }
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}