/*css By Razen Kellesly*/
  * { 
      box-sizing: border-box;
 
 scroll-behavior: smooth;
    }
	
		
		:root {
  --primary-color: #286D4A;
  --secondary-color: #616262;
  --background-light: #F8F8F8;
  --text-light: #FFFFFF;
  --highlight-color: #F2C94C;
    --lang-size: 40px;
  --overlap: 20px; /* مقدار التداخل */
}

.lang-switcher{
  position: fixed;
  top: 20px;
  left: 20px;
  width: var(--lang-size);
  z-index:9999999;
  opacity: 0.1;
  transition:all 1s ease
}
.lang-switcher:hover{ 
  opacity: 1
}
.lang{
  width: var(--lang-size);
  height: var(--lang-size);
  border-radius: 50%;
  overflow: hidden;
  display: block;
  position: relative;         /* للسماح بالـ z-index */
 
  transition: transform .6s ease, box-shadow .25s ease, z-index .1s, border-color .25s ease;
}

.lang + .lang{
  margin-top: calc(-1 * var(--overlap)); /* تداخل بسيط */
}

.lang img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lang--top{ z-index: 2; }      /* الأولى فوق الثانية افتراضيًا */

.lang:hover{
  transform: rotate(20deg) scale(1.08);
  z-index: 5;                  /* تصير فوق الثانية عند الهوفر */
  box-shadow: 0 6px 16px var(--primary-color), 0 0 0 var(--primary-color)  ;
  border-color: var(--primary-color);
}

/* احترام تفضيل تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .lang{ transition: none; }
  .lang:hover{ transform: none; }
}
 
 
		@font-face {
      font-family: 'DisuFont';
      src: url('./disuFont.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }


.textCenter{text-align:center !important}
.textRight{text-align:right !important}
.textLeft{text-align:left !important}
.textJustify{text-align:justify !important}
 

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
 scroll-behavior: smooth;
   scroll-snap-type: y mandatory;
  --scroll-duration: 10s; /* مدة الانتقال */
  font-family: 'DisuFont', Arial, sans-serif;
}

 
/* للمتصفحات الحديثة */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    scroll-timeline-duration: 2s;
  }
}

.sheet {
	  overflow-x: hidden;
  height: 100vh;
  overflow-y: scroll; /* يسمح بالتمرير */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE and Edge */
}

.sheet::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}


	
html {
  scroll-behavior: smooth;
}

  body {
  background-color: var(--background-light);
 
  color: var(--secondary-color);
}

    #dots-overlay {
      position: fixed;
      top: 0;
      left: 0; 
      pointer-events: none;
      z-index: 999999;
    }

    .dot-container {
      position: fixed;
      pointer-events: none;
      will-change: transform;
      z-index: 999999;
    }

    .dot {
	  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
      border-radius:  47% 53% 53% 47% / 65% 46% 54% 35%; 
      transition: all 0.4s ease;
	  
	  filter: blur(0.5px);
    }

    #dot1 {
      width: 9px;
      height: 9px;
      background-color: #999;
      transition: all 2s ease;
    }

    #dot2 {
      width: 6px;
      height: 6px;
      background-color: #286D4A;
      transition: all 2s ease;
    }

    .myBoxs {
      display: inline-block;
      margin: 100px;
      width: 200px;
      height: 200px;
      background-color: rgba(51, 51, 51, 0.1);
    }
	
	.rotate {
  animation: spina 6s ease-in-out infinite;
}

@keyframes spina {
  
  0% { position: relative;left: 0px;top: 0; } 
  20% { position: relative;left: 30px;top: 0; } 
  40% { position: relative;left: -30px;top: 0; }
  60% { position: relative;left: 30px;top: 0; }
 80% { position: relative;left: -30px;top: 0; }
  100% { position: relative;left:  0px;top: 0;  }
 
   
}
.diHold{
position:relative; 
 
}
.diparts{
 
}
.part1{max-width:75%; }
.part2{position:absolute;
	width: 0px;
    height:0px;
    top: 150px;
    left : -55px;
   	border-radius: 47% 53% 53% 47% / 65% 46% 54% 35%;
    background-color: #286D4A;
	transition:all 3s ease;	
  -webkit-animation: spin 1s linear infinite;
  animation: spin 20s linear infinite;}
  
 .reveal{min-height:130px}
 .scaleOnhover{
transform: scale(1);
	 transition:all 2s ease;	 
 }
  .scaleOnhover:hover{
 transform: scale(1.1);
  }
  
  @-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}



