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

body,
html {
  overflow-x: hidden;
}

[dir="ltr"] .r-direction {
  flex-direction: row
}

[dir="rtl"] .r-direction {
  flex-direction: row-reverse
}

/* For Menu In Dropdown */
[dir="rtl"] .text-align {
  text-align: right
}

[dir="ltr"] .text-align {
  text-align: left
}

.no-scroll {
  overflow: hidden;
}

.green-back {
  position: relative
}

.green-text {
  color: var(--green-color) !important
}

.petrol-back {
  background-color: var(--input-color) !important;
}

.petrol-input {
  background-color: var(--input-color) !important;
  caret-color: #FFF;
  padding: 15px 18px !important;
  color: #FFF !important;
}

.bordered-gray {
  border: 1px solid #C6C6C6 !important;
}

.bordered-gray input {
  /*  padding-right: 0 !important; */
}

.form-control.border-0 {
  border: 0 !important;
}

.white-input {
  background-color: #FFF !important;
  caret-color: var(--main-color) !important;
  padding: 15px 18px !important;
  color: var(--main-color) !important;

  border-radius: 5px !important;
  border: 1px solid #C6C6C6 !important;
}


select.petrol-input+.select2-container .select2-selection--single {
  background-color: var(--input-color) !important;
}

select.petrol-input+.select2-container .select2-selection--single span {
  color: #FFF !important
}

.shared-select .icon i {
  color: var(--green-color)
}

.petrol-input::placeholder,
.petrol-input,
.phone-input-petrol {
  color: #FFF !important;
  caret-color: #FFF !important
}

.phone-input-petrol {
  padding: .375rem 0 !important;

}

.success-back {
  border-radius: 10px;
  background: rgba(104, 181, 69, 0.10);
}

.success-back span {
  color: var(--green-color);
}

.gray-back {
  border-radius: 10px;
  background: rgba(9, 45, 75, 0.10);

}

.gray-back span {
  color: var(--petrol-color)
}

.green-back .green-back-vector {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%
}

.top-105 {
  top: 105% !important
}


.translate-x--12 {
  transform: translateX(12%)
}

.top-60 {
  top: 60% !important
}

[dir="ltr"] .green-back .green-back-vector {
  transform: rotateY(180deg)
}


/* Start Navbar */
nav {
  position: relative;
}

header nav::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  /* Adjust for the size of the green shape */
  background-color: #5db04c;
  /* Green color */
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  z-index: -1;
  display: none !important
    /* Ensure it stays below content */
}

header nav .nav-link {
  color: #FFF !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  padding: 8px 16px !important
}

header nav .nav-link.active {
  font-weight: 900;
  color: var(--green-color) !important
}

header nav .nav-link:hover {
  color: var(--green-color) !important
}

header .nav-link {
  gap: 10px;
  display: flex
}

