@font-face {
    font-family: "primaryfont";
    src: url("../fonts/alfont_com_MyriadArabic-Regular.otf");
}

@font-face {
  font-family: "Saudi";
  src: url("../fonts/SaudiWeb/SaudiWeb-Regular.woff");
}


:root{
  --primary-color: #34172C;
  --primary-light-color: #5D2A51;
  --sec-color:#B78831;
  --sec-light-color: #D7B15E;
  --white-color:#FEFEFE;
  --black-color:#000010;
  --gray-color:white;
  --body-bg:#0D0D0D;
  --gr-bg-section:#E964FF;
  /* --border-color:#362C36; */
  --border-color: var(--sec-light-color);
  --bg1:#231a2e;
  --bg2:#0f0a17;
  --card:#fff;
  --muted:#b7b7c0;
  --gap: 14px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --overlay: rgba(0,0,0,.55);
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  scroll-behavior: smooth;
}
p{
  text-align: justify;
}
h1,h2,h3,h4,h5,h6{
  color: var(--sec-color) !important;
}

html,
body{
  overflow-x: hidden;
}

@media screen and (max-width:550px) {
  .d-sm-none{
    display: none !important;
  }
  
}
@media screen and (min-width:551px) {
  .d-sm-none{
    display: flex !important;
  }
  .sm-scroll{
    display: none !important;
  }
  
}
body{
  background-color:var(--primary-color);
  min-height: 100vh;
  direction: rtl;
  font-family: 'Saudi';
}
body.open-mobile-menu{
  overflow: hidden;
}
.sm-scroll{
  display: flex;
  gap: 20px;
  overflow-x: auto;
}
.no-posts{
  color:white !important;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .no-posts{
    font-size: 18px;
  }
}

a{
  color:var(--white-color);
  text-decoration: none;
}


