
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@font-face {
   font-family: 'Monfem';
   src: url('fonts/Monfem.otf') format('opentype');
   font-weight: normal;
   font-style: normal;
}
* {
  box-sizing: border-box;
}
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}
/* Contact Form Transparent Inputs */
.contact-form .form-control {
  background: rgba(255,255,255,0.08) !important;
  border: 1.5px solid #CCE50C !important;
  color: #fff;
  border-radius: 8px;
  box-shadow: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form{
  padding:50px 30px !important;
  border: 1px solid #FF943B;
  border-radius: 0px !important;
}
.contact-form .form-control:focus {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  color: #fff;
  box-shadow: 0 0 0 2px #CCE50C44;
}
.contact-form label.form-label {
  color: #CCE50C;
}
/* Who Are We Section: Equal Height Columns */
.who-are-we-section .row.align-items-center {
  display: flex;
  align-items: stretch;
}
.who-are-we-section .col-md-8,
.who-are-we-section .col-md-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.5rem;
}
.who-are-we-section .who-img-wrapper {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
}
.who-are-we-section .who-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 220px;
  border-radius: 18px;
}
.who-are-we-section .who-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .who-are-we-section .row.align-items-center {
    flex-direction: column;
  }
  .who-are-we-section .col-md-8,
  .who-are-we-section .col-md-4 {
    padding: 0;
  }
  .who-are-we-section .who-img-wrapper img {
    min-height: 160px;
    max-height: 320px;
  }
}
/* Timeline Section */
.timeline-section {
  background: transparent;
}
.timeline-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  margin: 0 auto;
  max-width: 950px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 220px;
  position: relative;
}
.timeline-dot {
  width: 44px;
  height: 44px;
  color: #CD80FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px #CCE50C44;
  font-family: 'Monfem';
  position: relative;
}
.timeline-step:after {
    position: absolute;
    width: 15px;
    height: 15px;
    /* left: 0; */
    content: "";
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #f3ff92;
    margin-top: -43px;
}
.timeline-content {
  border-radius: 14px;
  padding: 1.2rem 1rem;
  color: #fff;
  text-align: center;
}
.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #CD80FF;
  font-family: 'Monfem';
}
.timeline-desc {
  font-size: 0.97rem;
  color: #6c6c6c;
}