@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
	/*
 .div1, .div2, .div3 {
  transition: transform 0.3s ease;
  will-change: transform;
}
	*/
	
	
	.allscrollitem {
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.allscrollitem::-webkit-scrollbar {
  display: none;
}
 
 .group {
  height: 700px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
  opacity: 0.2;
  pointer-events: none;
}
.group.active {
  opacity: 1;
  pointer-events: all;
}

/* العناصر اليمنى واليسرى */


.group:not(.active) .rightEl,
.group:not(.active) .leftEl {
  opacity: 0;
  pointer-events: none;
}

.mask-wrapper {
	  width: 350px;
  height: 350px;
  overflow: hidden;
  position: relative;
  margin: 1rem 0;  border: 2px solid gray;
  transition: all 0.5s ease, height 0.5s ease;
 
}

.mask1{

  border-radius: 19% 81% 32% 68% / 77% 32% 68% 23%;

}

.mask2{

  border-radius: 32% 68% 29% 71% / 27% 42% 58% 73%;

}

.mask3{

border-radius: 23% 77% 69% 31% / 39% 24% 76% 61%;

}

.mask4{

border-radius: 59% 41% 49% 51% / 53% 77% 23% 47%;

}
.mask1:hover {
  width: 450px;
  height: 450px;
border-radius: 67% 33% 61% 39% / 47% 30% 70% 53%;
}
.mask2:hover {
  width: 450px;
  height: 450px;
border-radius: 81% 19% 71% 29% / 45% 74% 25% 55%;
}
.mask3:hover {
  width: 450px;
  height: 450px;
border-radius: 48% 25% 50% 25% / 62% 46% 54% 35%;
}
.mask4:hover {
  width: 450px;
  height: 450px;
border-radius: 30% 70% 24% 76% / 65% 28% 72% 35%;
}

.image-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
}

.image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

 
@keyframes rotateMask {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1060deg);
  }
}

.seclogo{
	width:250px
}

/*
 .div1, .div2, .div3 {
      position: absolute;
      top: 50%;
      width: 100px;
      height: 100px;
      margin-top: -50px;
      border-radius: 50%;
      text-align: center;
      line-height: 100px;
      color: white;
      font-weight: bold;
      font-family: sans-serif;
    }

    .div1 {
      background: #e74c3c;
      left: 30%;
    }

    .div2 {
      background: #3498db;
      left: 45%;
    }

    .div3 {
      background: #2ecc71;
      left: 60%;
    }
	*/
/*Start Design*/
 
 .fsection {
  background-image: url('images/fbg.png');
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
 min-height:800px;
  animation: bgfin 50s infinite;
} 
 
 .sssection {
  background-image: url('images/sbg.png');
  width: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
 min-height:800px;
 
}
 
.ssection {
  position: relative;
  height: 700px;
  overflow: hidden;
  background-color: #f8f8f8;
}

 .values {
  background-image: url('images/t3bg.png');
  width: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
 min-height:800px;
   animation: bgfin 50s infinite;
 
}

 .values1 {
  background-image: url('images/t5bg.png');
  width: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
 min-height:800px;
   animation: bgfin 50s infinite;
 
}
 .values2 {
  background-image: url('images/t6bg.png');
  width: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
 min-height:800px;
   animation: bgfin 50s infinite;
 
}


.minSec{
	background:#156839;
	height:500px;
	transition:all 1s ease;    overflow : hidden;
}




 .lotss{position:absolute;left:20% ;width:350px; top:15%}
 .lotss2{position:absolute;right:20% ;width:350px; bottom:15%}
 
 
    .lop{background: url('images/lop-01.png');min-height: 800px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left top;
	 animation: bgfin1 40s infinite;
}
 

.charitySec{background: url('images/charitybg-01-01.png');min-height: 700px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position:  right center ;
	 animation: bgfin2 520s infinite;
	
}