.bread-hero{
  padding-top: 140px;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bread-hero .star-one{
  width: fit-content;
  position: absolute;
  top: 20px;
  right: 20px;
}
.bread-hero .star-two{
  width: fit-content;
  position: absolute;
  top: 40%;
  left: 20px;
}

.bread-hero  .cric-one{
  background-color: rgba(97, 29, 93, 0.45);
  width: 70px;
  height: 70px;
  position: absolute;
  border-radius: 50%;
  bottom: -32px;
  right: -23px;
}
.bread-hero  .cric-two{
  background-color: rgba(97, 29, 93, 0.45);
  width: 70px;
  height: 70px;
  position: absolute;
  border-radius: 50%;
  top: -32px;
  left: -23px;
}

.bread-hero h1{
  font-size: 30px;
  font-weight: bold;
}
.bread-hero h1,
.bread-hero h3{
  color:white;
}


.bg-gr{
  background: var(--primary-color);
  background: linear-gradient(173deg, var(--primary-color) 52%, rgba(97, 29, 93, 1) 167%);
}

p{
  color: var(--gray-color);
  text-align: justify;
}

h1,h2,h3,h4,h5,h6{
  color:var(--white-color);
  text-align: justify;
  
}


.theme{
  display: none;
}

.dark .theme.dark{
  display: block;
}

.light .theme.light{
  display: block;
}


input, textarea{
  background-color: var(--primary-color);
  border: 1px solid;
  border-color: var(--sec-color);
  border-radius: 25px;
  padding: 10px 20px !important;
  width: 100%;
  text-align: start;
  min-height: 40px;
  color: white;
  outline: none;
}
input:focus,
textarea:focus,
input:focus-visible,
textarea:focus-visible{
  border: 1px solid var(--sec-color) !important;
}

input[type="submit"]{
  margin-top: 20px;
}

input[type="email"]{
  direction: rtl;
}
.d-flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.d-flex-center-c{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}
.m-btn{
  padding: 10px 27px;
  background-color: var(--sec-color);
  border-radius: 19px;
  text-align: center;
  vertical-align: middle;
  color: var(--white-color);
  outline: none;
  border: none;
  display: inline-block;
  min-width: 150px;
  cursor: pointer;
}
.m-btn-outline{
  padding: 10px 27px;
  background-color: transparent;
  border-radius: 19px;
  text-align: center;
  vertical-align: middle;
  outline: none;
  border: 1px solid var(--sec-color);
  color: var(--sec-color);
  display: inline-block;
  min-width: 150px;
  cursor: pointer;
}

.row{
  margin:  0 !important;
}

.section-title{
  font-size: 35px;
  line-height: 1.8;
  font-weight: bold;
  /* letter-spacing: 2px; */
  color: var(--sec-color);
}

  @media screen and (max-width:575px){
    .section-title{
      font-size: 22px;
    }
  }


header.main-header{
  padding: 30px 10px;
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: all 300ms ease;
  top: 0;
  right: 0;
}

.admin-bar header.main-header{
  top: 32px;
}
.admin-bar header.main-header.scrolling{
  top: 0;
}

@media screen and (max-width: 782px) {
.admin-bar header.main-header{
  top: 46px;
}
.admin-bar header.main-header.scrolling{
  top: 0;
}
}

header.main-header.scrolling{
  box-shadow: 0px -4px 16px -3px var(--sec-light-color);
}

header.main-header.scrolling.bg-gr{
background: linear-gradient(173deg, var(--primary-color) 52%, rgba(97, 29, 93, 1) 167%);
}
header.mai-header > .row:first-child{
  display: flex;
  justify-content: center;
  align-items: center;
}
.before-overlay{
  position: relative;
}
.before-overlay::before{
  content: '';
  position: absolute;
  background-color: rgba(233, 100, 255, 0.16);
  filter: blur(40px);
  z-index: -1;
}
header.main-header .logo img{
  width: 102px;
}
header.main-header .main-menu{
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:767px){
  header.main-header .main-menu{
    display: none !important;
  }

}
header.main-header .main-menu ul{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0px;
  border-radius: 20px;
  background-color: var(--sec-color);
  padding-left: 15px;
  
}
header.main-header .main-menu li a{
  font-size: 16px;
  color: var(--gray-color);
}
@media screen and (max-width:1200px) {
  header.main-header .main-menu li a{
    font-size: 16px;
    text-wrap: nowrap;
  }
}

header.main-header .main-menu li.active{
    background-color: #815d10;
    /* border: 1px solid #2A2A2A; */
    padding: 8px 30px;
    border-radius: 9px;
}
header.main-header .main-menu li.active a{
  color: var(--white-color);
}

header.main-header .header-actions .switch-mood{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;

}
@media screen and (max-width:500px){
  header.main-header .header-actions .switch-mood{
    gap:5px ;
  }
}
@media screen and (max-width:500px){

  header.main-header  .m-btn{
    min-width: unset;
    text-wrap: nowrap;
    padding: 8px 20px;
  }
}

header.main-header .header-actions .theme-switch{
  display: flex;
  padding: 15px 23px;
}

@media screen and (max-width:500px){
  header.main-header .header-actions .theme-switch{
    padding: 8px 10px;
  }
}

header.main-header .header-actions .theme-switch svg path{
  fill: var(--primary-light-color);
}

@media screen and (min-width:992px) {
  .ToggleMenu-mobile{
    display: none;
  }
}

.ToggleMenu-mobile i,
.ToggleMenu-mobile svg{
  color:var(--sec-color);
  fill:var(--sec-color);
  font-size: 22px;
  cursor: pointer;
  /* margin-left: 20px; */
}
.mobile-collpase-section{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000000c9;
  z-index: 300;
  right: -100%;
  top: 0;

  transition: right 1s  ease-in-out;
}

body.open-mobile-menu .mobile-collpase-section{
  right: 0;

  transition: right 1s  ease-in-out;
}
.mobile-collpase-section .close-menu{
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 25px;
  color: var(--sec-light-color);
  background-color: var(--primary-light-color);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
}

.mobile-collpase-section .mobile-menu{
  width: 250px;
  height: 100%;
  border-left: 3px solid var(--sec-color);
  padding: 10px;
  border-top: 3px solid var(--sec-color);
  border-bottom: 3px solid var(--sec-color);
}
.mobile-menu .logo{
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu .logo img{
  width: 135px;
}
.mobile-collpase-section .mobile-menu ul li{
  margin: 5px 0;
  font-size: 25px;
  font-weight: bold;
  padding: 10px 0;
  
}
.mobile-collpase-section .mobile-menu ul li a{
  color: var(--gray-color);
}
.mobile-collpase-section .mobile-menu ul li.active a{
  color: var(--sec-color);
  position: relative;
}
.mobile-collpase-section .mobile-menu ul li.active a::before{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -29px;
  width: 13px;
  height: 3px;
  background-color:#AF4496;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 7px 2px #AF4496;
}
section{
  padding: 30px 0;
}

.hero-section{
  background-color: var(--gr-move);
  padding-top: 200px;
  background: linear-gradient(173deg, var(--primary-color) 52%, rgba(97, 29, 93, 1) 167%);
}

.hero-section h3{
  font-size: 35px;
  font-weight: 400;
  line-height: 18.75px;
}
@media screen and (max-width:550px){
  .hero-section h3{
    font-size: 24px;
    line-height: 1
  }
}
.hero-section h1{
  font-size: 50px;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width:550px){
  .hero-section h1{
    font-size: 30px;
    line-height: 1.8;
  }
}
.hero-section p{
  color: var(--gray-color);
  font-size: 23px;
  margin-bottom: 20px;
}
@media screen and (max-width:550px){
  .hero-section p{
    font-size: 18px;
    line-height: 1.6;
  }
}

.hero-section img{
  width: 100%;
  height: 100%;
}

.single-img-div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-img{
  height: 100%;
  position: relative;
}
.dol-img{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  height: 100%;
}
.hero-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.hero-service-btn{
  border-color: var(--white-color);
  color: var(--white-color);
}
.down-start{
  position: absolute;
  bottom: -34px;
  right: -39px;;
}
.up-start{
  position: absolute;
  top: -22px;
  left: -23px;
}

/* ============================================================= Start About us Section ================================= */
  .about-img{
    position: relative;
    max-height: 500px;
    overflow-x: auto;
    display: flex;
    gap: 10px;
    overflow-y: hidden;
  }
  .about-img::before{
    content: "+ 10 سنوات";
    padding: 20px;
    font-size: 17px;
    font-weight: 600;
    background-color: var(--primary-light-color);
    color: var(--white-color);
    border: 3px solid var(--white-color);
    border-radius: 18px;
    position: absolute;
    top: -19px;
    right: -7px;
  }
  .about-img img{
    width: 100%;
    /* max-height: 500px; */
    /* height: 500px; */
    object-fit: contain;
  }
    @media screen and (max-width: 575px){
      .about-img img{
        max-height: 400px;
      }
    }

  .about-us-section h2{
    font-size: 35px;
    line-height: 1.8;
    font-weight: bold;
    color: var(--sec-color);
  }

  @media screen and (max-width: 575px){
    .about-us-section h2{
      font-size: 22px;
    }
  }
  .about-us-section p{
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 25px;
  }
  @media screen and (max-width: 575px) {
    .about-us-section p{
      font-size: 18px;
    }
  }
  
  .about-us-section .about-content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
  }

  @media screen and (max-width:575px) {
    .about-us-section .about-content h2{
      margin-top: 20px;
    }
  }
  .about-us-section .about-content::before{
  content: '';
  position: absolute;
  width: 103%;
  height: 80%;
  background: rgba(233, 100, 255, 0.16);
  filter: blur(120px);
  z-index: -1;
  right: 0;
  border-radius: 63%;
  bottom: 10%;
}

  .about-us-section .about-content .m-btn{
    width: fit-content;
  }
/* ============================================================= End About us Section ================================= */




/* ============================================================= Start Services ================================= */

.Servies .before-overlay::before{
  top: -10%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  right: 0;
  filter: blur(150px);
}

.Servies .single-service{
  /* padding: 20px; */
  border: 3px solid var(--border-color);
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  /* min-height: 400px; */
  overflow: hidden;
  height: 100%;
}
.Servies .sm-scroll .single-service{
  width: 250px;
}
.Servies .sm-scroll .single-service img{
  height: 250px;
}
.Servies .single-service .service-title{
  color: var(--sec-color);
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  /* height: 90px; */
}
.Servies .single-service .service-des{
  color: white;
  font-size: 23px;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  height: 150px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Servies .single-service .service-icon img{
  width: 30px;
  margin-bottom: 20px;
}

.Servies .Service-image{
  width: 100%;
  height: 100%;
}
.section-link{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:  50px;
}
.section-link a{
  font-size: 22px;
  min-width: 40vh;
}

  @media screen and (max-width:575px){
    .section-link a{
      min-width: unset;
      font-size: 18px;
    }
  }


/* ============================================================= End Services =================================== */



/* ============================================================= Start Stroies =================================== */

.single-story{
  padding: 5px;
  border-radius: 20px;
  border: 3px solid var(--border-color);
}

.sm-scroll .single-story{
  min-width: 300px;
}
.single-story .stroy-header{
  position: relative;
  margin-bottom: 20px;
}
.single-story .stroy-header img{
  width: 100%;
  border-radius: 20px;
  position: relative;
}
.single-story .stroy-header::after{
  /* content: ''; */
  position: absolute;
  z-index: 2;
  width: 100%;
  right: 0;
  bottom: 3px;
  height: 20%;
  background-color: #2D0B2B;
  filter: blur(27px);
  border-top-right-radius: 39px;
}
.single-story .story-title{
  bottom: 0px;
  right: 20px;
  font-size: 30px;
  z-index: 4;
  line-height: 1.6;
  text-align: center;
}

.single-story .story-des{
  font-size: 20px;
  line-height: 1.6;
  min-height: 100px;
}
.single-story .stroy-link{
  width: 100%;
  margin: 20px 0;
  font-size: 18px;
}

/* ============================================================= End Stroies ===================================== */



/* ============================================================= start  Gallary ===================================== */
.gallary img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.gallary .before-overlay::before{
  top: -10%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  right: 0;
  filter: blur(150px);
}

.gallary .mobile-clients{
  display: flex;
  overflow-x: scroll;
  gap: 20px;
}

.gallary .mobile-clients div{
    flex-shrink: 1;
    flex-basis: 100px;
    min-width: 150px;
}
.gallary .mobile-clients div{
  object-fit: contain;
}
.gallary .mobile-clients div img{
    object-fit: cover;
    height: 200px;
}
/* ============================================================= End  Gallary ====================================== */


/* ============================================================= Start blogs ===================================== */
.blogs img{
  width: 100%;
  height: 100%;
}

.single-blog img{
  /* height: 100%; */
  width: 100%;
  object-fit: cover;
  height: 260px;
  object-position: center center;
}

.blog2{
  justify-content: space-between;
}
.bigger-blog img{
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width:767px){
  .bigger-blog img{
    height: 100%;
  }
}
.single-blog h6,
.bigger-blog h6{
  color: white;
  margin: 5px;
  font-size: 18px;
}
.single-blog p,
.bigger-blog p{
  font-size: 16px;
  line-height: 1.6;
}
.blogs .before-overlay::before{
  top: -10%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  right: 0;
  filter: blur(150px);
}
/* ============================================================= End blogs ======================================= */


/* ================================================ Start clients ================================================== */

    /* .clients-wrap{
      width:min(1100px, 94vw);
      padding:28px 10px 56px;
      position:relative;
    } */

    .single-clinet{
      height: 100%;
      background-color: var(--white-color);
      border: 2px solid var(--border-color);
      border-radius: 25px;
      overflow: hidden;
      display: flex;
    }
    .clients-head{
      display:flex; justify-content:flex-end; margin-bottom:24px;
      font-weight:700; font-size:26px;
       /* letter-spacing:.2px; */
    }
    .sm-scroll .single-clinet img{
      flex-basis: 100px;
      height: 200px;
    }

    .sm-scroll .single-clinet{
      min-width: 200px;
    }

    .swiper{
      padding:8px 8px 64px;  
    }
    .swiper-slide{
      display:flex; align-items:center; justify-content:center;
    }


    .logo-card{
      background:var(--card);
      width:170px; height:130px;
      border-radius:12px; display:flex; align-items:center; justify-content:center;
      box-shadow:0 10px 30px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.3);
      transition:transform .25s ease, box-shadow .25s ease;
    }
    .logo-card:hover{ transform:translateY(-3px); box-shadow:0 16px 36px rgba(0,0,0,.38); }
    .logo-card img{ max-width:78%; max-height:70%; object-fit:contain; }


    .nav-arrows{
      position:absolute; inset-inline:0; bottom:6px;
      display:flex; gap:10px; justify-content:center; align-items:center;
      pointer-events:none;  
    }
    .swiper-button-prev, .swiper-button-next{
      position:static; width:38px; height:38px; border-radius:999px;
      background:#ffffff14; border:1px solid #ffffff2a;
      backdrop-filter: blur(4px);
      display:grid; place-items:center; pointer-events:auto;
    }
    .swiper-button-prev:after, .swiper-button-next:after{
      font-size:14px; color:#fff; font-weight:700;
    }

    .swiper-pagination{
      position:absolute; bottom:13px !important;
    }
    .swiper-pagination-bullet{ background:var(--muted); opacity:.6; }
    .swiper-pagination-bullet-active{ background:#fff; opacity:1; }

    /* Responsive */
    @media (max-width:480px){
      .logo-card{ width:150px; height:110px; }
      .clients-head{ font-size:22px; }
    }

  .swiper-pagination-bullet{
    display: none;
  }
  .swiper-button-prev,
  .swiper-button-next{
    background-color: var(--primary-light-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
  }
  .swiper-button-prev i,
  .swiper-button-next i,
  .swiper-button-prev svg,
  .swiper-button-next svg{
    font-size: 16px;
    width: 16px;
  }
  .swiper-button-prev:after, .swiper-button-next:after{
    content: '' !important;
  }
  .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 0.5;
    background-color: var(--white-color);
    color: var(--primary-light-color);
    cursor: not-allowed;
    pointer-events: auto !important;
  }

  .clients-wrap  .before-overlay::before{
  top: -10%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  right: 0;
  filter: blur(150px);
  }

/* ================================================ end clients ================================================== */




/* ================================================== Start Testmonail ================================================= */
.single-testmonail{
  padding: 20px;
  border: 3px solid var(--border-color);
  border-radius: 20px;
}

.single-testmonail .user-info {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.single-testmonail .user-info img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.single-testmonail .user-info .user-details h4{
  font-weight: normal !important;
}
.single-testmonail .user-info .user-details .user-email{
  color: var(--sec-color);
}

.single-testmonail .review-content p{
  font-size: 18px;
  line-height: 1.4;
  color: var(--gray-color);
  margin-bottom: 10px;
}

.stars {
  font-size: 18px;  
  color: var(--sec-light-color);
}
.stars .empty {
  color: var(--gray-color);
}
.Testmonail .before-overlay::before{
  top: -10%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  right: 0;
  filter: blur(150px);
}

/* ================================================== End Testmonail ================================================= */





/* ================================================= Start Contact us ================================================= */

.contact-form-section{
  padding: 20px;
  /* background-color: var(--black-color); */
  background-color: #3f2538;
  border: 1px solid var(--border-color);
  border-radius: 25px;
}
.contact-title{
  color: var(--sec-color);
  position: relative;
  padding-right: 25px;
}
.contact-title h3{
  color: var(--sec-color);
  font-size: bold;
  font-size: 30px;

}
.title-icon-c{
  display: flex;
  gap: 5px;
  flex-direction: column;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translate(-50%, -50%);
  align-items: flex-end;
}
.title-icon-c span{
  background-color: var(--sec-color);
  width: 25px;
  border-radius: 10px;
  height: 3px;
  display: block;
}
.title-icon-c span:last-child{
  width: 12px;
}

.contact-form-section p{
  font-size: 20px;
}

.contact-us-img{
  position: relative;
  max-height: 420px;
}
.contact-us-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.contact-form-section{
  height: 100%;
}
.contact-us-img::before{
  content: "هل لديك اسئلة؟";
  padding: 20px;
  font-size: 17px;
  font-weight: 600;
  background-color: var(--primary-light-color);
  color: var(--white-color);
  border: 3px solid var(--white-color);
  border-radius: 18px;
  position: absolute;
  top: -19px;
  right: -7px;
}
img{
  width: 100%;
  height: 100%;
}

.email-input{
  text-align: end;
}
/* ================================================= End Contact us =================================================== */

#main_footer{
  position:relative;
  padding: 20px;
  background-color: var(--primary-color);
  overflow: hidden;
}
#main_footer .robe-img{
  width: 100px;
  height: auto;
  position: absolute;
  bottom: 4px;
  left: 7px;
}

#main_footer .logo img{
  width: 150px;
  margin-bottom: 50px;
}