header nav .login-btn {
  display: flex !important;
  padding: 8px 24px !important;
  justify-content: center !important;
  align-items: center !important;
  background-color: var(--green-color) !important;
  color: #FFF !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 24px;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

header nav .login-btn:hover {
  color: #FFF !important
}

header nav .language-dropdown {
  background-color: #FFF;
  padding: 8px 16px !important;
  border-radius: 50px;
  z-index: 10;

}

header nav .language-dropdown i {
  color: var(--main-color)
}

.language-dropdown div {
  gap: 8px
}

header nav .language-text {
  color: var(--main-color) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
}

header nav .logo-container img {
  transform: scale(1.2)
}

.dropdown-list {
  opacity: 0;
  visibility: hidden;
  /* Hidden but still takes up space */
  transform: translateY(15px);
  /* Move it down for the "fade up" effect */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  /* Delayed visibility toggle */
  position: absolute;
  top: 100%;
  min-width: 222px;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: -1 !important;
}

.dropdown-list a {
  padding: 24px 16px !important;
  display: block;
  color: var(--dark-blue, var(--Dark-Blue-Dark-blue, #103a5d));
  text-align: right;

  /* Titles/Title Regular */
  font-family: "Cairo";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  border-bottom: 0.5px solid var(--Dark-Blue-Dark-blue, #103a5d);
  transition: all 0.2s ease-in-out;
}

.dropdown-list a:hover {
  background-color: var(--main-color);
  color: #fff;
  padding: 24px 24px !important;
}

.nav-item:hover>.dropdown-list {
  visibility: visible;
  /* Make it visible */
  opacity: 1;
  /* Fully visible */
  transform: translateY(0);
  /* Moves it back to its original position */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
  /* No delay when showing */
}

/* End Navbar */

/* Start Hero */

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 46px;
}

.hero .carousel-control-next,
.hero .carousel-control-prev {
  width: 32px;
  height: 32px;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 4px
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  transform: scale(.6)
}

.hero .carousel-control-next {
  right: 3.3%
}

.hero .carousel-control-prev {
  left: 3.5%
}

.hero .carousel-indicators {
  gap: 5px;
  bottom: 10%
}

.hero .carousel-control-prev {
  background-color: #FFF
}

.hero .carousel-control-prev i {
  color: var(--main-color) !important
}

.hero .carousel-indicators button {
  width: 40px;
  border-radius: 10px !important;
  overflow: hidden;
  border-top: 0 !important;
  border-bottom: 0 !important;
  height: 6px;
  background-color: #FFF !important;
  opacity: 1;
}

.hero .carousel-indicators .active {
  background-color: var(--green-color) !important;
  width: 60px
}

.hero-overlay {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(252deg, #092D4B 15.06%, rgba(9, 45, 75, 0.50) 100.71%);
}

.hero-content {
  z-index: 900;
  position: absolute;
  top: 50px;
  height: 100%;
  left: 0;
  right: 0;

  display: flex;
  justify-content: center;
  align-items: center
}

.hero-content .main-hero-title-container {

  margin-top: 48px;
  margin-bottom: 24px;
}

.main-hero-title-container h1 {
  color: var(--main-color);
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  line-height: 82px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  margin: 0;
  color: #FFF;
  font-family: "Lama_Sans"
}


.hero-text-container span {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  /* 150% */
  letter-spacing: -0.5px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 23px;
  display: block;
  font-family: "Lama_Sans"
}

.hero-btn-container {
  margin-top: 32px;
}



.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the container */
  z-index: -1;
  /* Video appears below content and overlay */
}

/* End Hero */

/* Start About */



/* .about-section p {
  color: var(--paragraph);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
} */

.about-section p.under-title {
  color: #1B1A1A;
  text-align: right;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px !important;
  /* 145.455% */
  letter-spacing: -0.5px;
  text-transform: capitalize;
  /*font-family: "Tajawal";*/
}

.about-section p:last-of-type {
  color: #1B1A1A !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 28px;
  /*font-family: "Tajawal";*/
  /* 175% */
  letter-spacing: -0.5px;
  text-transform: capitalize;
  margin: 0 !important
}

.about-grid {
  grid-template-columns: repeat(2, 1fr)
}

.about-grid>div:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
}

.about-section .best-targets {
  margin-top: 53px;
}

.about-section .best-targets h6 {
  color: var(--main-color);
  font-family: "Lama_Sans";
  font-size: 18px;
  font-weight: 900;
}

.best-targets .targets {
  border-radius: 0 16px;
  position: relative;
  overflow: hidden
}

.best-targets .targets>div {

  padding: 24px;

}




.best-targets .targets>div:nth-child(1) {
  background-color: var(--main-color);
  gap: 0 !important
}

.best-targets .targets>div:nth-child(1) h4 {
  margin-top: 32px;
}

.best-targets .targets>div:nth-child(2) {
  background-color: var(--green-color);
  gap: 0 !important
}

/* .best-targets .targets::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background-color: #5db04c;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  z-index: 0;

}

[dir="ltr"] .best-targets .targets::after {
  transform: rotateY(180deg);
  right: 0;
  left: auto
} */

.best-targets .targets span {
  color: #FFF;
  text-align: center;
  font-family: "GE_Snd_Book";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.best-targets .targets span:last-child {
  font-size: 16px;
  margin-top: 16px;
}

.best-targets .targets h4 {
  color: #FFF;
  text-align: center;
  font-family: "GE_Snd_Book";
  font-size: 40px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 32px;
}

.about-section .about-sec-card {
  flex: 1;
  padding: 16px 23px 12px;

  border-radius: 8px;
  border: 1px solid var(--main-color);
  background: #DAE9D3;
  text-align: center
}

.about-sec-card h4 {
  color: var(--main-color);
  font-family: "Lama_Sans";
  font-size: 20px;
  font-weight: 900;
}

.about-sec-card p {
  color: var(--paragraph);
  font-family: "GE_Snd_Book";
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.5px;
  text-align: center !important;
  padding: 0 20px;

}

/* End About */

/* Start Services */
.services {
  position: relative;
  padding-bottom: 100px;
}

.services .service-overlay {
  position: absolute;
  z-index: 10;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: none
}

.services .row {
  margin-top: 47px;
  row-gap: 16px;
}

.vec-top,
.vec-bottom,
.vec-bottom-left {
  position: absolute
}



.vec-top {
  left: 0;
  top: 0;
}

.vec-bottom,
.vec-bottom-left {
  bottom: -5px;
  right: 0;
  z-index: -1;
}

.vec-bottom-left {
  z-index: 1;
  left: 0 !important;
  right: auto
}

.our-customers .vec-top {
  right: 0 !important
}

.our-customers .vec-bottom {
  z-index: 1;
  left: 0 !important;
  right: auto
}

[dir="ltr"] .our-customers .vec-bottom {
  right: 0;
  left: auto !important
}

/* .our-customers .vec-bottom {
  left: 0 !important;
  right: auto !important;
} */

.services .service-card {
  position: relative;
  height: 434px;
}

.flip-card-front::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(88deg, #68B545 -33.74%, rgba(9, 45, 75, 0.00) 98.02%);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.07);

}

[dir="ltr"] .flip-card-front::after {
  transform: rotateY(180deg)
}

.flip-card {
  height: 430px;
  perspective: 1000px;
  border-radius: 8px;
  overflow: hidden
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

}



.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 400;
}


.flip-card-front img {
  object-fit: cover
}


.flip-card .service-card-title,
.flip-card-back h5 {
  position: absolute;
  top: 40px;
  background-color: #FFF;
  padding: 12px 0px 12px 0;
  width: 60%;
  z-index: 200;
  color: var(--main-color);
  font-family: "GE_Snd_Book";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.2px;
  color: var(--main-color) !important
    /* 121% */
}

.flip-card .service-card-title {
  background-color: var(--main-color) !important;
  color: #FFF !important
}


.flip-card .img-absoluted {
  top: 50px !important;
  display: none !important;
  z-index: 1;
  position: absolute;
  right: 0;
  width: 63%;
  display: flex;
  justify-content: flex-end
}

[dir="ltr"] .flip-card .img-absoluted {
  right: auto
}

/* .flip-card .service-card-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(/images/services/absoluted-logo.svg);
  z-index: 0;
  left: -10px;
  top: -10px;
  background-size: contain;
  background-repeat: no-repeat;
} */


.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {

  background: var(--main-color);
  transform: rotateY(180deg);
  padding: 0 0;
  align-items: flex-start !important
}


.flip-card-back img {
  display: none !important
}



.flip-card-back p {
  font-family: "Bahij_TheSansArabic";
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding: 0 12px;
  margin-top: 100px !important
    /* 157.143% */
}

.services .service-card p {

  text-align: start !important;
  font-family: "GE_Snd_Book";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.2px;
}

[dir="ltr"] .services .vec-bottom {
  left: 0;
  right: auto
}

.success-back p {
  color: var(--green-color);
}

.services .service-card span {
  text-align: right;
  font-family: "GE_Snd_Book";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.2px;
  /* 134.444% */
}

/* End Services */
/* Start Our Team */
.our-team {
  position: relative;
  background-color: #F5F9F6
}

.our-team .ribbon {
  left: 0;
  right: 0;
  bottom: 10%;
  z-index: 0;
}

.our-team .team-carousel {
  margin-top: 54px;
}

.team-carousel .owl-nav {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: absolute;
  top: 22%;
  width: auto;
  z-index: 2;
  gap: 16px;
  width: 120%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
}

.team-carousel button {
  background: none;
  border: none;
  font-size: 20px;
  color: #FFF !important;
  cursor: pointer;

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color) !important
}

.team-carousel a {
  width: 40px;
  height: 40px;
  background-color: var(--main-color) !important;
  top: 47.5%;
  color: #FFF !important;
  cursor: pointer;
  z-index: 999 !important;
  border-radius: 8px;
  text-decoration: none
}

.team-carousel .social-links {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap
}

.team-carousel .social-links a {
  background-color: var(--main-color) !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: flex;

  justify-content: center;
  align-items: center
}



.team-carousel .carousel-item>div {
  padding: 15px;
}


[dir="rtl"] .team-carousel a.carousel-control-next {
  right: -5% !important
}


[dir="rtl"] .team-carousel a.carousel-control-prev {
  left: -5% !important
}

.team-carousel .owl-nav button.owl-prev {
  background-color: #092D4B40 !important
}

.team-carousel .card {
  border: 1.365px solid var(--green-color);
  padding: 3px;
  background-color: transparent;
  flex: 1;
  overflow: hidden;
}

.team-carousel .card img {
  filter: grayscale(100%);
  object-fit: cover
}

.team-vector {
  bottom: 0 !important;
  z-index: 1;
  left: 0 !important;
  right: 0;
  top: 0;
  width: 100%;
}



.team-vector img {
  z-index: 10;
  bottom: auto !important;
  right: auto !important;
  top: -10px
}

.team-carousel .team-desc {
  padding: 14px 10px 0;
  background-color: #FFF;
  /* bottom: 0; */
  width: 100%;
  border-radius: 3.413px;
  /* right: 50%; */
  /* transform: translateX(50%); */
  position: relative !important;
  z-index: 999;
  min-height: 200px;
  justify-content: center
}

.team-carousel .team-desc h6 {
  color: var(--green-color);
  font-family: "GE_Snd_Book";
  font-size: 20px;
  font-weight: 400;
  line-height: 13.652px;

}

.team-carousel .team-desc span {
  margin-top: 5px;
  color: var(--petrol-color);
  font-family: "GE_Snd_Book";
  font-size: 12px;
  font-weight: 400;
  line-height: 21.844px;
  text-align: center
}

/* End Our Team */

/* Start blog */
.blog {
  background-color: #F5F9F6
}

.blog .row {
  margin-top: 50px;
}

.blog .blog-card {
  border-radius: 0px 0px 2.738px 2.738px;
  background: #FFF;
  box-shadow: 0px 0px 27.379px 0px rgba(0, 0, 0, 0.07);
}

.blog .blog-card .content {
  padding: 16px 24px 32px;
}

.blog .blog-card i {
  color: var(--green-color)
}

.blog .blog-card .user,
.blog .blog-card .date {
  gap: 8px;
}

.blog .blog-card .user span,
.blog .blog-card .date span {
  color: var(--main-color);
  text-align: right;
  font-family: "GE_Snd_Book";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.523px;
}

.blog .blog-card h4 {
  color: var(--main-color);
  font-family: "GE_Snd_Book";
  font-size: 22px;
  font-weight: 400;
  line-height: 19.932px;
  margin-top: 16px !important;
}

[dir="ltr"] .blog .blog-card h4,
[dir="ltr"] .blog .blog-card p {
  text-align: left !important
}

.blog .blog-card p {
  color: var(--paragraph);
  font-family: "GE_Snd_Book";
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  margin-top: 16px;
}

.blog .blog-card a {
  margin-top: 24px;
  background-color: var(--main-color);
  color: #FFF !important;
  padding: 8px 32px;
  border-radius: 4px;

  font-family: "GE_Snd_Book";
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none
}


.blog .see-more-blogs {
  margin-top: 50px;
}

.blog .see-more-blogs a {
  background-color: var(--green-color);
  color: #FFF;
  text-decoration: none;
  padding: 12px 48px;
  border-radius: 4px;
  font-family: "GE_Snd_Book";
  font-size: 20px;
  text-decoration: none
}

.book-form-wrapper {
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  background: #F9F9F9;
  padding: 32px 25px;
}

.book-form-wrapper h2 {
  color: var(--main-color);
  text-align: right;
  font-family: "Bahij_TheSansArabic";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.106px;
  /* 95.529% */
  text-transform: uppercase;
}

.book-form-wrapper button[type="submit"] {
  background-color: var(--green-color) !important;
  padding: 12px 0;
  border-radius: 4px;
  color: #FFF;
  font-family: "GE_Snd_Book";
  font-size: 18px;
  font-weight: 400;
  width: 210px
}

/* End blog */
/* Start our-customers */
.our-customers {
  background-color: #FFF
}

.our-customers .our-customers-carousel-container {
  margin-top: 60px;
}

.our-customers.g-padding {
  padding-top: 5% !important;
  padding-bottom: 70px !important
}

.our-customers .card {
  border: 0;
}


.our-customers .card img {
  width: 100% !important;
}

.our-customers .card .d-grid {
  grid-template-columns: repeat(8, 1fr);
  row-gap: 20px;
}

.our-customers .card .d-grid div {
  position: relative;
  padding: 10px;

}

.our-customers .card .d-grid div::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: url(/images/customers/slider-vec.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.our-customers .owl-nav {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: auto;

  z-index: 2;
  gap: 16px;
  width: 120%;
  right: 50%;
  transform: translateX(50%) translateY(-50%);
}

.our-customers .owl-nav button {
  background: none;
  border: none;
  font-size: 20px;
  color: #FFF !important;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  z-index: 999 !important;
  border-radius: 8px;
  background-color: var(--main-color) !important
}

/* End our-customers */

/* Start join-us */

.join-us .img-container {
  position: relative;
  /* Establish stacking context */
  z-index: 1;
  /* Default z-index for the container */
}

.join-us .img-container img {
  position: relative;
  z-index: 2;
  object-fit: cover;
  object-position: 0px;
}

.join-us .img-container::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background-color: var(--green-color);
  z-index: 0;
  /* Place pseudo-elements behind the container */
}



.join-us .img-container::before {
  top: -10px;
  right: -10px;
}

[dir="ltr"] .join-us .img-container::before {
  right: auto;
  left: -10px
}

.join-us .join-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(104, 181, 69, 0.10) 0%, #092D4B 100%);

  z-index: 500;
}