.clientHis{background: url('images/clbg3.png');min-height: 700px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position:  center center ; 
	
}
.contacts{
		 background-color:var(--secondary-color);
  background-image: url('images/conbg1-01.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-attachment: scroll;
  animation: bgfin1x 150s infinite;
 
	}


.allscrollitem {
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.allscrollitem::-webkit-scrollbar {
  display: none;
}

.group {
  scroll-snap-align: start;
  height: 700px; /* ← نفس ارتفاع السكتش */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
  opacity: 0.2;
  pointer-events: none;
}

.group.active {
  opacity: 1;
  pointer-events: all;
}





















.background-grid {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  width: 100%;
  height: 100%;
  gap: 3.5%; /* ← هنا المفتاح */
  z-index: 0;
  pointer-events: none;
  
    
}



	@keyframes bgfin1x {
  0% {
    background-position: left top; 
  }
  50% {
    background-position: left bottom;
  }
  100% {
    background-position:left top; 
  }
}


.shape {
  width: 150%;
  aspect-ratio: 1/1;
  border: 1px dashed #616262; 
  opacity: 0.2;
  transition: all 0.3s ease
    
}
 
/* الأشكال الخمسة */
.shape1 { border-radius: 19% 81% 32% 68% / 77% 32% 68% 23%; }
.shape2 { border-radius: 22% 78% 65% 35% / 30% 62% 38% 70%; }
.shape3 { border-radius: 47% 53% 53% 47% / 65% 46% 54% 35%; }
.shape4 { border-radius: 32% 68% 29% 71% / 27% 42% 58% 73%; }
.shape5 { border-radius: 59% 41% 49% 51% / 53% 77% 23% 47%; }

.section-content {
  position: relative;
  z-index: 1;
  padding: 60px;
}


@keyframes rotateClockwise {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes rotateCounterClockwise {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-360deg); }
  100% { transform: rotate(0deg); }
}


@keyframes bgfin {
  0% {
    background-position: center top;
  }
  90% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}
@keyframes bgfin1 {
  0% {
    background-position: left top; 
  }
  90% {
    background-position: left bottom;
  }
  100% {
    background-position:left top; 
  }
}



@keyframes bgfin2 {
  0% {
    background-position: right center ;
  }
  50% {
    background-position: left center ;
  }
  100% {
    background-position: right center ;
  }
}

h1,h2,h3,h4,h5,h6,h7,h8,p{margin:0 ; padding:0}

h1 { 
  font-family: 'DisuFont', sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #286D4A; /* الأخضر الرئيسي */
 
}

h2 {
  font-family: 'DisuFont', sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #286D4A;
 
}

h3 {
  font-family: 'DisuFont', sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #616262; /* الرمادي الغامق */
 
}

h4 {
  font-family: 'DisuFont', sans-serif;
  font-size: 26px;
  font-weight: normal;
  color: #616262;
 
}

h5 {
  font-family: 'DisuFont', sans-serif;
  font-size: 22px;
  font-weight: normal;
  color: #616262;
  
}

h6 {
  font-family: 'DisuFont', sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #999; /* رمادي أفتح للتفاصيل أو العناوين الفرعية */
 
}

p {
  font-family: 'DisuFont', sans-serif; /* أو DisuFont إذا بدك كل النص */
  font-size: 18px;
  line-height: 1.8;
  color: #444; /* رمادي غامق مريح للقراءة */
 
}


.container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* Container-fluid - بعرض كامل */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Row - مرن، يدعم الأعمدة */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* عمود - يأخذ عرض تلقائي */
.col {
  flex: 1;
  padding: 15px;
}

/* حجم أعمدة يدوي (مثلاً col-6 = 50%) */
.col-1 { width: 8.3333%; }
.col-2 { width: 16.6666%; }
.col-3 { width: 25%; }
.col-4 { width: 33.3333%; }
.col-5 { width: 41.6666%; }
.col-6 { width: 50%; }
.col-7 { width: 58.3333%; }
.col-8 { width: 66.6666%; }
.col-9 { width: 75%; }
.col-12 { width: 100%; }



.centerCol {
  display: flex;
  flex-direction: column; /* لأن المحتوى عمودي */
  align-items: center;     /* توسيط أفقي */
  justify-content: center; /* توسيط عمودي */ 
  text-align: center;
}

.centerColx {
  display: flex;
  flex-direction: column; /* لأن المحتوى عمودي */ 
  justify-content: center; /* توسيط عمودي */ 
  text-align: justify;
}


 

[class^="col-"] {
  box-sizing: border-box;
  padding: 15px;
}


/* Hamburger icon */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #286D4A;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* الحالة النشطة – X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -11px);
}

.hamburger span {
  transform-origin: center;
}

/* Sidebar (start hidden on small screens) */

.sidebar {
  position: fixed;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  padding-top: 60px;
  transition: left 2s ease;
  z-index: 1000;
 background-color: rgba(255,255,255,0.8);
  background-image: url('images/lop-01.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-attachment: scroll;
  animation: bgfin1 40s infinite;
}

.sidebar.show {
  left: 0;
}


.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 30px;
}

