@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");

:root {
  --green-color: #26d07c;
  --alt-green-color: #23c374;
  --blue-color: #0050b5;
  --dark-blue-color: #004ba9;
  --light-gray-color: #d9d9d9;
  --light-blue-color: #dfe9f5;
  --active-bullet-color: #00285a;
  --light-text-color: #eff2f1;
  --dark-gray-color: #023b21;
  --black-green-color: #000b06;
  --footer-bg-color: #011d10;
  --footer-icon-bg-color: #ffffff66;
  --inactive-url-color: rgba(239, 242, 241, 1);
  --active-green-color: rgba(38, 208, 124, 1);
  --alt-gray-txt-color: rgba(124, 124, 124, 1);
  --white-color: #fff;
  --black-color: #000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  scroll-behavior: smooth;
  font-family: "Red Hat Display", sans-serif;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  transition: 1s all;
}
section {
  margin-bottom: 70px;
}
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #023b21;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999999999999;
}
.body-content {
  display: none;
}

.loader {
  width: 48px;
  height: 48px;
  position: relative;
}
.loader::before,
.loader::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48em;
  height: 48em;
  background-image: radial-gradient(circle 10px, #fff 100%, transparent 0),
    radial-gradient(circle 10px, #fff 100%, transparent 0),
    radial-gradient(circle 10px, #fff 100%, transparent 0),
    radial-gradient(circle 10px, #fff 100%, transparent 0),
    radial-gradient(circle 10px, #fff 100%, transparent 0),
    radial-gradient(circle 10px, #fff 100%, transparent 0),
    radial-gradient(circle 10px, #fff 100%, transparent 0),
    radial-gradient(circle 10px, #fff 100%, transparent 0);
  background-position: 0em -18em, 0em 18em, 18em 0em, -18em 0em, 13em -13em,
    -13em -13em, 13em 13em, -13em 13em;
  background-repeat: no-repeat;
  font-size: 0.5px;
  border-radius: 50%;
  animation: blast 1s ease-in infinite;
}
.loader::after {
  font-size: 1px;
  background: #fff;
  animation: bounce 1s ease-in infinite;
}

@keyframes bounce {
  0%,
  100% {
    font-size: 0.75px;
  }
  50% {
    font-size: 1.5px;
  }
}
@keyframes blast {
  0%,
  40% {
    font-size: 0.5px;
  }
  70% {
    opacity: 1;
    font-size: 4px;
  }
  100% {
    font-size: 6px;
    opacity: 0;
  }
}
/* section {
  margin-bottom: 70px;
} */
.heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 76.8px;
  color: var(--blue-color);
}
.heading h2 span {
  color: var(--green-color);
}
.heading h3 {
  position: relative;
  /* display:inline-block; */
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
  color: var(--green-color);
}
.main-heading {
  display: inline-flex !important;
  align-items: center !important;
}

.gradient-line {
  display: inline-block !important;
  width: 77px;
  height: 4px;
  background: linear-gradient(90deg, #d7ffec 0%, #26d07c 100%);
  margin-inline-start: 16px;
}
.gradient-line-bottom {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #d7ffec 0%, #26d07c 100%);
  transform: rotate(-180deg);
  margin-top: 8px;
}

/* media query for heding  */
@media (max-width: 767px) {
  .heading h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 38.4px;
  }
  .heading h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 19.2px;
  }
  .gradient-line {
    display: inline-block;
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, #d7ffec 0%, #26d07c 100%);

    margin-inline-start: 16px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1370px !important;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }
}
.swiper-wrapper {
  display: flex;
  width: auto !important;
}
.swiper-controls {
  margin-top: 24px;
}
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  position: unset !important;
  margin-top: 0 !important;
}
.swiper-button-next,
.swiper-button-prev {
  flex-shrink: 0 !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #eff2f1 !important;
  color: #a0b5ab !important;
}
.swiper-button-next.active,
.swiper-button-prev.active {
  background-color: #dfe9f5 !important;
  color: var(--blue-color) !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  /* margin: 0 4px !important; */
  background-color: #dfe9f5 !important;
}
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 !important;
}
.swiper-pagination-bullet-active {
  background-color: #00285a !important;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
  .swiper-controls {
    margin-top: 10px;
  }
}
/* start hero section style  */
.hero {
  background: url(../images/hero-img.png);
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.navbar {
  padding: 38.5px 0;
  position: relative;
  z-index: 99;
}
.navbar a {
  color: var(--light-text-color) !important;
  font-size: 20px !important ;
  font-weight: 400 !important;
  line-height: 32px !important;
  padding: 5px 24.5px;
}
/* .navbar .active {
  color:#26D07C !important;
  font-weight:  700 !important;
  border-bottom: 2px solid #26D07C !important;
} */
.navbar-nav {
  min-width: 861px;
}
.navbar-brand {
  max-width: 169px;
}
.navbar-toggler {
  font-size: 32px !important;
  line-height: 1;
  background-color: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  transition: box-shadow 0.15s ease-in-out;
}
.navbar-toggler-icon {
  font-size: 32px;
  color: rgba(239, 242, 241, 1);
  background-image: none !important;
}
.navbar .service-request {
  overflow: hidden;
}
.navbar .service-request a {
  background: var(--light-text-color);
  color: var(--dark-gray-color) !important;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.navbar .service-request a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2); /* Highlight effect */
  transition: left 0.3s ease;
}

.navbar .service-request a:hover::before {
  left: 0; /* Slide the highlight in */
}

.navbar .service-request a:hover {
  transform: scale(1.1); /* Slightly enlarge the button */
  border-color: var(--dark-gray-color); /* Darken the border */
}
.dropdown-menu {
  /* padding-top: 21px !important; */
  background-color: rgba(241, 241, 241, 1) !important;
  max-width: 153px !important;
  min-height: 107px !important;
  border-radius: 8px !important;
}
.dropdown-menu li {
  margin: 0 !important;
}
.dropdown-menu li a:hover {
  background-color: rgba(227, 249, 238, 1) !important;
}
.dropdown-menu a {
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: rgba(2, 59, 33, 1) !important;
  padding: 8px 16px !important;
  margin: 0 !important;
}
.dropdown-menu a img {
  margin-inline-end: 8px;
}
.lang-settings-mob {
  display: none;
}
.navbar-light .navbar-toggler {
  color: none !important;
  border-color: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}
.service-request-mob {
  display: none;
}
.hero .hero-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  /* z-index: -1; */
}
.hero .hero-content {
  max-width: 1036px;
  position: relative;
  z-index: 55;
}
.hero .hero-content h1 {
  color: var(--green-color);
  font-size: 48px;
  font-weight: 600;
  line-height: 76.8px;
}
.hero .hero-content p {
  color: var(--light-text-color);
  font-size: 32px;
  font-weight: 500;
  line-height: 51.2px;
  margin: 24px 0 103px 0;
}
.hero .hero-btns {
  display: flex;
  gap: 32px;
}
.hero .our-serv-btn {
  background-color: var(--light-text-color);
  color: var(--dark-gray-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  border-radius: 8px;
}
.hero .our-serv-btn,
.hero .comp-prof-btn {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  border-radius: 8px;
  min-width: 253px;
  min-height: 32px;
  padding: 8px 0;
  transition: 0.25s all;
}
.hero .comp-prof-btn img {
  margin-inline-start: 8px;
  max-width: 24px;
}
.hero .our-serv-btn {
  background-color: var(--light-text-color);
  color: var(--dark-gray-color);
}
.hero .our-serv-btn:hover {
  opacity: 0.8;
}
.hero .comp-prof-btn {
  background-color: transparent;
  color: var(--light-text-color);
  border: 2px solid var(--light-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .comp-prof-btn:hover {
  opacity: 0.8;
}

/* media query for hero section  */
@media (max-width: 992px) {
  .hero {
    height: 80.37vh;
  }
  .navbar .container {
    position: relative;
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    overflow-x: clip;
  }
  .navbar {
    padding: 23.5px 0;
  }
  .navbar a {
    color: var(--light-text-color) !important;
    font-size: 16px !important ;
    line-height: 25.6px !important;
    padding: 5px 24.5px;
  }
  .navbar-brand img {
    max-width: 127px;
    min-height: 27px;
  }
  .navbar-nav {
    min-width: 100%;
    background-color: var(--black-green-color);
    padding: 24px;
  }
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 120;
    background: rgba(0, 11, 6, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    overflow: hidden;
  }
  .service-request a {
    background: var(--light-text-color);
    color: var(--dark-gray-color) !important;
    border-radius: 8px;
    font-weight: 500;
    font-size: 12px !important;
    line-height: 19.2px !important;
    /* max-width: 130px !important; */
  }
  .dropdown-menu {
    /* padding-top: 21px !important; */
    background-color: rgba(241, 241, 241, 1) !important;
    max-width: 153px !important;
    min-height: 107px !important;
    border-radius: 8px !important;
  }
  .dropdown-menu li {
    margin: 0 !important;
  }
  .dropdown-menu li a:hover {
    background-color: rgba(227, 249, 238, 1) !important;
  }
  .dropdown-menu a {
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    color: rgba(2, 59, 33, 1) !important;
    padding: 8px 16px !important;
    margin: 0 !important;
  }
  .dropdown-menu a img {
    margin-inline-end: 8px;
  }
  .lang-settings-mob {
    display: block;
    justify-self: end;
    grid-column: 1;
  }
  .lang-settings-mob .nav-link {
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
  }
  .lang-settings-desktop {
    display: none;
  }
  .navbar .p-0 {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
  }
  .navbar-toggler {
    grid-column: 3;
    justify-self: start;
    margin: 0;
    padding: 0;
  }
  .service-request-mob {
    display: block;
  }
  .service-request-desktop {
    display: none;
  }
  .hero .hero-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    /* z-index: -1; */
  }
  .hero .hero-content {
    max-width: 306px;
  }
  .hero .hero-content h1 {
    color: var(--green-color);
    font-size: 26px;
    font-weight: 600;
    line-height: 44.8px;
  }
  .hero .hero-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
    margin: 16px 0 37px 0;
  }
  .hero .hero-btns {
    gap: 16px;
  }
  .hero .our-serv-btn,
  .hero .comp-prof-btn {
    font-size: 12px;
    font-weight: 500;
    line-height: 19.2px;
    min-width: 146px;
    padding: 6.5px 0;
  }
  .hero .comp-prof-btn img {
    max-width: 13.75px;
  }
}
@media (min-width: 993px) {
  .lang-settings-mob {
    display: none;
  }
  .lang-settings-desktop {
    display: block;
  }
  .service-request-desktop {
    display: block;
  }
  .service-request-mob {
    display: none !important;
  }
}

/* start about-us section style  */
.about-us .about-content {
  max-width: 669px;
}
.about-us .about-content p {
  color: var(--dark-gray-color);
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
}
.about-us .discover-more a {
  position: relative;
  max-width: 251px;
  min-height: 48px;
  border-radius: 8px;
  background-color: var(--dark-gray-color);
  color: var(--light-text-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  transition: transform color 0.3s ease, border-color 0.3s ease;
}

.about-us .discover-more a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #056c3e;
  z-index: -1;
  transition: left 0.5s ease;
}

.about-us .discover-more a:hover::before {
  left: 0;
}

.about-us .discover-more a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(2, 59, 33, 0.4),
    /* Soft dark green shadow */ 0 2px 4px rgba(2, 59, 33, 0.2); /* Lighter inner shadow */
}

.about-us .discover-more img {
  margin-inline-start: 10px;
  width: 20px;
}

.about-us .col-lg-5 {
  max-width: 503px;
}
.about-us .img1 {
  max-width: 503px;
  min-height: 303px;
  margin-bottom: 16px;
}
.about-us .img2,
.about-us .img3 {
  max-width: 244px;
  min-height: 311px;
}
.about-us img {
  border-radius: 8px;
  object-fit: cover;
  height: 100%;
}
.about-us .mobile {
  display: none;
}
/* media query for about-us section  */
@media (max-width: 992px) {
  .about-us .mobile {
    display: block;
  }
  .about-us .desktop {
    display: none;
  }
  .about-us .about-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    margin-top: 16px;
  }
  .about-us .discover-more a {
    max-width: 166px;
    min-height: 32px;
    font-size: 12px;
    line-height: 19.2px;
  }
  .about-us .row {
    justify-content: center;
    align-items: center;
  }
  .about-us .col-lg-6 {
    order: 2;
  }
  .about-us .col-lg-5 {
    order: 1;
    max-width: 100%;
  }
  .about-us .img1 {
    max-width: 100%;
    min-height: 151px;
    margin-bottom: 8px;
  }
  .about-us .second-img-row {
    gap: 8px;
  }
  .about-us .img2,
  .about-us .img3 {
    max-width: 100%;
    min-height: 134px;
  }
}
@media (min-width: 993px) {
  .about-us .mobile {
    display: none;
  }
  .about-us .desktop {
    display: block;
  }
}
/* start our-services-section style  */
.our-services .heading a {
  color: var(--dark-gray-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  border-bottom: 2px solid var(--dark-gray-color);
  text-decoration: none;
  transition: 0.5s all ease;
  position: relative;
  z-index: 1;
}

.our-services .heading a:hover {
  background: linear-gradient(180deg, #34eb89, #023b21);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  border-bottom: 2px solid;
  border-image: linear-gradient(-90deg, #34eb89, #023b21) 1;
}

.our-services .row {
  margin-top: 80px;
  flex-shrink: 0;
  align-items: stretch;
  row-gap: 32px;
}
.our-services .col-lg-4,
.our-services .col-md-6 {
  min-width: 397px !important;
  min-height: 178px !important;
  flex-shrink: 0;
  margin-bottom: 24px;
  /* padding: 0; */
}
.our-services .service-card {
  border-radius: 16px;
  background-color: #eff4fa;
  position: relative;
  min-height: 178px !important;
  padding: 58px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform-origin: center;
  transition: transform 1s ease, background-color ease 1.5s,
    box-shadow 0.5s ease 1.5s;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.our-services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1)); */
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease 1.5s;
}
.our-services .service-card:hover {
  animation: rocking 1s ease-in-out infinite;
  background-color: #004ba9 !important;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 75, 169, 0.5);
}
.our-services .service-card:hover h4 {
  color: var(--light-text-color);
}

.our-services .service-card:hover::before {
  opacity: 1;
}

.our-services .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--dark-blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translate(-50%);
  z-index: 55;
  color: var(--light-text-color) !important;
  border: 8px solid var(--white-color);
  padding: 20px;
}
.our-services .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our-services .service-name {
  max-width: 271px;
  text-align: center;
  min-height: 100%;
  display: flex;
  align-items: center;
}
.our-services h4 {
  color: var(--dark-blue-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  text-align: center;
  position: relative;
  text-transform: capitalize;
}
@keyframes rocking {
  0%,
  100% {
    transform: perspective(1000px) rotateY(10deg) rotateX(-10deg);
  }
  50% {
    transform: perspective(1000px) rotateY(-10deg) rotateX(10deg);
  }
}
.our-services-mob {
  display: none;
}
/* media query for our-services section style  */
@media (max-width: 992px) {
  .our-services .heading a {
    font-size: 12px;
    line-height: 19.2px;
  }
  .our-services .swiper-wrapper {
    padding-top: 60px;
  }
  .our-services .service-card {
    max-width: 100% !important;
    min-height: 134px !important;
    padding: 46px 18px 20px;
  }
  .our-services .icon {
    width: 78px;
    height: 78px;
    padding: 14px;
    top: -22px;
  }
  .our-services .service-name {
    max-width: 180px;
  }

  .our-services h4 {
    font-size: 16px;
    line-height: 25.6px;
  }
  .our-services-mob {
    display: block;
  }
  .our-services-desktop {
    display: none;
  }
}
@media (min-width: 993px) {
  .our-services-mob {
    display: none;
  }
  .our-services-desktop {
    display: block;
  }
}
/* start qualifications section style  */
.qualifications {
  position: relative;
  background-color: var(--alt-green-color);
  padding: 48px 0;
  z-index: 4;
}
.qualifications .qual-layer {
  position: absolute;
  /* bottom: 0; */
  width: 100%;
  height: 100%;
  z-index: -1;
  right: 0;
  top: 0;
  pointer-events: none;
}

.qualifications h2 {
  color: var(--blue-color);
  font-size: 48px;
  font-weight: 600;
  line-height: 76.8px;
}
.qualifications h2 span {
  color: var(--light-text-color);
}
.qualifications .qual-content {
  margin-top: 24px;
  margin-bottom: 40px;
}
.qualifications p {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
}
.qualifications .qual-cards {
  gap: 23px;
  position: relative;
  justify-content: center !important;
}
/* .qualifications .qual-cards .last-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
} */
.qualifications .qual-card {
  max-width: 230px !important;
  min-height: 164px;
  background-color: var(--white-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qualifications .qual-card img {
  object-fit: cover;
}
/* media query for qualifications section  */
@media (max-width: 992px) {
  .qualifications {
    padding: 32px 0;
  }
  .qualifications h2 {
    color: var(--blue-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 38.4px;
  }
  .qualifications h2 span {
    color: var(--light-text-color);
  }
  .qualifications .qual-content {
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .qualifications p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
  }
  .qualifications .qual-cards {
    flex-wrap: wrap !important;

    /* justify-content: center !important; */
  }
  .qualifications .qual-card {
    min-width: 160px !important;
    min-height: 100px;
  }
  .qualifications .qual-card img {
    object-fit: cover;
    width: 80%;
    max-height: 72px;
  }
}
@media (max-width: 767px) {
  .qualifications .qual-layer {
    top: -35% !important;
  }
}
/* start our-experts section style  */

.our-experts .experts-swiper {
  overflow: hidden;
  padding-bottom: 10px;
}
.our-experts .experts-swiper .swiper-slide {
  height: auto;
}
.our-experts .heading a {
  color: var(--dark-gray-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  border-bottom: 2px solid var(--dark-gray-color);
  transition: 0.5s all ease;
  position: relative;
  z-index: 1;
}
.our-experts .heading a:hover {
  background: linear-gradient(180deg, #34eb89, #023b21);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  border-bottom: 2px solid;
  border-image: linear-gradient(-90deg, #34eb89, #023b21) 1;
}

.our-experts .member-card {
  transition: 0.5s ease;
  min-width: 398px;
  min-height: 530px;
}
.our-experts .member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
}
.our-experts .img {
  position: relative;
}
.our-experts .member-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 99px;
  background: #ffffff99;
  padding: 12px 35px;
}
.our-experts .col-lg-4 img {
  height: 100%;
  object-fit: cover;
}
.our-experts h4 {
  color: var(--black-green-color);
  font-size: 28px;
  font-weight: 600;
  line-height: 44.8px;
}
.our-experts h5 {
  color: var(--black-green-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
}
.our-experts p {
  color: #023b21;
  font-size: 28px;
  font-weight: 400;
  line-height: 44.8px;
  margin-bottom: 32px;
}
.our-experts .action-btn {
  margin-top: 4px;
  display: flex;
  justify-content: end;
}
.our-experts .action-btn a {
  position: relative;
  background-color: var(--blue-color);
  color: var(--light-text-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  padding: 7px;
  border-radius: 8px;
  min-width: 152px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: transform color 0.3s ease, border-color 0.3s ease;
}

.our-experts .action-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #00285a;
  z-index: -1;
  transition: left 0.5s ease;
}

.our-experts .action-btn a:hover::before {
  left: 0;
}

.our-experts .action-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(4, 8, 50, 0.4),
    /* Soft dark green shadow */ 0 2px 4px rgba(2, 59, 33, 0.2); /* Lighter inner shadow */
}

.our-experts .action-btn a img {
  margin-inline-start: 7px;
  /* max-width: 10px; */
  object-fit: cover;
}
/* media query for our-experts-section  */
@media (max-width: 992px) {
  /* start our-experts section style  */
  .our-experts .heading a {
    font-size: 12px;
    line-height: 19.2px;
  }
  .our-experts .member-card {
    min-width: 267px;
    min-height: 328px;
    margin-bottom: 16px;
  }
  .our-experts .member-name {
    padding: 16px;
  }
  .our-experts h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28.8px;
  }
  .our-experts h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
  }
  .our-experts p {
    color: #023b21;
    font-size: 14px;
    line-height: 22.4px;
    margin-bottom: 30px;
  }

  .our-experts .action-btn a {
    font-size: 12px;
    font-weight: 500;
    line-height: 19.2px;
    padding: 6.5px;
    min-width: 114px;
  }
}
/* start our-partners-section-style  */
.our-partners {
  padding: 56px 0 29px;
  background-color: var(--blue-color);
  position: relative;
  overflow: hidden;
}
.our-partners .partners-vector {
  position: absolute;
  right: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 0;
  object-fit: cover;
  pointer-events: none;
}
.our-partners .container {
  position: relative;
  z-index: 1;
}
.our-partners .partners-vector img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-partners h2 {
  color: var(--green-color);
  font-size: 48px;
  font-weight: 500;
  line-height: 76.8px;
}
.our-partners h2 span {
  color: var(--white-color);
}
.our-partners p {
  color: var(--light-blue-color);
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
  margin: 16px 0 40px;
}
.our-partners .swiper-slide {
  width: 220px;
  min-height: 98px;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  background-color: var(--white-color);
}
.our-partners .partner-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.our-partners .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 98px;
}
.our-partners .logo img {
  object-fit: cover;
}

/* start our-branches section style  */
.our-branches {
  margin-bottom: 70px;
}
.our-branches .heading {
  margin-bottom: 40px;
}
.our-branches .map {
  width: 100%;
  min-height: 651px;
}
.our-branches .map img {
  object-fit: cover;
  height: 100%;
}
/* media query for our-partners-section  */

@media (max-width: 992px) {
  .our-partners {
    padding: 45px 0 39px;
    background-color: var(--blue-color);
    position: relative;
    overflow: hidden;
  }
  .our-partners .partners-vector {
    position: absolute;
    right: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
  }
  .our-partners .partners-vector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .our-partners h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 38.4px;
  }
  .our-partners h2 span {
    font-weight: 500;
  }
  .our-partners p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    margin: 16px 0 28px;
  }
  .our-partners .swiper-slide {
    width: 160px;
    min-height: 70px;
    max-width: 160px !important;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    background-color: var(--white-color);
  }
  .our-partners .logo {
    min-height: 70px;
  }
  .our-partners .logo img {
    max-width: 80%;
    height: 30px;
  }
}
/* start footer section style  */
footer {
  position: relative;
  padding: 74px 0;
  background-color: var(--footer-bg-color);
  z-index: 66;
}
footer .vector {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}
/* html[dir='ltr'] .coupons .discount h4 */
html[dir="rtl"] footer .vector {
  right: 0;
}
html[dir="ltr"] footer .vector {
  left: 0 !important;
}

footer .vector {
  height: 100%;
  width: 100%;
  opacity: 0.3;
}
footer.container {
  position: relative;
}
footer .contact-info-container {
  max-width: 234px !important;
}
footer .footer-logo {
  width: 100%;
}
footer .footer-logo img {
  width: 100%;
  object-fit: cover;
}
footer .social-media {
  margin-top: 29px;
  margin-bottom: 36px;
  display: flex;
  gap: 24px;
}
footer .icon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  transition: 0.5s ease;
  background: var(--footer-icon-bg-color);
}
footer .icon:hover {
  opacity: 0.7;
}
footer .icon a {
  color: var(--white-color);
  font-size: 16px;
}

