body {overflow-x:hidden;margin:0;padding:0}



*{
	box-sizing: border-box;
}
.clear{
	clear:both;
	height: 0px;
}
.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 20px 30px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.4s ease;
    min-width: 300px;
}
.popup-success { background-color: #28a745; }
.popup-error   { background-color: #dc3545; }
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}
 .hoverLogic {
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}

/* Background overlay */
.hoverLogic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.hoverLogic:hover::before {
  transform: scaleX(1);
}
.hoverLogicAr::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin:right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.hoverLogicAr:hover::before {
  transform: scaleX(1);
}
.container {
	width: 94%;
	margin: 0px auto;
	padding-top: 20px;
	padding-right: 3%;
	padding-left: 3%;
	padding-bottom: 0;
	overflow: hidden;
/*	//background-image: url(../my-images/line-pattern3.png);*/
	box-sizing: content-box
}

.container::after {
    content: "";
    display: table;
    clear: both;
}
.container2 {
	width: 94%;
	margin: 0px auto;
	padding-top: 20px;
	padding-right: 3%;
	padding-left: 3%;
	padding-bottom: 0;
	overflow: hidden;
/*	background-image: url(../my-images/team_bg_2.jpg);*/
		box-sizing: content-box;
	position: relative
}

.container2::after {
    content: "";
    display: table;
    clear: both;
}
.container4 {
	width: 100%;
	margin: 0px auto;
	padding-top: 20px;
	padding-right: 0%;
	padding-left: 0%;
	padding-bottom: 0;
	overflow: hidden;
		box-sizing: content-box;
	margin-bottom: 20px;
	position: relative;

}

.container4::after {
    content: "";
    display: table;
    clear: both;
}
.container3 {
	width: 100%;
	margin: 0px auto;
	padding-top: 20px;
	padding-right: 0%;
	padding-left: 0%;
	padding-bottom: 0;
	overflow: hidden;
		box-sizing: content-box;
	margin-bottom: 20px

}

.container3::after {
    content: "";
    display: table;
    clear: both;
}
.left-section {
    float: none;
    width: 100%;
    padding-right: 0px;
	align-content: center;
	text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.make-width-100{
	width: 100%;
	padding-left: 0%;
	padding-right: 0%
}
.left-section-inner {
    float: none;
    width: 100%;
    padding-right: 0px;
	align-content: center;
	text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-bottom: 10px
}
.right-section {
    float: none;
    width: 100%;
    padding-left: 0px;
    padding-top: 0px;
	align-content: center;
	text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.right-section h1{
	text-align: left;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
	font-size: 18px;
	color: var(--primary-color)
}
.title {
    font-family: 'Montez', cursive;
    font-style: normal;
    font-weight: 400;
    color: rgb(17, 61, 72);
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
	margin-top: 35px;
	width: auto;
      background-color: rgba(247, 146, 30, 0.1);
      height: 30px;
      border-radius: 5px;
      text-align: center;
      overflow: hidden;
	padding-left: 10px;
	padding-right: 10px
}
.title h6 {
		   font-family: "Just Another Hand", serif;
     line-height: 0px;
		   padding-top: 0px;
		   margin-top: 15px;
		   font-size: 24px;
		   font-weight: 400;
		   color: var(--primary-color)
    }
.subtitle {
    font-family: var(--font-family-type3);
    font-style: normal;
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 50px;
    line-height: 120%;
    margin-top: 0;
    margin-bottom: 0px;
	text-transform: capitalize
	
}
  .subtitle span {
	  color:#000000
}
.left-section h6,
.left-section h2 {
    opacity: 0;
}

.left-section h6.show{
  opacity: 1;
    transform: translateY(0);
	animation: fadeInRightTitle 1s forwards;
}
.left-section h2.show {
    opacity: 1;
	animation: slideInLeftTitle 1s forwards;
}
.left-section-inner h6,
.left-section-inner h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

/* Animation triggers only when .active is added */
.left-section-inner.active h6 {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInRightTitle 1s forwards;
}

.left-section-inner.active h2 {
  opacity: 1;
  transform: translateY(0);
  animation: slideInLeftTitle 1s forwards;
}


    @keyframes fadeInRightTitle {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInLeftTitle {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
.description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(110, 112, 112);
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
	vertical-align: middle
}
/*Arabic Section before */
.left-section-ar {
   float: none;
    width: 100%;
    padding-right: 0px;
	align-content: center;
	text-align: center;
}

.right-section-ar {
   float: none;
    width: 100%;
    padding-right: 0px;
	align-content: center;
	text-align: center;
}
.right-section-ar h1{
	text-align: right;
font-family: 'Cairo', 'Amiri', sans-serif;
    font-style: normal;
    font-weight: 400;
	font-size: 18px;
	color: var(--primary-color)
}
.title-ar {
font-family: 'Rakkas', serif;
	font-style: normal;
    font-weight: 400;
    color: rgb(17, 61, 72);
    font-size: 40px;
    line-height: 40px;
   margin-bottom: 10px;
	margin-top: 35px
}

.subtitle-ar {
font-family: 'Cairo', 'Amiri', sans-serif;
	font-style: normal;
    font-weight: 700;
    color: rgb(17, 61, 72);
    font-size:15px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 40px;
}

.description-ar {
    font-family: 'Cairo', 'Amiri', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(110, 112, 112);
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
}
/*Arabic Section Before*/
.section2 {
    float: none;
    width: 100%;
}
.view-all-container{
	width: 100%;
	height: 120px;
	position: relative
}
.view-all {
  background: white;
  color: #113d48;
    border: #113d48 solid 1px;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%); /* ✅ center horizontally */
	font-family: var(--font-family);
}
.bannerInside {
  position: relative;
  width: 100%;
  height: 120vh;          /* take 80% of viewport height */
  margin-top: 0;         /* start from very top */
  overflow: hidden;
}

.bannerInside img {
  width: 100%;
  height: 100%;
/*  object-fit: cover;     */
  object-position: center; /* center crop */
  display: block;
}

.textOnBanner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.textOnBanner h1 {
  margin: 0 0 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 54px;
}

.textOnBanner h2 {
  font-size: 20px;
  margin: 0;
	font-family: 'Inter', sans-serif;
	
}
.langic {
	position: absolute;
	width: auto;
	height: auto;
	padding-left: 0px;
	padding-top: 5px;
	color: #000000;
	font-size: 13px;
	line-height: 40px;
	font-family: 'Roboto', sans-serif;
	z-index: 250;
	cursor:pointer;
	top: 0px
}
.arlangic{
	left: 2.3%;
	right: auto
}
.enlangic{
	right: 0.5%;
	left: auto
}
.langic span{
	color: #000000;
	font-size: 17px
}
.langic.sticky span{
            color: #333;
        }
.langic img{
	float: left;
	width: 25px;
	height: 20px;
	margin-right: 5px
	
}
.dropdown-content {
  display: none;
  position: absolute;
  width: 90px;
  font-family: "Playfair Display", serif;
  right:0px;
  z-index: 250;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 5px;
	transition: 1s;
	background-color: var(--primary-color);
	color: #ffffff
		
}

.langic:hover .dropdown-content {
  display: block;
}
.mface{
	position: fixed;
	bottom: 50px;
	width: 40px;
	height: 40px;
	font-size: 22px;
	color: #ffffff;
	border-radius: 50%;
	left: 50px;
            background-color: var(--secondary-color);
	text-align: center;
	z-index: 1100;
	padding-top: 7px;
}
.watzapp{
	position: fixed;
	bottom: 50px;
	width: 40px;
	height: 40px;
	font-size: 22px;
	color: #ffffff;
	border-radius: 50%;
	left: 5px;
            background-color: var(--secondary-color);
	text-align: center;
	z-index: 1100;
	padding-top: 7px
}
/* Mobile Responsive for Container */
@media (max-width: 768px) {
	.textOnBanner {
  top: 50%;
  left: 0%;
  transform: translate(0%, 0%);
  text-align: center;
  color: #fff;
		width: 100%
}
	.textOnBanner h1 {
  margin: 0 0 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 24px;
}
	.container2 {
	width: 94%;

	padding-right: 0%;
	padding-left: 0%;

}
	.mface{
bottom: 114px;

}
.watzapp{
bottom: 114px;
}
	.langic {
		
	top: 15px;
	right: auto
}
	.arlangic{
	right: 1%;
		left: auto
}
.enlangic{
	left: 0.5%;
	right: auto;
}
	.langic.langicshow{
		display: none
	}
    .left-section, .right-section,.left-section-ar, .right-section-ar {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 0px;
    }
    
    .title {
        font-size: 32px;
        line-height: 32px;
    }
    
    .subtitle {
        font-size: 30px;
    }
    
    .description {
        font-size: 16px;
        line-height: 24px;
    }
	.bannerInside {
  height: 450px;          /* take 80% of viewport height */
}
.bannerInside img {
 
  object-fit: cover;     

}
}