#main_footer p{
  font-size: 16px;
  margin-bottom: 30px;
}

#main_footer ul{
  padding: 0;

}
@media screen and (max-width: 575px) {
  #main_footer ul.footer-menu{
    display: flex;
    gap: 0;
    flex-wrap:wrap;
    
  }
}


@media screen and (max-width: 575px) {
  #main_footer ul.footer-menu li{
    flex: 1;
    flex-basis: 48%;
    margin:  7px 0;
  }
}

.social-links ul{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
}
.social-links ul li a{
  background-color: var(--sec-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links a{
  color: var(--black-color) !important;
}
.social-links ul li i{
  color: var(--black-color);
  font-size: 35px;
}


.footer-list{
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width:575px) {
  .footer-list{
    align-items: start;
  }
}



.footer-list h3{
  font-size: 30px;
  position: relative;
  margin-bottom: 30px;
  width: fit-content;
}

@media screen and (max-width: 575px){
  .footer-list h3{
    text-align: start;
  }
}
.footer-list h3::before,
.footer-list h3::after{
  content: '';
  bottom: -20px;
  position: absolute;
  width: 100%;
  height: 2px;
  right: 0;
  background: #200122; 
  background: -webkit-linear-gradient(0 ,to right,  #A1CAFF, 100%, #B68B2F); 
  background: linear-gradient(90deg, #A1CAFF 0%, #b68b2f2b 60%);
}
.footer-list h3::before{
  width: 60%;
  background: var(--sec-color);
  z-index: 2;
  height: 4px;
  bottom: -21px;
  border: 15px;
}
.footer-list li{
  margin: 10px 0;

}

.contact h3::before,
.contact h3::after{
  width: 120%;
}
.contact h3::before{
  width: 80%;
}

.footer-list li a{
  font-size: 16px;
  text-align: start;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  color: var(--white-color);
}

@media screen and (max-width: 575px){
  .footer-list li a{
    font-size: 16px;
  }
}
.footer-list li a svg{
  width: 12px;
  fill: var(--sec-color);
}
.footer-list li a svg path{
  fill: var(--sec-color);
}


.footer-list.contact svg{
  width: 20px;
}

#main_footer > span{
  width: 100px;
  height: 100px;
  background-color: #611D5D;
  z-index: 3px;
  position: absolute;
  border-radius: 50%;
  opacity: .45;
}
#main_footer > span:first-child{
  top: -32px;
  right: -16px;
}
#main_footer > span:nth-child(2){
  top: -19px;
  left: -38px;
}
/* =============================================== Start Footer ========================================================= */


/* ==================================================== Start vison ========================================================== */

.vision .before-overlay::before{
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  right: 55px;
  filter: blur(150px);
}

.vision-section{
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
  gap: 20%;

}

.vision img{
  width: 100%;
  height: auto;
}
.vision .p-relative{
  position: relative;
}

.vision .v-img1{
  height: 250px;
}
@media screen and (max-width: 575px) {
  .vision .v-img1{
    display: none;
  }
}

.vision .v-img2{
  height: 400px;
}

@media screen and (max-width: 575px) {
  .vision .v-img2{
    display: none;
  }
}
.vision .first-col{
  position: absolute;
  left: 0;
  top: -10%;

}


.vision h4{
  color: var(--sec-color);
  font-size: 30px;
}
.vision p{
  color: var(--white-color);
  line-height: 1.8;
  font-size: 20px;
}
/* ==================================================== End vison ========================================================== */


/* ==================================================== Start Services section ========================================================== */

.services-section img{
  max-height: 600px;
  /* object-fit: contain; */
  border-radius: 20px;
}

/* @media screen and (max-width: 575px) {
  .services-section img{
    display: none;
  }
} */

.services-section h4{
  color: var(--sec-color);
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .services-section h4{
    font-size: 22px;
  }
}

.services-section p{
  position: relative;
  color: var(--white-color);
  font-size: 25px;
  line-height: 1.8;
  padding-right: 20px;
}
@media screen and (max-width: 575px) {
  .services-section p{
    font-size: 18px;
  }
}

.services-section .service-content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width:550px){
  .services-section .service-content{
    order: 2;
    margin: 20px 0;
  }
    .services-section .service-content + .col-12{
      order: 1;
  }
  .page-id-26  .services-section .row > .col-12.col-md-6:not(.service-content){
    order: 1;
  }
  
}