.join-us button[type="submit"] {
  background-color: var(--green-color) !important;
  color: #FFF;
  padding: 12px 48px;
  width: 100%;
  border-radius: 4px;
  font-family: "GE_Snd_Book";
  font-size: 20px;
  font-weight: 400;
}

/* End join-us */

/* Start Contact Us */
/* .contact-info-wrapper {
  position: relative;
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 5px;
  background: linear-gradient(to bottom, #68B545 0%, #092D4B 100%);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  padding: 5px;
} */


.contact-info-wrapper .social-links {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  margin-top: 32px;
  /* width: 25% !important; */
}

.contact-info-wrapper .social-links li {
  display: flex;
  justify-content: center;
  align-items: center
}

.contact-info-wrapper .social-links img {
  width: 22px;
}


.form-wrapper button[type="submit"] {
  padding: 12px 48px;
  justify-content: center;
  width: 100%;
  align-items: center;
  border-radius: 4px;
  background: var(--green-color) !important;
  color: #FFF;
  font-family: "GE_Snd_Book";
  font-size: 18px;
  font-weight: 400;
}

.gradient-border {
  position: relative;
  display: inline-block;
  /* Adjust based on your layout */
  border-radius: 10px;
  width: 100%;
  padding: 2px;
  /* Adjust for the internal spacing */
  background: linear-gradient(90deg, #68B545 0%, #092D4B 100%);
}

.gradient-border::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 140px;
  height: 140px;
  border: 10px solid var(--green-color);
  border-left: 0;
  border-bottom: 0
}