.sidebar ul li a {
  display: block;
  padding: 12px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'DisuFont', sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;  
  width:20%;
  margin:0 auto;
  text-align:center;
  font-weight:bold; 
  background-color: rgba(225,230,227,0.6);
 
    border-bottom-right-radius : 15px;
    border-top-left-radius: 15px;
	    border-bottom-left-radius : 2px;
    border-top-right-radius:2px; 
	 border-top: 0px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);

}


.sidebar ul li a:hover {
  background-color:  rgba(225,230,227,1);
  color:var(--secondary-color);
  border-top: 2px solid var(--primary-color);
  border-bottom: 0px solid var(--primary-color);
     border-bottom-left-radius : 15px;
    border-top-right-radius: 15px;
	   border-bottom-right-radius : 2px;
    border-top-left-radius: 2px;
	 width:22%;

}


.sidebar ul:hover li a:not(:hover) {
  opacity: 0.9;
  transform: scale(0.95);
   
  transition: all 0.3s ease;
}

.navBg{
	
}

.animated-bg {
  background: linear-gradient(320deg, #616262, #999);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.marble-bg {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color),
    #444,
    var(--primary-color)
  );
  background-size: 600% 600%;
  animation: marbleMove 90s ease-in-out infinite;
  filter: blur(10px);
}

@keyframes marbleMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.p-top75{padding-top:180px}

.button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: 'DisuFont', sans-serif;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: var(--secondary-color);
  transform: scale(1.03);
}

.button:active {
  background-color: var(--primary-color);
  transform: scale(0.98);
}

[class^="sync"]:not(.sync1) {
  display: none;
}
.syncFade {
  opacity: 0;
  transition: opacity 0.6s ease;
}

 

.citiesEach{display:inline-block;margin: 30px;
    text-align: center; cursor: pointer;}

.indusEach{display:inline-block;margin: 10px;
    text-align: center;display:none}
	
 .bgshadow{
  filter: drop-shadow(2px 4px 6px gray);
  transition:all 1s ease;
}
 .bgshadow:hover{
  filter: drop-shadow(19px 16px 15px gray)
  
}

.bgshadowmaps{
   filter: drop-shadow(0px 0px 0px darkgreen);
  
    transition:all 2s ease;
}

 
.allintxt2{
				padding: 20px;
				margin: 90px 10px 5px 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border-top: 15px solid var(--primary-color);}  
.allintxt3{
				padding: 20px;
				margin: 90px 10px 5px 10px;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 20px;
    border-top: 15px solid var(--primary-color);} 
	
.allintxt{
				padding: 20px; margin: 90px 10px 5px 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border-top: 15px solid var(--primary-color);}
	.valtxtc h4{
		color:var(--primary-color);
		font-weight:bold;
		
	}
	.allintxt h3{text-align:justify;}
	.valtxtc {
		min-height:230px
	}
	
 
 .allSlide {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
}

.allSlideInner {
  display: flex;
  
  transition: transform 1s ease;
  will-change: transform;
}


.slider-dots {
  text-align: center; 
  position: absolute;
    bottom: 0;
    left: 48%;
}

.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots .active {
  background-color: var(--primary-color);
}



 .slider-controls {
  position: absolute;
  top: 50%;
z-index:1000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-arrow {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  pointer-events: all;
}

 /*.fsection,.ssection{display:none}*/

 
.cardsHolder {
  text-align: center;
  padding: 2rem;
}

.cardsEach {
  display: inline-block;
  width: 450px;
  margin: 1rem;
}

.card {
  background: rgba(255,255,255,0.8);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 1rem;
  height: 100%;
  transition:all 0.3s ease;
  border-top:5px solid var(--primary-color);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-top:10px solid var(--primary-color);
	  background: rgba(255,255,255,1);
}

.card .content {
  text-align: center;
}

 

.card h3 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1rem; 
  letter-spacing: 1px;
  text-align:left;
}

.card p {
  font-size: 1rem;
  line-height: 1.2;
  color: #333;
  padding-left:50px;
  text-align:justify;
}

 .ceoImag{border-radius :47% 53% 53% 47% / 65% 46% 54% 35%; border-right:5px solid  var(--primary-color);}
 .founerImag{border-radius :47% 53% 53% 47% / 65% 46% 54% 35%; border-left:5px solid  var(--primary-color);}
 
 
 .inPara{margin:10px ;padding:10px ;
 border-left:3px solid var(--primary-color);}