.services-section p::after{
  content: '';
  width: 15px;
  height: 15px;
  background-color: var(--sec-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: -20px;
  
}
@media screen and (max-width: 575px) {
  .services-section p::after{
    width: 8px;
    height: 8px;
    right: -7px;
  }
}


.services-section .before-overlay::before{
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  right: 55px;
  filter: blur(150px);
}

.services-section .section{
  margin-top: 50px;
}


/* ==================================================== end Services section ============================================================ */



/* ==================================================== Start Single content ============================================================= */
.single-content{
  padding: 15px 45px;
  border: 1px solid var(--sec-color);
  border-radius: 25px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);

}
.single-content h4{
  margin-bottom: 10px;
}
.single-content p{
  margin: 0;
}

.contact-icons .row > div{
  flex-grow: 1;
  flex-basis: 300px;
}

.single-content .single-content-icon{
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-light-color);
}
.single-content .single-content-icon svg path{
  fill: var(--white-color);
}

/* ==================================================== End Single content ============================================================= */


/* ============================================== Start Single Serivces page ================================================= */
.single-services .single-story{
  border: none;
}

.single-services-meta p{
  font-size: 20px;
  line-height: 1.8;
}
.others-services .single-story{
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
}
.others-services .stroy-header{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.others-services .stroy-header img{
  width: 100px;
  height: 82px;
  object-fit: contain;
  border: 2px;
}

.others-services .single-story .stroy-header::after{
    width: 100px;
    filter: blur(6px);
    bottom: 7px;
}
.others-services .story-title{
  position: relative;
  font-size: 20px;
  width: 100%;
  color: var(--gray-color);
}

.single-services .single-services-meta{
  margin: 40px 0;
  border-bottom: 1px solid var(--border-color);

}
  .heading{display:flex; align-items:center; gap:8px; margin:0 0 16px}
  /* .heading .dot{width:8px; height:8px; border-radius:50%; background:#3fa3ff} */

  .gallery{
    display:grid;
    grid-template-columns: 1.1fr 2fr 1.1fr;
    grid-auto-rows: 150px;
    gap: var(--gap);
    direction: ltr;
  }
  .tile{
    position:relative; overflow:hidden; border-radius:var(--radius);
    background:#111; box-shadow: var(--shadow);
    cursor:pointer; user-select:none;
  }
  .tile img{width:100%; height:100%; object-fit:cover; display:block; transition: transform .35s ease}
  .tile:hover img{transform:scale(1.03)}
  .tile.main{ grid-column: 2 / span 1; grid-row: 1 / span 3; }
  .tile.side-top{ grid-column: 1 / span 1; grid-row: 1 / span 2; }
  .tile.side-bottom{ grid-column: 1 / span 1; grid-row: 3 / span 1; }
  .tile.right{ grid-column: 3 / span 1; grid-row: 1 / span 3; }

  /* كارت +N */
  .more{
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    background:linear-gradient(180deg, #FFFFFF 0, #2D0B2B 100%);
    opacity: 80%;
    font-weight:700; font-size:clamp(22px, 4vw, 36px);
    /* letter-spacing:.5px; */
    color:#fff; z-index:2;
    pointer-events:none; /* علشان الضغط يوصل للتايل */
  }

  @media (max-width: 900px){
    .gallery{grid-template-columns: 1fr 1fr; grid-auto-rows: 130px;}
    .tile.main{grid-column: 1 / span 2; grid-row: 1 / span 2;}
    .tile.side-top{grid-column: 1; grid-row: 3 / span 1;}
    .tile.side-bottom{grid-column: 2; grid-row: 3 / span 1;}
    .tile.right{grid-column: 1 / span 2; grid-row: 4 / span 2;}
  }
  @media (max-width: 560px){
    .gallery{grid-template-columns: 1fr; grid-auto-rows: 180px;}
    .tile.main, .tile.side-top, .tile.side-bottom, .tile.right{
      grid-column: 1; grid-row: auto;
    }
  }

  /* الـ Modal */
  .lightbox{
    position:fixed; inset:0; background:var(--overlay);
    display:none; align-items:center; justify-content:center; z-index:9999;
    backdrop-filter: blur(4px);
  }
  .lightbox.open{display:flex}
  .frame{
    position:relative; width:min(92vw, 1200px); height:min(84vh, 820px);
    background:#0b0d12; border-radius:16px; overflow:hidden; box-shadow:var(--shadow);
  }
  .slide{position:absolute; inset:0; display:flex; align-items:center; justify-content:center}
  .slide img{max-width:100%; max-height:100%; object-fit:contain; width: auto; height: auto;}
  .close, .nav{
    position:absolute; top:10px; border:none; background:rgba(0,0,0,.45); color:#fff;
    width:44px; height:44px; border-radius:10px; cursor:pointer; font-size:20px;
    display:flex; align-items:center; justify-content:center; backdrop-filter: blur(6px);
    z-index: 99;
  }
  .close{inset-inline-end:10px}
  .nav.prev{inset-inline-start:10px; top:calc(50% - 22px)}
  .nav.next{inset-inline-end:10px; top:calc(50% - 22px)}
  .counter{
    position:absolute; inset-inline-start:14px; bottom:12px; background:rgba(0,0,0,.45);
    padding:6px 10px; border-radius:8px; font-size:13px
  }
  .thumbs{
    position:absolute; inset-inline:0; bottom:0; background:rgba(0,0,0,.35);
    display:flex; gap:8px; padding:8px; overflow-x:auto;
  }
  .thumbs img{height:64px; border-radius:8px; opacity:.7; cursor:pointer; width: auto;}
  .thumbs img.active{outline:2px solid #fff; opacity:1}
  .thumbs::-webkit-scrollbar{height:8px}
  .thumbs::-webkit-scrollbar-thumb{background:#333; border-radius:10px}
/* ============================================== end Single Serivces page =================================================== */




.page-id-10 .about-img img{
	object-fit:contain;
	height:100%;
}
.page-id-10 .about-img{
	height:100% !important;
}


.page-id-10.dark .vision h3{
	color:white;
	font-size:28px;
}


@media screen and (max-width: 575px) {
    .page-id-10.dark  p {
        font-size: 18px !important;
			color:var(--gray-color) !important;
    }
}


.single-blog{
  padding: 10px;
  border: 3px solid var(--sec-color);
  border-radius: 8px;
}

.single-blog h5 a{
  color: var(--sec-color);
}

.sm-scroll .single-blog{
  min-width: 300px;
}