footer .fa-facebook-f {
  font-size: 18.07px;
}
footer .fa-instagram {
  font-size: 22.92px;
}
footer .fa-linkedin-in {
  font-size: 25px;
}
footer .contact-info-list li {
  margin-bottom: 16px;
}
footer .contact-info-list a {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}
footer .contact-info-list i {
  margin-inline-end: 16px;
}
footer .fa-phone {
  font-size: 18px;
}
footer .fa-envelope {
  font-size: 17.14px;
}
footer .fa-globe {
  font-size: 20px;
}
footer .links h2 {
  color: var(--green-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

footer .links h2 img {
  margin-inline-end: 10px;
}
footer .links li {
  margin-bottom: 10px;
}
footer .links li i {
  font-size: 11.25px;
  margin-inline-end: 16px;
  color: var(--white-color);
}
footer .links li a {
  color: var(--green-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: var(--white-color);
}

footer .links2 {
  min-width: 293px !important;
}
footer .links3 {
  min-width: 160px !important;
}
footer .links4 {
  min-width: 141px !important;
}
footer .whatsapp-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999999999999999999999999999999999999999999999999999999999999999999999999999;
  transition: 0.5s all;
}
footer .whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
footer .whatsapp-fab-menu {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: block;
  z-index: 999999999999999999999999999999999999999999999999999999999999999999999999999999;
}
footer .whatsapp-fab-menu .whatsapp-icon {
  position: static;
}
footer .whatsapp-list {
  position: absolute;
  right: 0;
  bottom: 68px;
  min-width: 220px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(2, 59, 33, 0.18);
  display: none;
}
footer .whatsapp-list.show {
  display: block;
}
footer .whatsapp-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #023b21;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}
footer .whatsapp-list span {
  direction: ltr;
  unicode-bidi: plaintext;
  text-align: left;
}
footer .whatsapp-list a:hover {
  background: #eef8f2;
}
footer .whatsapp-list i {
  color: #25d366;
  font-size: 18px;
}

/* html[dir="ltr"] footer .whatsapp-icon{
  right:0;
}
html[dir="rtl"] footer .whatsapp-icon{
  left:0;
} */
/* html[dir="ltr"] footer .footer-vector{
  left: 0;
}
html[dir="rtl"] footer .footer-vector{
  right: 0;
} */

/* media query for footer section  */
@media (max-width: 992px) {
  footer {
    padding: 16px 0 34px;
  }
  /* footer .vector {
    position: absolute;
    top: 0;
    z-index: -1;
    height: 100%;
    bottom: 0;
    width: 100%;
  } */
  footer .contact-info-container {
    min-width: 155px !important;
  }
  footer .footer-logo {
    width: 100%;
  }
  footer .footer-logo img {
    width: 100%;
    object-fit: cover;
  }
  footer .social-media {
    margin-top: 24px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  footer .icon {
    width: 37px;
    height: 37px;
  }
  footer .fa-facebook-f {
    font-size: 18.07px;
  }
  footer .fa-instagram {
    font-size: 15.58px;
  }
  footer .fa-linkedin-in {
    font-size: 14.14px;
  }
  footer .contact-info-list {
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .contact-info-list li {
    margin-bottom: 10.5px;
  }
  footer .contact-info-list a {
    font-size: 12px;
    line-height: 19.2px;
  }
  footer .links {
    margin-bottom: 34px;
  }
  footer .links h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
  }

  footer .links li {
    margin-bottom: 8px;
  }
  footer .links li a {
    font-size: 12px;
    font-weight: 400;
    line-height: 19.2px;
  }

  footer .links2,
  footer .links3,
  footer .links4 {
    min-width: 100% !important;
    padding-left: 41px;
    padding-right: 41px;
  }
  footer .whatsapp-icon {
    display: inline-flex;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  footer .whatsapp-fab-menu {
    display: block;
  }
  footer .whatsapp-list {
    bottom: 58px;
    min-width: 190px;
  }
  footer .row-container {
    justify-content: center !important;
  }
  /* footer .row2 {
    padding: 44px 41px 0 !important;
    background-color: brown;
  } */
  footer .row2 .col-lg-3,
  footer .row2 .col-lg-4 {
    justify-content: flex-start !important;
  }
  footer .vector {
    top: -43.5%;
  }
}
/* global style for other heros sections   */
.other-hero-section {
  height: 50vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 55;
}
.hire-hero {
  background-image: url(../images/hire-hero-img.jpeg);
}
.about-hero {
  background: url(../images/about-imgs/about-hero-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about-hero .layer {
  background: rgba(255, 254, 254, 0.1) !important;
}
.services-page-hero {
  background-image: url(../images/services-imgs/service-hero-img.jfif);
}
.blogs-hero {
  background: url(../images/blog-imgs/blog-hero-img1.png);
  background-repeat: no-repeat;
}
.other-hero-section .layer {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: rgba(2, 59, 33, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.other-hero-section .layer > div {
  position: relative;
  z-index: 2;
  height: 100%;
}
.other-hero-section h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 96px;
  text-align: center;
  color: var(--active-green-color);
  text-transform: capitalize;
}
.other-hero-section h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
  color: var(--inactive-url-color);
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.other-hero-section span {
  font-weight: 600;
  color: var(--active-green-color);
}
.other-hero-section .fa-house {
  margin-inline-end: 4px;
  font-size: 18px;
}
.other-hero-section .fa-angle-right {
  margin: 0 8px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .other-hero-section {
    height: 36.986vh;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .other-hero-section {
    height: 20.986vh;
  }
}
@media (max-width: 992px) {
  .other-hero-section h2 {
    font-size: 28px;
    line-height: 44.8px;
    text-align: center;
    color: var(--active-green-color);
  }
  .other-hero-section h4 {
    font-size: 12px;
    line-height: 19.2px;
  }

  .other-hero-section .fa-house {
    margin-inline-end: 4px;
    font-size: 18px;
  }
  .other-hero-section .fa-angle-right {
    margin: 0 8px;
    font-size: 9px;
  }
}

/* start hiring form section  */
.file-upload {
  display: flex;
  align-items: center;
}

.file-upload input[type="file"] {
  display: none; /* Hide the default file input */
}

.file-upload .upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00a36c; /* Green background for the button */
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.file-upload input {
  width: 900px !important;
  background-color: #d9d9d9 !important;
}

.file-upload .upload-button:hover {
  background-color: #007a56; /* Darker green on hover */
}
/* start contact-page  */
.contact-hero {
  background-image: url(../images/contact-imgs/contact-hero-img.jfif);
}
.contact-form {
  margin-bottom: 56px;
}
.contact-form .heading {
  margin-bottom: 48px;
}
.contact-form .row {
  gap: 93px;
}
.contact-form .col-lg-6 {
  min-width: 712px !important;
  padding: 0 !important;
}
.contact-form .col-lg-4 {
  min-width: 292px !important;
}
.contact-form .heading h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 75.6px;
}
.contact-form .subtitle {
  max-width: 712px !important;
}
.contact-form .heading p {
  font-size: 28px;
  font-weight: 400;
  line-height: 44.8px;
  color: var(--alt-gray-txt-color);
  margin-top: 16px;
}
.contact-form a {
  font-size: 28px;
  font-weight: 400;
  line-height: 44.8px;
  color: #023b21;
}
.contact-form a img {
  margin-inline-end: 16px;
}
.contact-form .inputs-container {
  display: flex;
  gap: 52px;
  justify-content: space-between;
}
.contact-form .input {
  min-width: 330px;
  flex-shrink: 0;
}
.contact-form input {
  width: 100% !important;
}
.contact-form .txt-area textarea {
  min-width: 660px;
  width: 100%;
  min-height: 132px !important;
  border-radius: 8px;
}
.contact-form label {
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  color: rgba(33, 83, 60, 1);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form label img {
  width: 24px;
  object-fit: cover;
  margin-inline-end: 8px;
}
.contact-form .input,
.contact-form .txt-area {
  margin-bottom: 32px;
}
.contact-form .form-control {
  min-height: 48px !important;
}
.contact-form input,
.contact-form textarea {
  background-color: rgba(244, 242, 242, 1);
  border-radius: 8px !important;
  border: none;
}
html[dir="rtl"] .contact-form .form-control {
  padding: 11px 16px 11px 0px;
}
html[dir="ltr"] .contact-form .form-control {
  padding: 11px 0px 11px 16px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #7a7c77;
}
.contact-form .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.contact-form .submit-btn button {
  position: relative;
  border: none;
  outline: none;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  color: var(--inactive-url-color);
  padding: 8px 16px;
  border-radius: 8px;
  background-color: rgba(2, 59, 33, 1);
  overflow: hidden;
  z-index: 1;
  transition: transform color 0.5s ease, border-color 0.5s ease;
}
.contact-form .submit-btn button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #056c3e;
  z-index: -1;
  transition: left 0.5s ease;
}

.contact-form .submit-btn button:hover::before {
  left: 0;
}

.contact-form .submit-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(2, 59, 33, 0.4),
    /* Soft dark green shadow */ 0 2px 4px rgba(2, 59, 33, 0.2); /* Lighter inner shadow */
}

.contact-form .contact-info .list-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
}
.contact-form .list-item .icon {
  background-color: #dfe9f5;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form .list-item h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: #999999;
}
.contact-form .list-item h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #023b21;
}
.contact-info-mob {
  display: none;
}
/* start hiring form section  */
.hiring-form p {
  font-size: 28px;
  font-weight: 400;
  line-height: 44.8px;
  color: #7c7c7c;
  margin-bottom: 32px;
}
.hiring-form .form a {
  font-size: 28px;
  font-weight: 500;
  line-height: 44.8px;
  color: #023b21;
  /* border-bottom: 2px solid #023B21; */
  text-decoration: underline;
}
.hiring-form img {
  margin-inline-end: 16px;
}
/* media query for contact-form section  */
@media (max-width: 992px) {
  .contact-form {
    margin-bottom: 35px;
  }
  .contact-form .heading {
    margin-bottom: 24px;
  }
  .contact-form .row {
    gap: 0px;
  }
  .contact-form .col-lg-6 {
    min-width: 100% !important;
  }
  .contact-form .col-lg-4 {
    min-width: 100% !important;
  }
  /* .contact-form .heading h2 {
    font-size:36px ;
    font-weight: 700;
    line-height:75.6px ;
  } */
  .contact-form .subtitle {
    max-width: 100% !important;
  }
  .contact-form .heading p {
    font-size: 12px;
    font-weight: 400;
    line-height: 19.2px;
    margin-top: 8px;
  }
  .contact-form a {
    font-size: 28px;
    font-weight: 400;
    line-height: 44.8px;
    color: #023b21;
  }
  .contact-form a img {
    margin-inline-end: 8px;
  }
  .contact-form .inputs-container {
    display: block;
  }
  .contact-form .input {
    min-width: 100%;
  }
  .contact-form input {
    width: 100% !important;
  }
  .contact-form .txt-area textarea {
    min-width: 100%;
    width: 100%;
    min-height: 132px !important;
  }
  .contact-form label {
    font-size: 16px;
    line-height: 25.6px;
  }

  .contact-form .form-control {
    min-height: 38px !important;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
  }
  .contact-form .submit-btn {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .contact-form .submit-btn button {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    padding: 7px 16px;
  }
  .contact-info .list-item {
    margin-bottom: 16px;
  }
  .contact-info .list-item .icon {
    background-color: #dfe9f5;
    width: 32px;
    height: 32px;
    border-radius: 4px;
  }
  .contact-info .list-item h5,
  .contact-info .list-item a {
    font-size: 12px;
    line-height: 19.2px;
  }
  .contact-info .list-item h4 {
    font-size: 14px;
    line-height: 22.4px;
  }

  .hiring-form p {
    font-size: 12px;
    line-height: 19.2px;
    margin-bottom: 16px;
  }
  .hiring-form .form a {
    font-size: 18px;
    line-height: 28.8px;
  }
  .hiring-form img {
    margin-inline-end: 8px;
  }
  .contact-info-mob {
    display: block;
    margin-top: -80px;
  }
  .contact-info-desktop {
    display: none;
  }
}
@media (min-width: 993px) {
  .contact-info-mob {
    display: none;
  }
  .contact-info-desktop {
    display: block;
  }
}
/* start our-locations-section-style  */
.our-locations .map {
  position: relative;
  overflow: hidden;
}
.our-locations .map > img {
  object-fit: cover;
  min-height: 520px;
  width: 100%;
}
.our-locations .locations-slider-wrap {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 48px;
  z-index: 2;
}
.our-locations .locations-swiper {
  overflow: hidden;
}
.our-locations .locations-swiper .swiper-slide {
  width: 405px;
  height: auto;
}
.our-locations .location-card {
  background-color: var(--white-color);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  min-height: 233px;
  min-width: 0;
  width: 100%;
  padding: 24px 32px;
  transition: 0.5s ease;
  overflow: hidden;
}
.our-locations .location-card:hover {
  transform: translateY(-4px) scale(1.1);
}
.our-locations .location-swiper-controls {
  margin-top: 20px;
}
.our-locations h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 38.4px;
  margin-block-start: 16px;
  color: #023b21;
}
.our-locations h4 img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  margin-inline-end: 8px;
}
.our-locations h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  margin-block-start: 16px;
  color: #7a7979;
}
.our-locations a {
  background-color: #023b21;
  color: var(--light-text-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28.8px;
  transition: 0.25s all;
  margin-top: 23px;
  min-width: 100%;
  display: block;
  text-align: center;
  padding: 6.5px;
  position: relative;
  overflow: hidden;
  transition: transform color 0.3s ease, border-color 0.3s ease;
}

.our-locations a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #056c3e;
  z-index: -1;
  transition: left 0.5s ease;
}

.our-locations a:hover::before {
  left: 0;
}

.our-locations a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(2, 59, 33, 0.4), 0 2px 4px rgba(2, 59, 33, 0.2);
  backdrop-filter: (4px);
}
/* media query for our locations  */
@media (max-width: 767px) {
  .our-locations .map > img {
    min-height: 260px;
  }
  .our-locations .locations-slider-wrap {
    position: unset;
    margin-top: -40px;
  }
  .our-locations .locations-swiper .swiper-slide {
    width: 299px;
  }
  .our-locations .location-card {
    min-height: 233px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .our-locations .map > img {
    min-height: 360px;
  }
  .our-locations .locations-slider-wrap {
    position: unset;
    margin-top: -40px;
  }
  .our-locations .locations-swiper .swiper-slide {
    width: 75%;
  }
  .our-locations .location-card {
    min-height: 233px;
  }
}
@media (max-width: 1200px) {
  .our-locations .location-card {
    border-radius: 8px;
    padding: 17px 24px;
    background-color: var(--light-text-color);
    backdrop-filter: blur(20px);
  }
  .our-locations h4 {
    font-size: 18px;
    line-height: 28.8px;
  }
  .our-locations h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    margin-block-start: 16px;
    color: #7a7979;
  }
  .our-locations a {
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 19.2px;
  }
}
/* start about page style  */
.our-history,
.our-employee,
.our-message {
  margin-bottom: 48px;
}
.our-history p,
.our-employee p,
.our-message p {
  font-weight: 400;
  line-height: 38.4px;
  font-size: 24px;
  color: #00190e;
}
.our-employee a {
  min-width: 384px;
  border-radius: 8px;
  padding: 9px;
  background-color: #023b21;
  color: var(--light-text-color);
  font-weight: 500;
  font-size: 24px;
  line-height: 38.4px;
  margin-top: 32px;
  display: inline-block;
  text-align: center;
}
.our-employee a img {
  margin-inline-start: 8px;
}

.our-message .message-card {
  margin-top: 32px;
  min-height: 240px;
  border-radius: 8px;
  padding: 24px 29px;
  background-color: #eff4fa;
  transition: 0.5s all;
}
.our-message .message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
}
.our-message .header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.our-message .header h4 {
  color: var(--blue-color);
  font-weight: 600;
  font-size: 32px;
  line-height: 51.2px;
}
.our-message .message-card .icon {
  width: 44.07px;
  height: 44.07px;
}
.our-message .message-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-message .message-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: #6d6c6c;
}
/* media query for  our-history ,  our-employee , our-message */
@media (max-width: 992px) {
  .our-history,
  .our-employee,
  .our-message {
    margin-bottom: 24px;
  }
  .our-history p,
  .our-employee p,
  .our-message p {
    line-height: 22.4px;
    font-size: 14px;
  }
  .our-employee a {
    min-width: 249px;
    border-radius: 4px;
    padding: 5px;
    font-size: 14px;
    line-height: 22.4px;
    margin-top: 24px;
  }
  .our-message .row {
    justify-content: center !important;
    align-items: center !important;
  }
  .our-message .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .our-message .message-card {
    margin-top: 24px;
    min-height: 211px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .our-message .header {
    display: flex;
    gap: 8px;
    margin-bottom: 4.5px;
  }
  .our-message .header h4 {
    font-size: 24px;
    line-height: 38.4px;
  }
  .our-message .message-card .icon {
    width: 40px;
    height: 40px;
  }
  .our-message .message-card p {
    font-size: 12px;
    line-height: 19.2px;
  }
}
/* start core-values section style  */
.core-values {
  margin-bottom: 65px;
}
.core-values .col-lg-4 {
  max-width: 397px !important;
  padding: 0;
  margin-bottom: 51px;
}

.core-values .val-card {
  min-height: 145px;
  border-radius: 8px;
  /* padding: 17px 26px; */
  background-color: #eff4fa;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
.core-values .val-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
}
.core-values .icon {
  min-width: 110px;
}
.core-values .content {
  max-width: 212px;
}
.core-values .val-card-content {
  max-width: 330px;

  /* gap: 40px; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
}
.core-values h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 44.8px;
  color: #878686;
}
/* media query for core-values section  */
@media (max-width: 992px) {
  .core-values {
    margin-bottom: 32px;
  }
  .core-values .row {
    justify-content: center !important;
    align-items: center !important;
  }
  .core-values .col-lg-4 {
    max-width: 100% !important;
    margin-bottom: 25px;
  }
  .core-values .val-card {
    min-height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .core-values .icon {
    min-width: 74px;
  }
  .core-values .content {
    max-width: 100%;
  }
  .core-values .val-card-content {
    max-width: 181px;
  }
  .core-values h4 {
    font-size: 18px;
    line-height: 28.8px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .core-values .col-lg-4 {
    padding: 10px;
  }
}
/* start office-overview section style  */
.office-overview .overview-row {
  margin-bottom: 32px;
  position: relative;
  z-index: 66;
}
.office-overview .first-row {
  background-color: #01331c;
}
.office-overview .sec-row {
  background-color: #00469e;
}
.office-overview .third-row {
  background-color: #21b66c;
}
.office-overview .img {
  min-width: 644px;
  min-height: 562px;
}
.office-overview .content {
  min-width: 679px;
  padding: 0 60px;
}
.office-overview .img img {
  width: 100%;
  min-height: 562px;
  object-fit: cover;
}
.office-overview p {
  color: var(--light-text-color);
  font-size: 28px;
  line-height: 44.8px;
  font-weight: 500;
}
.office-overview .vector {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* opacity: 0.4; */
}
html[dir="ltr"] .office-overview .vector {
  right: 0;
}
html[dir="rtl"] .office-overview .vector {
  left: 0;
}
.office-overview .overview-row:nth-child(even) {
  flex-direction: row-reverse;
}
/* media query for office-overview  */
@media (max-width: 1024px) {
  .office-overview h2 {
    text-align: center;
  }
  .office-overview .overview-row {
    margin-bottom: 24px;
    flex-direction: column;
  }
  .office-overview .img {
    min-width: 100%;
    min-height: 375px;
  }
  .office-overview .content {
    min-width: 100%;
    padding: 24px 16px;
  }
  .office-overview .img img {
    min-height: 375px;
  }
  .office-overview p {
    font-size: 14px;
    line-height: 22.4px;
  }
  .office-overview .overview-row:nth-child(even) {
    flex-direction: column;
  }
  .office-overview .overview-row .img {
    order: 1;
  }
  .office-overview .overview-row .content {
    order: 2;
  }
}
.office-overview .mob {
  display: none;
}
@media (max-width: 767px) {
  .office-overview .desktop {
    display: none;
  }
  .office-overview .mob {
    display: block;
    top: 30%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .office-overview .desktop,
  .office-overview .mob {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .office-overview .desktop {
    display: block !important;
  }
}
/* start help section style  */
.help {
  margin-bottom: 42px;
  background-color: #eef5ff;
  padding: 48px 0;
}
.help h3 {
  color: var(--blue-color);
  font-size: 32px;
  line-height: 51.2px;
  font-weight: 600;
  margin-bottom: 8px;
}
.help p {
  color: var(--blue-color);
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 400;
}
.help .btns {
  display: flex;
  gap: 16px;
}
.help a {
  min-width: 215px;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  transition: 0.25s all;
}
.help .send-req {
  color: var(--light-text-color);
  background-color: var(--blue-color);
}
.help .explore-serv {
  color: var(--blue-color);
  background-color: transparent;
  border: 1px solid var(--blue-color);
}
/* media query for help section  */
@media (max-width: 992px) {
  .help {
    margin-bottom: 24px;
    padding: 24px 16px;
  }
  .help h3 {
    font-size: 18px;
    line-height: 28.8px;
    text-align: center;
  }
  .help p {
    font-size: 12px;
    line-height: 19.2px;
  }
  .help a {
    min-width: 141px;
    padding: 6.5px;
    font-size: 12px;
    line-height: 19.2px;
  }
  .help .content {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}
/* start services pages style  */
.services {
  position: relative;
  z-index: 77;
}
.services .serv-desc p {
  font-weight: 400;
  font-size: 28px;
  line-height: 44.8px;
  color: var(--dark-gray-color);
  margin-bottom: 32px;
}
.services .col-lg-4 {
  /* max-width: 397px !important; */

  /* padding: 0 !important; */
  min-height: 686px !important;
  padding-bottom: 0 !important;
}
.services .service-card,
.services .first-serv,
.services .sec-serv,
.services .third-serv {
  min-height: 686px !important;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  padding-bottom: 15px;
  padding-top: 1px;
  transition: 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.services .vector {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  bottom: 0;
}
html[dir="ltr"] .services .vector {
  right: 0;
}
html[dir="rtl"] .services .vector {
  left: 0;
}
.services .first-serv {
  background-color: #00469e;
}
.services .first-serv:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 1px 5px rgba(0, 0, 0, 0.1);
}
.services .sec-serv {
  background-color: #01331c;
}
.services .sec-serv:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 2px 5px rgba(0, 0, 0, 0.2);
}
.services .third-serv {
  background: linear-gradient(180deg, #002f19 0%, #2fc377 100%);
}
.services .third-serv:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
}
.services .serv-category {
  margin: 23px 35px 5px 0px;
  direction: rtl !important;
}

dir[rtl] .services .serv-category {
  margin: 23px 0px 5px 35px;
}


.services h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 51.2px;
  color: var(--light-text-color);

  margin-bottom: 16px;
  padding: 11px 32px;
  background: #ffffff33;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.services .icon {
  text-align: center;
  margin-bottom: 42px;
  display: flex;
  justify-content: center;
}
.services .icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.services li {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 16px;
  padding: 10px 8px;
  background-color: #ffffff2b;
}
.services li a {
  color: var(--light-text-color);
}
/* media guery for main service page  */
@media (max-width: 767px) {
  .services .first-serv,
  .services .sec-serv,
  .services .third-serv,
  .services .service-card {
    min-height: 381px !important;
    padding-bottom: 11px !important;
  }
}
@media (max-width: 992px) {
  .services .row {
    justify-content: center !important;
  }

  .services .serv-category {
    max-width: 211px;
    margin: 24px 0 16px;
  }
  .services .icon {
    margin-bottom: 22px;
  }
  .services .icon img {
    width: 88px;
    height: 88px;
  }
  .services li {
    font-size: 16px;
    line-height: 25.6px;
  }
  .services .col-lg-4 {
    max-width: 100% !important;
    min-height: 381px !important;
    margin-bottom: 24px;
  }
  .services .col-lg-4.d-flex {
    display: flex !important;
  }
  .services .serv-desc p {
    font-size: 12px;
    line-height: 19.2px;
    margin-bottom: 38px;
  }
  .services h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 16px;
    padding: 11px 32px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  html[dir="rtl"] .services h4 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
/* start internal-audit-service-page  */
/* start audit-serv section style  */
.service-req {
  margin-bottom: 32px;
  min-height: 218px;
  position: relative;
  z-index: 77;
  padding: 68px 48px;
}
.audit-serv {
  background-color: #00469e;
}
.zakat-serv {
  background-color: #01331c;
}
.consult-serv {
  background: linear-gradient(180deg, #002f19 0%, #2fc377 100%);
}
.service-req .vector {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  right: 0;
}
html[dir="ltr"] .service-req .vector {
  right: 0;
}
html[dir="rtl"] .service-req .vector {
  left: 0;
}
.service-req .serv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-req .icon {
  min-width: 60px;
  min-height: 60px;
}
.service-req .icon img {
  margin-inline-end: 11px;
}
.service-req h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: var(--light-text-color);
}
.service-req h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 51.2px;
  color: var(--light-text-color);
}
.service-req a {
  min-width: 199px;
  padding: 8px;
  border-radius: 8px;
  background-color: var(--light-text-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #023b21;
  text-align: center;
  transition: 0.5s all;
}
.service-req a:hover {
  opacity: 0.8;
}

/* start serv-property section style  */
.serv-property {
  margin-bottom: 100px;
}
.serv-property .icon {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #004ba9;
  color: var(--white-color);
  font-size: 25.33px;
}
.zakat-property .icon {
  background-color: #01331c;
}
.consult-property .icon {
  background-color: #26d07c;
}
.serv-property li {
  margin-bottom: 34.5px;
  display: flex;
  align-items: center;
  gap: 10.5px;
}
.serv-property li h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #004ba9;
  margin-bottom: 0;
}

.zakat-property li h3 {
  color: #01331c;
}
.consult-property li h3 {
  color: #023b21;
}

/* media query for internal services pages  */
@media (max-width: 992px) {
  .service-req {
    /* margin-left: 24px;
    margin-right: 24px; */

    min-height: 148px;
    padding: 36px 16px;
    margin: 0 auto 16px;
    max-width: calc(100% - 48px);
  }
  .service-req .vector {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: -1;
  }

  .service-req .icon {
    min-width: 30px;
    min-height: 30px;
  }
  .service-req .icon img {
    margin-inline-end: 16px;
  }
  .service-req h5 {
    font-size: 12px;
    line-height: 19.2px;
  }
  .service-req h4 {
    font-size: 18px;
    line-height: 28.8px;
  }
  .service-req .serv-container {
    display: block;
  }
  .service-req .action-btn {
    margin-top: 32px;
    display: flex;
    justify-content: end;
    width: 100%;
  }
  .service-req a {
    min-width: 130px !important;
    padding: 6.5px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 19.2px;
  }

  .serv-property {
    margin-bottom: 60px;
  }
  .serv-property .icon {
    width: 32px;
    height: 32px;
    font-size: 17.3px;
    padding: 17px 14px;
  }

  .serv-property li {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.2px;
    gap: 8px;
    align-items: flex-start;
  }
  .serv-property li h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 19.2px;
  }
}
/* start blogs section  */

.blogs .col-lg-4 {
  /* max-width:365px ; */
  min-height: 549px;
  /* padding: 0; */
}
.blogs .blog-card {
  border-radius: 24px;
  background-color: #eff4fa;
  transition: 0.5s ease all;
}
.blogs .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
}
.blogs .blog-img {
  width: 100%;
  max-width: 100%;
  padding: 16px;
  justify-content: center;
  align-items: center;
}
.blogs .blog-img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs .blog-content {
  padding: 16px 22px;
}
/* html[dir="rtl"] .blogs .blog-content{
  padding: 17px 22px 10px 8px;
} */
.blogs h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #5a5b59;
}
.blogs h5 span {
  margin-inline-end: 8px;
  margin-inline-start: 8px;
}

.blogs h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 38.4px;
  color: var(--blue-color);
  margin: 8px 0;
}

.blogs p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #1e1f1d;
  margin-bottom: 10px;
  max-width: 315px;
}
.blogs .read-more {
  display: flex;
  justify-content: end;
}
.blogs .read-more a {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: var(--green-color);
  transition: 0.5s all;
}
.blogs .read-more a:hover {
  background: linear-gradient(180deg, #34eb89, #023b21);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blogs .read-more a img {
  margin-inline-end: 8px;
}
/* media query for blogs  */
@media (max-width: 767px) {
  .blogs .row {
    gap: 0px;
    justify-content: center !important;
    align-items: center;
  }
  .blogs .col-lg-4 {
    max-width: 100% !important ;
    min-height: 301px;
    background-color: #eff4fa;
    padding: 0;
    margin-bottom: 16px;
  }

  .blogs .blog-content {
    padding: 16px 24px;
  }
  /* html[dir="rtl"] .blogs .blog-content{
    padding: 17px 22px 10px 8px;
  } */
  .blogs h5 {
    font-size: 12px;
    line-height: 15.6px;
  }
  .blogs h3 {
    font-size: 16px;
    line-height: 25.6px;
  }
  .blogs p {
    font-size: 12px;
    line-height: 19.2px;
    margin-bottom: 8px;
    max-width: 295px;
  }
  .blogs .read-more a {
    font-size: 12px;
    line-height: 19.2px;
    font-weight: 700;
  }
}
/* start blog-details page  */
.blog-details {
  margin-bottom: 56px;
}
.blog-details .txt {
  max-width: 635px !important;
}
.blog-details .col-lg-5 {
  max-width: 523px !important;
  min-height: 635px !important;
}
.blog-details h2 {
  font-size: 48px;
  line-height: 76.8px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 8px;
}
.blog-details h3 {
  color: #5a5b59;
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}
.blog-details p {
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 400;
  color: #00190e;
}
.blog-details .img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* media query for blog-details section  */
@media (max-width: 992px) {
  .blog-details {
    margin-bottom: 32px;
  }
  .blog-details .txt {
    max-width: 100% !important;
    order: 2;
  }
  .blog-details .col-lg-5 {
    max-width: 100% !important;
    min-height: 220px !important;
    order: 1;
  }
  .blog-details h2 {
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 700;
    margin-bottom: 4px;
    margin-top: 8px;
  }
  .blog-details h3 {
    font-size: 12px;
    line-height: 19.2px;
    font-weight: 400;
    margin-bottom: 16px;
  }
  .blog-details p {
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 400;
  }
}

/* start about-blog section ----- */
.about-blog {
  margin-bottom: 32px;
}
.about-blog h2 {
  font-size: 32px;
  line-height: 51.2px;
  font-weight: 600;
  color: #26d07c;
  margin-bottom: 16px;
}
.about-blog p {
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 400;
  color: #00190e;
}
/* media query for about-blog section  */
@media (max-width: 767px) {
  .about-blog {
    margin-bottom: 24px;
  }
  .about-blog h2 {
    font-size: 18px;
    line-height: 28.8px;
  }
  .about-blog p {
    font-size: 24px;
    line-height: 25.6px;
  }
}
.blog-img .img-container {
  background: url(../images/blog-imgs/banner-blog-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  height: 54vh;
  background-position: center;
  margin-bottom: 32px;
}
/* media query for blog-img section  */
@media (max-width: 767px) {
  .blog-img .img-container {
    height: 19.7vh;
    border-radius: 8px;
    margin-bottom: 16px;
  }
}

/* start our-clients-section style  */
.clients-hero {
  background-image: url(../images/clients-imgs/clients-hero.jfif);
}
/* start our-clients section style  */
.our-clients .row {
  gap: 28px;
  flex-wrap: wrap;
}
.our-clients .col-md-2 {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  max-width: 226px !important;
  min-height: 98px !important ;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.our-clients .col-md-2 img {
  object-fit: cover;
  width: 100%;
}
.our-clients .black-bg {
  background-color: #222220 !important;
}
/* media query for our-clients section  */
@media (max-width: 767px) {
  .our-clients .row {
    gap: 8px;
  }
  .our-clients .col-md-2 {
    border-radius: 4px;
    min-width: 109px !important;
    min-height: 59px !important ;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
}
/* start our-experts pages  */
/* start member-card-section-style  */
.experts-hero {
  background-image: url(../images/experts-hero.jfif);
}
.member-card {
  margin-bottom: 40px;
}
.member-card .container {
  background-color: #023b21;
  min-height: 306px;
  position: relative;
  z-index: 8;
  padding: 0;
}

.member-card .vector {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
}
.member-card .row {
  gap: 74px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.member-card .col-3 {
  /* max-width: 290px !important;
  min-height: 306px !important; */
}
.member-card .col-3 img {
  width: 100%;
  height: 100%;
  /* max-width: 290px !important;
  min-height: 306px !important; */
  object-fit: cover;
}
.member-card .col-8 {
  /* padding-bottom: 32px; */
  padding-inline-end: 32px;
}
.member-card h2 {
  font-size: 36px;
  line-height: 57.6px;
  font-weight: 600;
  color: #fff;
}
.member-card h3 {
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 500;
  color: #fff;
  margin: 8px 0 16px;
}
.member-card ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  margin-bottom: 16px;
}
.member-card span,
.member-card a {
  font-size: 18px;
  line-height: 28.8px;
  font-weight: 400;
  color: #fff;
}

.member-card i {
  font-size: 24px;
}
.member-card button {
  position: relative;
  outline: none;
  border: none;
  min-width: 199px;
  padding: 8px;
  color: #023b21;
  background-color: var(--light-text-color);
  border-radius: 8px;
  transition: 0.25s all;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  margin-top: 36px;
  overflow: hidden;
  z-index: 1;
  transition: transform color 0.3s ease, border-color 0.3s ease;
}
.member-card button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--light-text-color);
  z-index: -1;
  transition: left 0.5s ease;
}

.member-card button:hover::before {
  left: 0;
}

.member-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(249, 249, 250, 0.4),
    /* Soft dark green shadow */ 0 2px 4px rgba(248, 251, 250, 0.2); /* Lighter inner shadow */
}
/* media query for member-card-section  */
@media (max-width: 992px) {
  .experts-hero {
    background-image: url(../images/experts-hero.jfif);
  }
  .member-card {
    margin-bottom: 16px;
  }
  .member-card .container {
    min-height: auto;
    overflow: hidden;
  }

  .member-card .row {
    gap: 0;
    align-items: flex-start !important;
  }
  .member-card .col-lg-3,
  .member-card .col-md-4,
  .member-card .col-lg-8,
  .member-card .col-md-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .member-card .member-img {
    width: 100%;
  }
  .member-card .member-img img {
    display: block;
    margin: 0;
    object-fit: cover;
    width: 100%;
    height: auto;
    min-width: 0 !important;
    min-height: 0 !important;
    max-height: 420px;
  }

  .member-card h2 {
    font-size: 16px;
    line-height: 25.6px;
  }
  .member-card h3 {
    font-size: 12px;
    line-height: 19.2px;
    font-weight: 400;
    margin: 4px 0 16px;
  }
  .member-card ul li {
    gap: 8px;
    margin-bottom: 8px;
  }
  .member-card span,
  .member-card a {
    font-size: 12px;
    line-height: 19.2px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .member-card i {
    font-size: 16px;
  }
  .member-card .info {
    padding: 14px 12px;
  }
  .member-card .action-btn {
    justify-content: flex-start !important;
  }
  .member-card .action-btn a {
    min-width: 114px;
    padding: 6.5px;
    font-size: 12px;
    line-height: 19.2px;
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .member-card .member-img {
    display: flex;
    justify-content: center;
    padding-top: 14px;
  }

  .member-card .member-img img {
    width: 160px;
    height: 160px;
    max-height: none;
    border-radius: 50%;
    object-fit: cover;
  }

  .member-card .info {
    text-align: center;
  }

  .member-card ul li {
    justify-content: center;
  }

  .member-card .action-btn {
    justify-content: center !important;
  }
}
/* start our-experience section style  */
.our-experience,
.our-qualifications,
.our-prof-experience {
  margin-bottom: 40px;
}
.our-experience h2,
.our-qualifications h2,
.our-prof-experience h2 {
  font-size: 40px;
  line-height: 64px;
  font-weight: 700;
  color: #26d07c;
  margin-bottom: 15px;
}
.our-experience ul li,
.our-qualifications ul li,
.our-prof-experience ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 400;
  color: #000302;
}
/* .our-experience ul li img, .our-qualifications ul li  img, .our-prof-experience ul li img{
  margin-inline-end: 8px;
} */
.our-prof-experience h3 {
  font-size: 28px;
  line-height: 44.8px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .our-experience,
  .our-qualifications,
  .our-prof-experience {
    margin-bottom: 24px;
  }
  .our-experience h2,
  .our-qualifications h2,
  .our-prof-experience h2 {
    font-size: 24px;
    line-height: 38.4px;
    margin-bottom: 8px;
  }
  .our-experience ul li,
  .our-qualifications ul li,
  .our-prof-experience ul li {
    font-size: 12px;
    line-height: 19.2px;
  }
  .our-prof-experience h3 {
    font-size: 16px;
    line-height: 25.6px;
  }
}
/* start req-form page style  */
.req-serv-hero {
  background-image: url(../images/services-imgs/req-serv-hero.png);
}
.req-form {
  margin-bottom: 55px;
}
.req-form p {
  color: #7c7c7c;
  font-size: 28px;
  line-height: 44.8px;
  font-weight: 400;
  margin-bottom: 48px;
}
.req-form .input {
  margin-bottom: 32px;
}
.req-form label {
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  margin-bottom: 10px;
  color: #21533c;
}
.req-form label span {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.req-form label img {
  margin-inline-end: 8px;
  width: 24px;
}
.req-form .input .form-control,
.req-form input {
  background-color: #f4f2f2;
  border-radius: 8px;
  border: none !important;
  outline: none !important;
  padding: 11px 16px !important;
}
.req-form input::placeholder,
.req-form textarea::placeholder {
  color: #7a7c77;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}
.req-form textarea {
  min-height: 229px;
}
.req-form .serv-ques h4 {
  color: #7a7c77;
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
  margin-bottom: 16px;
}
.req-form .accordion-header button {
  background-color: #f1fcf6 !important;
  color: #21533c;
  font-size: 32px;
  font-weight: 600;
  line-height: 51.2px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.req-form .accordion-header button::after {
  display: none;
}

.req-form .accordion-button.collapsed .custom-toggler-icon {
  color: #21533c;
}
.req-form .accordion-collapse {
  background-color: transparent !important;
}
.req-form .accordion-item {
  border: none;
}
.req-form .accordion-button::after {
  color: #21533c !important;
  /* background-image: none !important; */
}
.req-form .row {
  justify-content: space-between;
}
.req-form .col-md-6 {
  max-width: 621px !important;
}
.req-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.req-form .form-check-label {
  color: var(--blue-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0;
}
.req-form .form-check .form-check-input {
  width: 33.33px !important;
  height: 33.33px !important;
  flex-shrink: 0;
  border-radius: 4px !important;
  border: 3px solid var(--blue-color);
}
.req-form .form-check .form-check-input:checked {
  background-color: var(--blue-color) !important;
}
.req-form .submit-btn button {
  position: relative;
  width: 100%;
  border: none;
  outline: none;
  color: #f1fcf6;
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  background-color: #023b21;
  border-radius: 8px;
  padding: 9px;
  overflow: hidden;
  z-index: 1;
  transition: transform color 0.5s ease, border-color 0.5s ease;
}
.req-form .submit-btn button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #056c3e;
  z-index: -1;
  transition: left 0.5s ease;
}

.req-form .submit-btn button:hover::before {
  left: 0;
}

.req-form .submit-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(2, 59, 33, 0.4),
    /* Soft dark green shadow */ 0 2px 4px rgba(2, 59, 33, 0.2); /* Lighter inner shadow */
}
/* for input file  */
.file-upload-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.file-upload-wrapper h5 {
}
.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.file-name {
  flex-grow: 1;
  border: none;
  background: transparent;
  outline: none;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.file-button {
  background-color: #4ed894;
  padding: 10px;
  width: 77px;
  border: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: 0.5s ease;
}

.file-button:hover {
  opacity: 0.8;
}
@media (max-width: 992px) {
  /* start req-form page style  */
  .req-form {
    margin-bottom: 63px;
  }
  .req-form p {
    font-size: 12px;
    line-height: 19.2px;
    margin-bottom: 24px;
  }
  .req-form .input {
    margin-bottom: 16px;
  }
  .req-form label {
    font-size: 16px;
    line-height: 25.6px;
  }
  .req-form label span {
    font-size: 12px;
    line-height: 19.2px;
  }
  .req-form label img {
    width: 18px;
  }
  .req-form .input .form-control {
    border-radius: 8px !important;
    padding: 8px 16px !important;
  }
  .req-form input::placeholder,
  .req-form textarea::placeholder {
    font-size: 14px;
    line-height: 22.4px;
  }
  .req-form textarea {
    min-height: 213px;
  }
  .req-form .serv-ques h4 {
    font-size: 12px;
    line-height: 19.2px;
  }
  .req-form .accordion-header button {
    font-size: 16px;
    line-height: 25.6px;
    padding-inline-start: 16px;
    margin-bottom: 16px;
  }

  .req-form .row {
    /* justify-content: st; */
  }
  .req-form .col-md-6 {
    max-width: 100% !important;
  }
  .req-form .form-check {
    margin-bottom: 16px;
  }
  .req-form .form-check-label {
    font-size: 12px;
    line-height: 19.2px;
  }
  .req-form .form-check .form-check-input {
    width: 26.67px !important;
    height: 26.67px !important;
    border: 3px solid var(--blue-color);
  }
  .req-form .submit-btn button {
    font-size: 16px;
    line-height: 25.6px;
    padding: 7px;
  }
}