#progressBar{
	width:0%;
	position:fixed;
	left:0;
	bottom:0;
	background: var(--primary-color);
	height:5px;
	transition:all 0.3s ease;
	z-index:100000000;
}


.minh{height:500px}

.minSvg{
	
	width:80%;
	transition:all 1s ease;
}

.hiddinContent{display:flex}
 .st0, .st1{transition: all  1s ease}
 .norraa{width:0%;transition: all  0.3s ease}
 .norraaa{opacity:0%;transition: all  1s ease}
 
 
.ceoTxt,
.founderTxt {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.textActive {
  display: block;
  opacity: 1;
  transform: translateY(0); transition: all 0.6s ease;
}

.imactive {
  opacity: 1 !important;
  transform: scale(1.05); transition: all 0.6s ease;
}

.ounerBg img {
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
}


.eachChar img{width:40px; vertical-align:middle; display:inline-block; margin: 5px}
.eachChar h5{ vertical-align:middle; display:inline-block; margin: 5px}
.sawwa {padding:50px;min-height:600px}
 
.charIma{width:200px ; vertical-align:middle}


.eachChar {
	text-align:justify;
  opacity: 0;
  transform: translateY(30px) scale(1.6);
  transition: all 1.6s ease;
  width:50%
 

}
.eachChar.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
 
}



#clientList {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 50px;
  max-width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
 
}

 

#clientList::-webkit-scrollbar {
  height: 8px;
}

#clientList::-webkit-scrollbar-thumb {
  background: rgba(170,170,170,0.1);
  border-radius: 4px;
  transition:all 2s ease;
}
 

#clientList:hover::-webkit-scrollbar-thumb {
  background: rgba(170,170,170,0.5);
}

.clientLogo {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.5);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.clientLogo:hover {
  transform: scale(2);
  background: rgba(255,255,255,1);
}

.clientLogo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.get80width{width:80%}

	
.nopm{padding:0;
margin:0;}

.theGmap{opacity:0.7; transition:all 1s ease}
.theGmap:hover{opacity:1;  }
.contactForm {
  width: 90%;
  padding:10px;
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px; 
  margin:0 auto;
}
.contactForm label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}


.contactForm input,
.contactForm   select,.contactForm  textarea {
  width: 100%;
  padding: 14px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
 
}
.contactForm button {
  width: 100%; 
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 1s ease;
  padding:20px 0
}

.contactForm button:hover {
  background-color:  var(--secondary-color);
}
.contSec{
	background-color:rgba(255,255,255,0.8);
	padding:20px;
 
}
.jobSec{
	background-color:rgba(255,255,255,0.8);
	padding:20px;
	 
	display:none;
}

.footer {
  background-color: #f4f4f4;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #555;
}
.contactCont img{
   width:30%
}
/*
 
.contactForm h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contactForm label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contactForm input,
.contactForm textarea {
  width: 100%; ;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px; 
  font-size: 16px;
}

.contactForm button {
  width: 100%; 
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contactForm button:hover {
  background-color: #1e5238;
}


.formSection {
  
}

input[type="radio"] {
 
}

*/
.dnoin{display:   ;}

.plus25{font-size:1.25em;
color:var(--primary-color);font-weight: bold;}

.cursor-image {
 position:absolute; bottom:90%; left:48%;

}


.cursor-image img {
 width:65%;   opacity:1;
 transition:all 0.3s ease;
 
}

.cursor-image img.animate-cursor {
  animation: viewIm 2s ease-in-out infinite;
}
.animate-cursor1 {
   animation: viewIma 2s ease-in-out infinite;
}

@keyframes viewIm {  
  0% { opacity:0  }   
  50% { opacity:1 }   
  100% { opacity:0 }   
}


@keyframes viewIma {  
  0% { bottom:3% }   
  50% { bottom:0%}   
  100% { bottom:3% }   
}


.syncdo{
	height:550px
}

.spadd{padding:10px}


.contLists {
  list-style: none;
  padding: 0;
  margin: 0;
      display: inline-block; 
}

.contLists li {
  margin-bottom: 4px;
}

.contLists li a {
  display: block;
  padding: 2px 8px;
  margin: 18px 20px;
  color: #fff;
  text-decoration: none;
  font-family: 'DisuFont', sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;
  border-left: 2px solid rgba(255,255,255,0.4);
 
 
}


.contLists li a:hover {
 
border-left: 3px solid var(--primary-color);
}