@media (max-width: 900px) {
  .timeline-wrapper {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .timeline-step {
    max-width: 100%;
    min-width: 0;
  }
}

body {
  background-color: #000;
  font-family: 'Rubik', sans-serif;
  direction: ltr;
}
/* About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top:100px;
}

.about-section .container {
  position: relative;
  z-index: 2;
}
.about-subtitle {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin:auto;
  margin-bottom: 0px !important;
  padding-top:10px;
  font-family: 'Monfem';    
  background-color: #CD80FF;
  width: fit-content;

}
.about-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 4px;
  background-color: #CCE50C;
  width: fit-content;
  margin: 0rem auto;
  font-family: 'Monfem';
}
.about-desc {
  color: #818181;
  padding: 1.5rem 1.2rem;
  padding-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  
  margin:auto;
  margin-top: -20px !important;
  font-weight: 400;
  display: block;
  width: 80%;
}
/* Footer Section */
.footer-section {
  background: #111;
  border-top: 1px solid #222;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.footer-logo {
  filter: brightness(0.95) grayscale(0.2);
  display: block;
  margin: auto;
  max-width: 300px;
}
.footer-links .nav-link {
  color: #808080 !important;
  font-size: 0.8rem;
  font-weight: normal;
  transition: color 0.2s;
}
.footer-links .nav-link:hover {
  color: #CCE50C !important;
}
.footer-social a {
  color: #bbb !important;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #CCE50C !important;
}
.hero-carousel-inner {
  width: 70%;
  max-width: 260px;
  min-width: 180px;
}


.loading-header {
  width: 100%;
  height: 4px;
  background: url('../img/bg-header-01.svg') repeat center;
  background-size: cover;
}
header{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 99999999 !important;
  background-color: transparent !important;
  border-bottom: 1px solid #fff2 !important;
}
.main-header {
  padding: 1rem 2vw;
}
.header-logo img {
  display: block;
  height: 38px;
}
.header-nav ul {
  display: flex;
  gap: 2vw;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.header-nav ul li a:hover {
  background: #222;
  color: #CCE50C !important;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler-icon {
    display: inline-block;
    width: 2em;
    height:2em;
}
.navbar-toggler{
   border-color:transparent !important;
}

.navbar-light .navbar-toggler-icon{
   filter: brightness(0) invert(1);
}
.lang-switch {
  border: 1px solid #fff2 !important;
  padding: 0.7rem 0.7rem;
}
html[lang="en"] .main-header {
  flex-direction: row-reverse;
}
html[lang="en"] .header-nav ul {
  flex-direction: row-reverse;
}
.glow-blur{
  background: rgba(202, 255, 0, 0.2);
  position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
        width: 300px;
    height: 300px;
    bottom: 20%;
    left: -50px;
}
.glow--purple {
    background: rgba(194, 133, 255, 0.3);
        position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
        width: 200px;
    height: 170px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Hero Section */
.hero__ {
  padding-top: 100px;
  width: 98vw;
  min-height: 65vh;
  position: relative;
  background: url('../img/bg-hero.jpeg') center center/cover no-repeat;
  background-size: cover;
  overflow: hidden !important;
  padding-bottom: 100px;
}

.hero__::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to left, #000 30%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
}

.hero__slug{
  font-size:2.5rem; color:#fff; font-weight:600;
  background-color: #CD80FF;
  font-family: 'Monfem';
  width: fit-content;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  margin-left: -5%;
     margin: 0 auto;
    margin-bottom: -10px;
    margin-left: -5%;
    display: block;
    z-index: -6;
    position: relative;
}
.hero-title .highlight{
padding: 0.5rem 1rem 0.4rem;
font-size: 3.5rem;
}
.hero-title .hero__slug_2{
  background-color: #FF943B;
  font-family: 'Monfem';
  width: fit-content;
  font-size:2rem; color:#fff; font-weight:600;
  padding: 0.5rem 1rem;
    margin-bottom: -10px;
    margin-left: 20%;
    display: block;
    z-index: -6;
    position: relative;
}
.hero-content {
  color: #fff;
  text-align: start;
  z-index: 29999;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}
.hero-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-app-img {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  box-shadow: 0 8px 32px #0008;
}
@media (max-width: 900px) {
  .hero-row { flex-direction: column; align-items: stretch; }
  .hero-col { padding: 1rem 0.5rem; }
  .hero-app-img { max-width: 90vw; }
}


.smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url("../img/smoke.webp") repeat bottom;
  background-position: center bottom;
  background-repeat: repeat-x;
  opacity: 0.6;
  pointer-events: none;
}

.smoke-effect {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: radial-gradient(circle at bottom, rgba(0,0,0,0.5), transparent 70%);
  filter: blur(2px);
}
.highlight{
  background-color: #CCE50C;
  font-family: 'Monfem';
  z-index: 9999;
  position: relative;
}
.service-box{
  background: rgba(34, 34, 34, 0.35);
  border-radius: 18px;
  width: 280px;
  padding: 0px;
  padding-top: 20px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.18);
  text-align: center  !important;
  position: relative;
}

.service-icon {
  width: 74px;
  height: 74px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 50px;
  position: relative;
}