[dir="ltr"] .gradient-border::after {
  left: -5px;
  right: auto;
  transform: rotateY(180deg)
}

.contact-content {
  background: white;
  /* Content background */
  border-radius: 8px;
  /* Slightly smaller than the outer border to align */
  padding: 15px;
  /* Adjust content padding */
  position: relative;
  padding: 45px 0
}

.contact-content>div:nth-child(1) img,
.contact-content>div:nth-child(2) img,
.contact-content>div:nth-child(3) img {
  width: 80px;
}

[dir="ltr"] .contact-content>div:nth-child(1) img,
[dir="ltr"] .contact-content>div:nth-child(2) img,
[dir="ltr"] .contact-content>div:nth-child(3) img {
  transform: rotateY(180deg);
}

.contact-content span {
  color: var(--main-color);
  font-family: Inter;
  font-size: 22px;
  font-weight: 600;
  line-height: 25.978px;
}

.contact-content p {
  color: var(--main-color);
  font-family: "Bahij_TheSansArabic";
  font-size: 22px;
  font-weight: 500;
  line-height: 25.978px;
}

/* End Contact Us */

/* Start Blog Details */
.blog-details-icons-wrapper span {
  color: var(--Main-Dark-blue, #092D4B);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.092px;
  /* 194.322% */
}

.blog-details-icons-wrapper .inner-subtitle {
  color: var(--petrol-color);
  font-family: "Bahij_TheSansArabic";
  font-size: 20px;
  font-weight: 500;
  line-height: 19.106px;
  text-transform: uppercase;
}

.blog-details-ul li {
  color: #333931;
  font-family: "Bahij_TheSansArabic";
  font-size: 16px;
  font-weight: 500;
  line-height: 26.401px;
}

.blog-carousel-wrapper h3 {
  color: var(--petrol-color);
  text-align: right;
  font-family: "Bahij_TheSansArabic";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 46.896px;
  /* 260.533% */
  text-transform: capitalize;
  margin-bottom: 0 !important
}

[dir="ltr"] .blog-carousel-wrapper h3,
[dir="ltr"] .book-form-wrapper h2 {
  text-align: left !important
}

[dir="ltr"] .blog-carousel-wrapper .d-flex {
  flex-direction: row-reverse
}

.blog-details-carousel {
  position: relative;
  padding-top: 40px;
}

.blog-details-carousel .owl-nav {
  display: flex !important;
  top: -40px !important;
  position: absolute;
  left: 0;
  flex-direction: row-reverse;
  gap: 16px;
  color: #FFF
}

[dir="ltr"] .blog-details-carousel .owl-nav {
  right: 0;
  left: auto
}



.blog-details-carousel .owl-nav button {
  background-color: var(--main-color) !important;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* End Blog Details */
/* Start Footer */
footer {
  padding: 146px 0 80px;
  width: 100%;
  bottom: 0;
  background: var(--main-color);
  position: relative;
  overflow: hidden
}

footer .mail-wrapper {
  display: flex;
  width: 355px;
  height: 48px;
  padding: 0 6px !important;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  background-color: #FFF;
}

.mail-wrapper .input-group {
  width: 100%;
  height: 100%;
}

.mail-wrapper .input-group-text {
  padding-left: 0 !important
}

[dir="ltr"] .mail-wrapper .input-group-text {
  padding-right: 0
}

.mail-wrapper button {
  position: absolute;
  left: 8px;

  background-color: var(--green-color);
  color: #FFF !important;

  border-radius: 4px !important;
  padding-right: 38px;
  padding-left: 38px;
  z-index: 100 !important;
}

[dir="ltr"] .mail-wrapper button {
  right: 8px;
  left: auto
}

footer .mail-label {

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

footer .mail-wrapper input {
  border-radius: 0 !important;
  border: 0 !important;
  z-index: 0;
}

footer .mail-wrapper input::placeholder {
  color: var(--main-color);
  font-family: "Bahij_TheSansArabic";
  font-size: 16px;
  font-weight: 400;
}

.footer-border-t {
  border-top: 11px solid var(--green-color)
}

footer .footer-vector {
  position: absolute;
  top: 0;
  height: 100%;
}

footer .right-vector {
  right: 0;
}

footer .left-vector {
  left: 0;
}

footer .down-footer h3 {
  color: #FFF;
  font-size: 20.411px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.534px;
  position: relative;
  /* 130% */
}

footer .down-footer h3::after {
  content: '';
  position: absolute;
  top: 150%;
  right: 0;
  width: 27.833px;
  height: 3.711px;
  border-radius: 1.856px;
  background: var(--green-color);

}

[dir="ltr"] footer .down-footer h3::after {
  left: 0;
  right: auto
}

footer .down-footer .down-footer-links a {


  color: #FFF;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.978px;
  display: flex;
  gap: 10px;
  align-items: center
}





footer .down-footer .social-links {
  margin-top: 46px;
}



/* End Footer */

/* Start copy-rights */
.copy-rights {
  background-color: var(--main-color-light);
  padding: 24px 0;
  font-size: 15px;
  z-index: 200;
  position: relative;
}


@media (min-width: 992px) {
  .team-carousel {
    /*  display: grid !important;
    gap: 32px;
    grid-template-columns: repeat(4, 1fr) */
  }

  .team-carousel-container {
    /* position: absolute !important; */
    left: 0;
    top: 25%;
    right: 0;
    width: 75%;
    right: 50%;
    transform: translateX(50%);
    z-index: 200;

  }

  [dir="ltr"] .team-carousel-container {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }

  [dir="ltr"] .carousel-control-next {
    right: -3%;
  }

  [dir="ltr"] .carousel-control-prev {
    left: -3%;
  }

  .our-team {
    padding-bottom: 5% !important;
    overflow-y: visible !important
  }

  .our-team::after {
    display: none !important;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    background-color: #F5F9F6;

    z-index: 0;
    height: 220%
  }
}

/* End copy-rights */


@media (max-width: 767px) {
  /*  .team-carousel .carousel-inner .carousel-item>div {
    display: none;
  }

  .team-carousel .carousel-inner .carousel-item>div:first-child {
    display: block;
  } */

  .team-carousel .carousel-inner .carousel-item-end.active,
  .team-carousel .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .team-carousel .carousel-inner .carousel-item-start.active,
  .team-carousel .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }

}

.team-carousel .carousel-inner .carousel-item.active,
.team-carousel .carousel-inner .carousel-item-next,
.team-carousel .carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

  .team-carousel .carousel-inner .carousel-item-end.active,
  .team-carousel .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .team-carousel .carousel-inner .carousel-item-start.active,
  .team-carousel .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.team-carousel .carousel-inner .carousel-item-end,
.team-carousel .carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/* About Accordion */
.appFrame {

  overflow: hidden;
  height: 370px !important
}

article.accordion {
  display: flex;
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  justify-content: space-between
}

article.accordion section {
  position: relative;
  display: block;
  width: 88px;
  min-height: 328px;
  margin: 0.5em 0 0.5em 0.5em;
  color: #666;
  background-color: #092D4B;
  ;
  overflow: hidden;
  border-radius: 3px;
}

:target #start {
  visibility: visible;
}

.cutted-img-2::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(../images/about/Subtract\ \(1\).svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

:target #stop {
  visibility: visible;
}

:target #clear {
  visibility: visible;
}