.locIcon{width:22px; vertical-align:sub}
.h3con{color:#fff; margin:20px;font-size:23px ;border-bottom:2px solid rgba(255,255,255,0.4); transition:all 1s ease}

.sasax:hover .h3con{color:var(--primary-color); margin:20px;font-size:23px ;border-bottom:2px solid var(--primary-color);}

/*css By Razen Kellesly*/

 
/* ====== Mobile (<=768px) ====== */
@media screen and (max-width: 768px) {
  .col, .col-6, .col-4, .col-3, .col-2, .col-1,.col-9  {
    width: 100% !important;
    margin:7px !important;
  }
.p-top75{padding-top:15px}
   
   .image-holder {
  
    width: 250px;
    height: 250px;
}



.sidebar ul li a { 
  padding: 0px;   
width:40%;}

.card p {
  font-size: 0.8rem;
  line-height: 1.2;
  color: #333;
  padding-left:1px;
  text-align:justify;
}
.mask-wrapper {
    width: 200px;
    height: 200px;
    
}

.ounerBg img{width:150px}

.mask1:hover {
  width: 230px;
  height: 230px;
border-radius: 67% 33% 61% 39% / 47% 30% 70% 53%;
}
.mask2:hover {
  width: 230px;
  height: 230px;
border-radius: 81% 19% 71% 29% / 45% 74% 25% 55%;
}
.mask3:hover {
  width: 230px;
  height: 230px;
border-radius: 48% 25% 50% 25% / 62% 46% 54% 35%;
}
.mask4:hover {
  width: 230px;
  height: 230px;
border-radius: 30% 70% 24% 76% / 65% 28% 72% 35%;
}

.sawwa {
    padding: 5px;  
  min-height: auto;  
}
.eachChar{width: 100%;}
.minh{min-height:20px !important;
height:auto}
   
   .fsection {
    background-image: url(images/fbg.png);
    width: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 500px;
    animation: bgfin 50s infinite;
	padding-left:20px
}
   
   .lop {
    background: url(images/lop-01r.png);
    min-height: 500px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left top;
   animation: bgfin1 40s infinite;}
   
   
   
   
   
   
   
   .cities {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 15px;
  -webkit-overflow-scrolling: touch; /* سلاسة في iOS */
}

.section-content{padding:10px}

.bgshadowmaps {
    width: 65%;
    height: auto;
	}
	
	 .values, .values1, .values2 { 
  height:500px;
  overflow:scroll
 
}
	
.syncdo{ height: auto;}
.valtxtc{min-height:auto}
.val2030 img{width:200px}

.cardsHolder{padding:5px}

.cardsEach 
 {
    display: inline-block;
    width: auto;
    margin: 2px;
}

.cities::-webkit-scrollbar {
  height: 8px;
}

.cities::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}

.citiesEach {
  flex: 0 0 auto;   
  padding:10px;/*
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;*/
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

.citiesEach img {
  height: 60px;
  margin-bottom: 10px;
}

.citiesEach h5 {
  font-size: 1rem;
  color: var(--primary-color, #286D4A);
  margin: 0;
}

.citiesEach:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
@keyframes bgfin {
  0% {
    background-position: right top;
  }
  90% {
    background-position: right bottom;
  }
  100% {
    background-position: right top;
  }
}
   
   
   
   
/* أحجام ديناميكية */
h1 {
  font-size: clamp(1.8rem, 4vw + 0.5rem, 3rem); /* من 28px لغاية 48px */
  color: var(--h-color-main);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw + 0.4rem, 2.5rem); /* من 24px لغاية 40px */
  color: var(--h-color-main);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.4vw + 0.3rem, 2rem); /* من 20px لغاية 32px */
  font-weight: 600;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.2rem, 1.6rem); /* من 18px لغاية 26px */
  font-weight: 600;
}

h5 {
  font-size: clamp(1rem, 1.6vw + 0.2rem, 1.375rem); /* من 16px لغاية 22px */
  font-weight: 500;
}

h6 {
  font-size: clamp(0.875rem, 1.2vw + 0.2rem, 1.125rem); /* من 14px لغاية 18px */
  font-weight: 500;
  color: #999; /* أخف لتمييز h6 */
}

p {
  font-family: 'DisuFont', Arial, sans-serif;
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.125rem); /* من 14.5px لغاية 18px */
  line-height: 1.8;  /* سطر مريح للقراءة */
  margin: 0 0 1em;   /* مسافة بين الفقرات */
  color: #444;       /* رمادي مريح */
  text-align: justify; /* توزيع متوازن للنص */
}
}