.card-content{
  background: #121212;
    position: relative;
    margin-top: -12%;
    width: 100%;
    padding: 50px 6px 20px;
    -webkit-clip-path: polygon(0 30px, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0% 100%);
}
.service-title{
  color:#FFF;
  font-size: 1.2rem;
  text-transform: uppercase;
   font-family: 'Monfem';
}
.service-desc{
  font-weight:300;
  font-size: 0.75rem;
  padding-bottom: 0;
  margin-bottom: 0;
}
.box-flight {
  background-image: url('../img/03.svg');
   background-size: cover;
   background-position: center;
  border-radius: 0px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.box-activities {
  background-image: url('../img/06.svg');
  background-repeat: repeat;
   background-position: center;
  border-radius: 0px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.box-hotels {
  background-image: url('../img/07.svg');
  background-repeat: repeat;
   background-position: center;
  border-radius: 0px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.box-sim {
  background-image: url('../img/08.svg');
  background-repeat: repeat;
   background-position: center;
  border-radius: 0px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.box-hajj {
  background-image: url('../img/01.svg');
  background-repeat: repeat;
   background-position: center;
  border-radius: 0px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
}

.service-box:before {
  content: '';
  position: absolute;
  margin:4px;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.1);
  opacity: 1;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.owl_services-carousel{
  min-height: 500px;
  overflow: hidden !important;
}
.owl_services-carousel .owl-item {
  transform: scale(0.60);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.owl_services-carousel .owl-item.center {
  transform: scale(1.2);
  opacity: 1;
  z-index: 2;
  margin-top: 30px;
  margin-bottom: 30px;
}
.owl_services-carousel  .d-flex{
padding:20px;
}
.owl-carousel .owl-item{
  margin-top: 30px;
}
.sect__timeline{
  background: url('../img/bg-title.webp') center center/contain repeat;
  background-position: right;
  background-size: contain;
  padding: 100px 0px;
  margin-top: -100px;
}
.title-section{
  text-align: left;
}
.subtitle{
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
   font-family: 'Monfem';
}
.title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 4px;
  background-color: #CCE50C;
  width: fit-content;
  margin: 0.5rem 0px 0px;
  font-family: 'Monfem';
  padding-top:10px;
}
.desc{
  color: #818181;
  padding:0rem;
  padding-bottom: 0;
  font-size: 1.1rem;
  line-height: 2;
  font-weight: 300;
  margin-top: -12px;
  margin-bottom: -12px;
}
.who-title{
  font-size:2rem; color:#FFF; font-weight:700;
  font-family: 'Monfem';
  background-color: #CCE50C;
  width: fit-content;
  margin-left: -15%;
}
.who-slugon{
  font-size:1.1rem; color:#fff; font-weight:600;
  background-color: #CD80FF;
  font-family: 'Monfem';
  width: fit-content;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  margin-left: -30%;
}
.who-desc{
  color: #818181;
  padding: 1.5rem 1.2rem;
  padding-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: -1rem;
  font-weight: 300;
  text-align: justify;
}
.who-list li{
  display: inline-block;
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 300;
}
.who-list li:first-child{
  background-color: #FF943B;
  font-family: 'Monfem';
  width: fit-content;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.5rem;
}
.who-list li:nth-child(2){
  background-color: #408AD9;
  font-family: 'Monfem';
  width: fit-content;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.5rem;
}
.who-list li:nth-child(3){
  background-color: #04D1D6;
  font-family: 'Monfem';
  width: fit-content;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.5rem;
}

.shop_now {
  padding:100px 0px;
  position: relative;
  background: url('../img/h1_hero3.jpg') center/cover no-repeat;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -200px !important;
}

.shop_now::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    /* fade من فوق */
    linear-gradient(
      to top,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.1) 50%,
      rgba(0,0,0,0) 100%
    ),

    /* fade من تحت */
    linear-gradient(
      to bottom,
      #000 0%,
      rgba(15,28,36,0.2) 25%,
      rgba(15,28,36,0.5) 50%,
      rgba(15,28,36,0) 70%
    );
}

/* التدرج السينمائي من فوق + من تحت */
.shop_now::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    /* fade من فوق */
    linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.1) 20%,
      rgba(0,0,0,0) 40%
    ),

    /* fade من تحت */
    linear-gradient(
      to top,
      #000 0%,
      rgba(15,28,36,0.2) 25%,
      rgba(15,28,36,0.5) 50%,
      rgba(15,28,36,0) 70%
    );
}

.shop_now .content {
  position: relative;
  z-index: 3;
  color: #fff;
}