:target #diary {
  visibility: visible;
}

.hidden-part {
  visibility: hidden
}

:target .hidden-part {
  visibility: visible;
}

#start,
#stop,
#clear,
#diary,
time {
  visibility: hidden;
}

article.accordion section h2 {
  /*  position: absolute;
  font-size: 1em;
  font-weight: bold;
  width: 100%;
   height: 100%; 
  top: 6em;
  left: 0;
  right: 50%;
  bottom: 0;
  text-indent: 1em;
  padding: 0;
  margin: 0;
  color: #ddd;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-90deg) translateY(20%);
  -moz-transform: rotate(-90deg) translateY(20%);
  -ms-transform: rotate(-90deg) translateY(20%);
  -o-transform: rotate(-90deg) translateY(20%);
  transform: rotate(-90deg) translateY(30%) translateX(-5%); */
}

article.accordion section.active {
  flex: 1
}

article.accordion section.active .acc-icon {
  display: none
}

article.accordion section.active .inner-about-wrapper {
  display: block !important;
  border-right: 24px solid #68B545;
  height: 100%;
  background: linear-gradient(238deg, rgba(255, 255, 255, 0.50) 0.71%, rgba(112, 140, 74, 0.50) 86.05%), #FFF;
  padding: 32px 24px
}

article.accordion section.active .inner-about-wrapper.vision-inner {
  display: block !important;
  border-right: 24px solid #68B545;
  height: 100%;
  padding: 32px 24px;
  background:
    linear-gradient(238deg, rgba(255, 255, 255, 0.5) 0.71%, rgba(112, 140, 74, 0.5) 86.05%),
    url('../images/course/course-ov.png') !important;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat !important;
}