.contact-info-box {
  background:rgba(34,34,34,0.35);color:#fff;
}
.contact-title{
  background-color: #CD80FF;
  font-family: 'Monfem';
  width: fit-content; 
}
.shop_now .subtitle {
  background-color: #CD80FF;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Monfem';
   width: fit-content; 
   padding-top:10px;
   margin-left: 10%;
   padding: 0.5rem 1rem 0.3rem;
   margin-bottom: 0px !important;
}
.shop_now .title {
  margin:0px;
  padding: 0.5rem 1rem 0.4rem;
}
.shop_now .desc {
  
  font-size: 0.98rem;
    font-weight: normal;
    color: #fff;
    letter-spacing: 0px;
    background-color: rgba(0, 0, 0, 0.2);
    width: fit-content;
    max-width: 100%;
    margin-top: -44px;
    text-align: center;
    padding: 60px 20px;
    margin-left: -20%;
    position: relative;
    color: #FFF;
    line-height: 24px;
    z-index: -1;
}
.btn-contact{
  font-size: 1rem;
  background:#CCE50C;color:#222;font-weight:600;
  font-family: 'Monfem';
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  border: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.why-us__title{
color:#FFF;
background-color: #CD80FF;
font-family: 'Monfem';
width: fit-content;
padding: 0.5rem 1rem;
margin-top : 20%;
margin-left:20%;
}
.why-us h4{
  background-color: #04d1d6;
    font-family: 'Monfem';
    width: fit-content;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.5rem;
    margin-top:20px;
}
.why-us .h4{
  background-color: #408AD9;
    font-family: 'Monfem';
    width: fit-content;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.5rem;
    margin-top:40px;
}
.why-us p{
  color:#777;
  text-align: justify;
  width: 100%;
}
.grid__items {
	display: grid;
	place-content: center;
	min-height: 100vh;
	background: #000;
}

.grid__items .contain__box {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 1em;
	width: 800px;
	height: 500px;
	transition: all 400ms;
}

.grid__items .contain__box:hover .box {
	filter: grayscale(100%) opacity(24%);
}

.grid__items .box {
	position: relative;
	background: var(--img) center center;
	background-size: cover;
	transition: all 400ms;
	display: flex;
	justify-content: center;
	align-items: center;
}

.grid__items .contain__box .box:hover {
	filter: grayscale(0%) opacity(100%);
}

.grid__items .contain__box:has(.box-1:hover) {
	grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
}

.grid__items .contain__box:has(.box-2:hover) {
	grid-template-columns: 1fr 3fr 1fr 1fr 1fr;
}

.grid__items .contain__box:has(.box-3:hover) {
	grid-template-columns: 1fr 1fr 3fr 1fr 1fr;
}

.grid__items .contain__box:has(.box-4:hover) {
	grid-template-columns: 1fr 1fr 1fr 3fr 1fr;
}

.grid__items .contain__box:has(.box-5:hover) {
	grid-template-columns: 1fr 1fr 1fr 1fr 3fr;
}

.grid__items .box:nth-child(odd) {
	transform: translateY(-16px);
}

.grid__items .box:nth-child(even) {
	transform: translateY(16px);
}

.grid__items .box::after {
	content: attr(data-text);
	position: absolute;
	bottom: 20px;
	background: #000;
	color: #fff;
	padding: 10px 10px 10px 14px;
	letter-spacing: 4px;
	text-transform: uppercase;
	transform: translateY(60px);
	opacity: 0;
	transition: all 400ms;
}

.grid__items .box:hover::after {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 400ms;
}


/**************************/

.app_screen {
  width: 40rem;
  height: 33rem;
  margin: 0 auto !important;
  margin-left:27% !important;
  position: relative;
}

.app_screen li {
  width: auto;
  height: 500px;
  background: #333;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.app_screen li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border:1px solid #FFDC5C;
  border-radius: 20px;
}

.app_screen li p {
  color: white;
  font-weight: bold;
  font-size: 5em;
  text-align: center;
  margin-top: 1.175em;
}

.app_screen .items {
  position: absolute;
}

.app_screen .main-pos {
  margin-left: 1em !important;
  z-index: 3000;
  /*background-image: url('https://dl.dropbox.com/u/32649907/imgs/shadow.png');*/
}

.app_screen .left-pos {
  opacity: .3;
  margin-left: -17em !important;
  z-index: 1000;
  -webkit-transform: scale(.75);
  -moz-transform: scale(.75);
  transform: scale(.75);
}

.app_screen .back-pos {
  margin-left: 2em !important;
  opacity: .05;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  transform: scale(.5);
}

.app_screen .right-pos {
  opacity: .3;
  margin-left:  21em !important;
  z-index: 1000;
  -webkit-transform: scale(.75);
  -moz-transform: scale(.75);
  transform: scale(.75);
}

.app_screen span {
  position: relative;
  margin: 0 auto;
  left: 17em;
  top: 20em;
}

.app_screen_title{
  text-align: center;
  color:#FFF;
}
.app_screen_title_glow{
  display: inline-flex;
  gap: 10px;
  text-align: center;
}
.app_screen_title a{
  display: inline-block;
  color: #fff;
  border: 1px solid #CD80FF;
  font-family: 'Monfem';
  padding: 0.5rem 1rem;
  margin-top: 20px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  border-radius: 8px;
}

.app_screen_title a img{
  border-radius: 8px;
  width: 130px;
  height: auto;
  margin-left: 8px;
  transition: transform 0.2s;
}

/* .grid__items .contain__box */
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 768px) and (max-width: 991px) {

}
@media (max-width: 767.98px) {
  body{
    overflow-x: hidden !important;
  }
  header{
    background-color: #222222 !important;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000; /* أو اللون اللي تحبيه */
    padding: 15px;
    z-index: 999;
  }
  .main-header .row.align-items-center {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .header-logo {
    flex: 0 0 auto;
    width: auto !important;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 0;
  }
  .header-nav {
    flex: 1 1 0%;
    width: auto !important;
    max-width: 70%;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar {
    width: 100% !important;
    padding: 0 !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  html,
  body {
    overflow-x: clip;
    width: 100%;
  }
  body{
    overflow-x: hidden !important;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000; /* أو اللون اللي تحبيه */
    padding: 15px;
    z-index: 999;
  }
  .who-are-we-section {
    padding: 0px !important;
  }
  .hero__{
    width: 90vw;
  }
  .grid__items .contain__box{
    width:350px;
  }
  .title{
    display: block;
    margin: auto;
    margin-top: 20px;
  }
  .hero-desc{
    text-align: center;
  }
  .app_screen {
    width: 24rem !important;
    height: 33rem !important;
    margin: 0 auto !important;
    margin-left: 0% !important;
    position: relative;
  }
  .app_screen .right-pos {
    opacity: .3;
    margin-left: 7em !important;
  }
  .who-title{
    margin-left: 20% !important;
  }
  .who-slugon{
    margin-left: 2% !important;
  }
  .shop_now .desc{
    margin-left: 10% !important;
    padding: 20px 10px;
    width: 90%;
    margin-top: -20px;
  }
  footer .footer-logo{
  display: block;
  margin: 0 auto;
  }
  .why-us h4{
    display: block;
    margin: auto;
  }
  .who-desc{
    text-align: center;
  }
  .why-us p{
    text-align: center;
  }
  .about-section{
    padding-top: 0px !important;
  }
  .app_screen li img {
    width: 100%;
    height:380px !important;
    margin:0 auto !important;
    overflow:hidden;
  }
   .app_screen li{
    width:220px !important;
    height:380px !important;
    background:transparent;
    overflow:visible !important;
  }
  .app_screen li img{
    width:100%;
    height:100%;
    object-fit:contain !important;
    display:block;
  }

  .app_screen .main-pos{
    margin-left:0 !important;
    transform:scale(1);
  }

  .app_screen .left-pos{
    margin-left:-5.5em !important;
    transform:scale(.72);
  }

  .app_screen .right-pos{
    margin-left:5.5em !important;
    transform:scale(.72);
  }

  .app_screen .back-pos{
    opacity:0;
    transform:scale(.5);
  }
}
@media (max-width: 479px) {
  html,
  body {
    overflow-x: clip;
    width: 100%;
  }
  body{
    overflow-x: hidden !important;
  }
  .who-are-we-section {
    padding: 0px !important;
  }
  .about-section{
    padding-top: 0px !important;
  }
  .hero__{
    width: 90vw;
  }
  .why-us h4{
    display: block;
    margin: auto;
  }
  .who-desc{
    text-align: center;
  }
  .why-us p{
    text-align: center;
  }
  .grid__items .contain__box{
    width:350px;
  }
  .title{
    display: block;
    margin: auto;
    margin-top: 20px;
  }
  .hero-desc{
    text-align: center;
  }
  .app_screen {
    width: 24rem !important;
    height: 33rem !important;
    margin: 0 auto !important;
    margin-left: 0% !important;
    position: relative;
  }
  .app_screen .right-pos {
    opacity: .3;
    margin-left: 7em !important;
  }
  .who-title{
    margin-left: 20% !important;
  }
  .who-slugon{
    margin-left: 2% !important;
  }
  .shop_now .desc{
    margin-left: 10% !important;
    padding: 20px 10px;
    width: 90%;
    margin-top: -20px;
  }
  footer .footer-logo{
    display: block;
    margin: 0 auto;
  }
  .app_screen li img {
    width: 100%;
    height:380px !important;
    margin:0 auto !important;
    overflow:hidden;
  }
   .app_screen li{
    width:220px !important;
    height:380px !important;
    background:transparent;
    overflow:visible !important;
  }
  .app_screen li img{
    width:100%;
    height:100%;
    object-fit:contain !important;
    display:block;
  }

  .app_screen .main-pos{
    margin-left:0 !important;
    transform:scale(1);
  }

  .app_screen .left-pos{
    margin-left:-5.5em !important;
    transform:scale(.72);
  }

  .app_screen .right-pos{
    margin-left:5.5em !important;
    transform:scale(.72);
  }

  .app_screen .back-pos{
    opacity:0;
    transform:scale(.5);
  }
}

@media (max-width: 767.98px) {
  .navbar-collapse.show ~ .header-logo,
  .main-header .row.align-items-center .header-logo {
    align-self: flex-start !important;
  }
  .main-header .row.align-items-center {
    align-items: flex-start !important;
  }
}
.privary__page {
color:#FFF;
}
.privary__page h2{
  font-size: 20px;
  color:#FFF;
}
.privary__page p{
  text-align: justify;
  color:#aeaeae;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.privary__page ul li{
  text-align: justify;
  color:#aeaeae;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}