.quote-wrapper {
  color: #092D4B;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 40px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  margin-top: 80px;
}

.values-card span {
  color: #68B545;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.values-wrapper>div>div {
  padding: 24px;
  border-radius: 16px;
  height: 100%
}

.values-wrapper>div:nth-child(odd)>div {

  background: #092D4B;

}

.values-wrapper>div:nth-child(even)>div {

  background: #68B545;

}

.values-wrapper>div:nth-child(even)>div span {
  color: #092D4B;
}

.mt-40px {
  margin-top: 40px;
}

.inner-about-wrapper .g-title {
  font-size: 32px;
}

.first-cutted-img .inner-about-wrapper {
  position: absolute;
  width: 47% !important;
  bottom: 22px !important;
  left: -5% !important;
  top: auto !important
}

.inner-about-wrapper {
  position: absolute;
  top: -16%;
  width: 47%;
}

.inner-about-wrapper.top-60 {
  width: 48% !important
}

.top-60 .about-section p.under-title {
  padding-left: 150px !important;
}

.about-stats-section .number {
  color: #0A2D4B;
  /*font-family: Tajawal;*/
  font-size: 40px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  display: block;
  text-align: center
}

.about-stats-section .plus {
  top: -10px;
  right: 20%
}

.about-stats-section .plus.first-plus {
  right: -10%
}

.first-cutted-img .about-stats-section {
  width: 100%;
}

.about-stats-section {
  position: absolute;
  top: -16%;
  left: 0
}

.about-stats-section .stats-sm-title {
  margin-top: 8px
}

.about-section .g-title {
  font-size: 24px;
  font-weight: bolder
}

article.accordion section>.g-title {
  white-space: nowrap;
  width: 100%;
  height: 100%;
  line-height: 2em;
  text-decoration: none;
  color: inherit;
  outline: 0 none;

  position: absolute;
  font-size: 1em;
  font-weight: bold;
  width: 100%;
  height: 100%;
  top: 6em;
  left: 0;
  right: 50%;
  bottom: 0;
  text-indent: 1em;
  padding: 0;
  margin: 0;
  color: #ddd;

  transform-origin: 0 0;

  transform: rotate(-90deg) translateY(22%) translateX(-5%);
}

article.accordion section.active {
  flex: 1;

  color: #333;
  background-color: #fff;
}

article.accordion section:active h2 {
  position: static;
  color: dodgerblue;
  font-size: 1.3em;
  text-indent: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

article.accordion section,
article.accordion section h2 {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

article.accordion section:not(.active) {
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
  cursor: pointer;
}


/* About Accordion */