body,
html {
  overflow-x: hidden;
}

.wow {
  visibility: hidden;
}

.animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.bg-blue {
  background-color: #0D2132;
}

.bg-orange {
  background-color: #F8A91A;
}

.text-orange {
  color: #F8A91A;
}

.text-blue {
  color: #0D2132;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0D2132;
}

::-webkit-scrollbar-thumb {
  background: #F8A91A;
}

::-moz-selection {
  background: #F8A91A;
  color: #0D2132;
}

::selection {
  background: #F8A91A;
  color: #0D2132;
}

body {
  font-weight: 400;
  font-family: "Cairo", sans-serif;
  background: #F6F6EC;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1130px;
  }
}
a {
  text-decoration: none;
  transition: 0.3s;
}

.bg-none {
  background-image: none !important;
}

.mb-100 {
  margin-bottom: 100px;
}

.py-64 {
  padding-block: 64px;
}

.btn-1 {
  background-color: #F8A91A;
  color: white;
  padding: 3px 15px;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
}
.btn-1 i {
  margin-inline-start: 5px;
  margin-inline-end: -12px;
  width: 34px;
  height: 34px;
  background-color: white;
  border-radius: 50%;
  display: inline-flex;
  color: #F8A91A;
  align-items: center;
  transition: 0.3s;
  justify-content: center;
}
@media (max-width: 767px) {
  .btn-1 {
    font-size: 15px;
  }
}
.btn-1:hover {
  background-color: #0D2132;
  color: white;
  box-shadow: 0px 0px 0px 1px white;
}
.btn-1:hover i {
  color: #0D2132;
}

.btn-2 {
  background-color: #0D2132;
  color: white;
  padding: 13px 50px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s;
  font-weight: bold;
  font-size: 18px;
}
.btn-2:hover {
  background-color: #F8A91A;
  color: white;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  z-index: 20;
  background: #0D2132;
  box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.1019607843);
}
header:has(.search-form-wrapper.active) {
  padding-bottom: 10px;
}
@media only screen and (max-width: 600px) {
  header .btn-1 {
    padding: 4px;
    font-size: 14px;
    flex-shrink: 0;
  }
}
header .header-main-content {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo-img img {
  max-height: 62px;
  transition: 0.3s;
}
@media only screen and (max-width: 1024px) {
  header .logo-img img {
    max-height: 42px;
  }
}
@media only screen and (max-width: 400px) {
  header .logo-img img {
    max-height: 35px;
  }
}

.search-form-wrapper {
  background-color: #fff;
  border-radius: 30px;
  padding: 0 25px;
  margin-top: 0;
	position:relative;
/*   display: flex; */
/*   align-items: center; */
/*   justify-content: space-between; */
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s;
	&:has(.open) {
		border-radius: 30px 30px 0 0 ;
		  transition: 0.3s;
	}
}
.search-form-wrapper .search-form {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.search-form-wrapper .search-form .search-btn {
  border: none !important;
  color: #0D2132;
  font-size: 20px;
  transition: 0.3s;
}
.search-form-wrapper .search-form .search-btn:hover {
  color: #F8A91A;
}
.search-form-wrapper .search-form .form-control {
  padding-block: 10px;
  width: 100%;
  background-color: transparent;
  border: none;
  color: #0D2132;
  font-size: 18px;
  box-shadow: none;
}
.search-form-wrapper .search-form .form-control::-moz-placeholder {
  color: #0D2132;
  font-size: 14px;
  opacity: 0.5;
}
.search-form-wrapper .search-form .form-control::placeholder {
  color: #0D2132;
  font-size: 14px;
  opacity: 0.5;
}
.search-form-wrapper.active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  max-height: 100px;
  margin-top: 5px;
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.main-menu a {
  text-transform: capitalize;
  transition: 0.3s;
}

.main-menu > li {
  margin-inline-end: 32px;
}
.main-menu > li > a {
  color: white;
  font-size: 18px;
  transition: 0.3s;
  display: block;
  position: relative;
  padding-bottom: 4px;
}
@media only screen and (max-width: 1024px) {
  .main-menu > li > a {
    font-size: 16px;
  }
}
.main-menu > li > a:before {
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(248, 169, 26, 0.36) 100%);
  width: 100%;
  height: 0px;
  opacity: 0;
  display: block;
  border-bottom: 1px solid #F8A91A;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  z-index: -1;
}
.main-menu > li:hover > a:before, .main-menu > li.current-menu-item > a:before {
  height: 23px;
  transition: 0.3s;
  opacity: 1;
}

.main-menu > li:last-of-type {
  margin: 0;
}

.show-submenu,
.show-overlay {
  opacity: 1;
  visibility: visible;
}

.main-menu .menu-item-has-children {
  position: relative;
  padding: 0;
}
.main-menu .menu-item-has-children > a {
  color: white;
  -moz-column-gap: 5px;
       column-gap: 5px;
  display: flex;
  align-items: baseline;
  position: relative;
}
.main-menu .menu-item-has-children > a::after {
  content: "\f078";
  position: relative;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 10px;
  color: white;
  transition: 0.3s;
}
.main-menu .menu-item-has-children:hover > a {
  color: white;
}
.main-menu .menu-item-has-children:hover > a::after {
  color: white;
}
.main-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}
.main-menu .menu-item-has-children .sub-menu {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #fff;
  position: absolute;
  top: 80px;
  right: -22px;
  list-style: none;
  box-shadow: 0px 2px 13px 9px rgba(0, 0, 0, 0.02);
  padding: 12px;
  transition: 0.3s;
}
.main-menu .menu-item-has-children .sub-menu li {
  text-align: center;
  transition: 0.3s;
}
.main-menu .menu-item-has-children .sub-menu a {
  padding: 10px;
  align-items: center;
  font-size: 16px;
  border-radius: 4px;
  line-height: 1.5;
  color: #0D2132;
  text-align: center;
  justify-content: flex-start;
  font-weight: 400;
  display: flex;
  width: 100%;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: color linear 0.2s;
}
.main-menu .menu-item-has-children .sub-menu a:hover {
  color: #F8A91A;
}

.bars {
  z-index: 21;
  display: none;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
  background: none;
  border: 0;
}
.bars .line {
  flex-shrink: 0;
  width: 25px;
  display: block;
  height: 1.5px;
  background-color: #F8A91A;
  transition: 0.3s;
}

.rotate-line1 {
  transform: rotate(45deg) translateX(-2px) translateY(-2px);
  transform-origin: 0% 0%;
}

.rotate-line3 {
  transform: rotate(-45deg) translateX(0px) translateY(0px);
  transform-origin: 0 100%;
}

.bars .hide-line2 {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
}

.header-icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.header-icons .header-icon {
  font-size: 20px;
  color: #F8A91A;
  cursor: pointer;
  transition: all 0.3s;
}
.header-icons .header-icon:hover {
  color: white;
}

.search-icon {
  width: 25px;
}
.search-icon.active i:before {
  content: "\e59b";
  font-family: "Font Awesome 6 Pro";
}

.dropdown-parent {
  position: relative;
  display: inline-block;
}
.dropdown-parent .dropdown-list {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #F8F4EC;
  position: absolute;
  top: 80px;
  inset-inline-end: -22px;
  list-style: none;
  box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 12px;
  transition: all 0.4s;
}
.dropdown-parent .dropdown-list li {
  text-align: center;
  transition: 0.3s;
}
.dropdown-parent .dropdown-list a {
  padding: 10px;
  align-items: center;
  font-size: 18px;
  color: #0D2132;
  text-align: center;
  justify-content: flex-start;
  display: flex;
  width: 100%;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: 0.3s;
}
.dropdown-parent .dropdown-list a:hover {
  color: #F8A91A;
}
.dropdown-parent:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}

@media only screen and (max-width: 1200px) {
  .menu-item-has-children .sub-menu {
    inset-inline-start: 0;
    transform: unset;
  }
  .main-menu > li {
    margin-inline-end: 25px;
  }
}
@media only screen and (max-width: 992px) {
  .navigation .container {
    padding-inline: 12px;
  }
  .rotate-line3 {
    transform: -45deg translateX(-1px) translateY(0px);
  }
  .logo-img {
    margin-inline-end: auto;
  }
  .header-main-content {
    height: auto;
    justify-content: flex-end;
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
  }
  .main-menu > li {
    margin-inline-end: 0;
    margin-bottom: 25px;
  }
  .main-menu > li:nth-child(5) {
    margin-inline-start: unset;
  }
  .main-menu > li > a {
    font-size: 18px;
    font-weight: 500;
  }
  .main-menu > li:nth-child(4) {
    margin-inline-start: 0;
  }
  .bars {
    display: flex;
  }
  .navigation {
    overflow-y: auto;
    position: fixed;
    transition-duration: 1s;
    visibility: hidden;
    top: 0;
    inset-inline-end: -100%;
    width: 80vw;
    height: 100%;
    padding: 20px;
    background-color: rgba(13, 33, 50, 0.9098039216);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transition: 0.3s;
    z-index: 20;
  }
  .open-sidebar {
    opacity: 1;
    visibility: visible;
    inset-inline-end: 0;
    transition: 0.3s;
  }
  .main-menu .menu-item-has-children > a::after {
    font-size: 14px;
    transition: 0.3s;
    color: white;
  }
  .main-menu .menu-item-has-children > a.icon-rotate::after {
    transform: rotate(180deg);
  }
  .main-menu .menu-item-has-children > a::after {
    font-size: 15px;
  }
  .main-menu .menu-item-has-children .sub-menu {
    position: static;
    background-color: unset;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: unset;
    padding: 0;
    display: none;
    transition: none;
    width: 100%;
    padding-top: 18px;
  }
  .main-menu .menu-item-has-children .sub-menu li {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding-inline-start: 14px;
  }
  .main-menu .menu-item-has-children .sub-menu li:before {
    content: "\e404";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: white;
    font-size: 14px;
    transition: 0.3s;
  }
  .main-menu .menu-item-has-children .sub-menu li:not(:last-of-type) {
    margin-bottom: 17px;
  }
  .main-menu .menu-item-has-children .sub-menu li {
    text-align: start;
  }
  .main-menu .menu-item-has-children:hover .sub-menu {
    transform: unset;
  }
  .main-menu .menu-item-has-children .sub-menu a {
    display: flex;
    padding: 0;
    gap: 8px;
    width: -moz-max-content;
    width: max-content;
    color: white;
  }
  .main-menu .menu-item-has-children {
    width: auto;
    padding: 0;
  }
  .main-menu .menu-item-has-children > a {
    justify-content: space-between;
    cursor: pointer;
  }
  .main-menu .menu-item-has-children {
    line-height: normal;
  }
}
@media only screen and (max-width: 768px) {
  .navigation .container {
    padding-inline: 20px;
  }
  .main-menu .menu-item-has-children .sub-menu li a:hover {
    background-color: transparent;
    color: #F8A91A;
  }
  .main-menu .menu-item-has-children {
    padding: 0;
  }
}
.hero-section {
  animation: zoomBackground 30s linear infinite alternate;
  transition: 0.3s;
}
@media only screen and (max-width: 600px) {
  .hero-section {
    animation: none;
    height: auto;
    background-size: cover !important;
    background-position: center top !important;
    padding-bottom: 80px;
  }
}
.hero-section .hero-main-content {
  position: relative;
  width: 60%;
  max-height: 670px;
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 0 80px;
  color: white;
  margin-inline: auto;
}
@media only screen and (max-width: 1024px) {
  .hero-section .hero-main-content {
    width: 100%;
  }
}
.hero-section .hero-main-content .hero-content {
  text-align: center;
}
.hero-section .hero-main-content .hero-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .hero-section .hero-main-content .hero-title {
    font-size: 25px;
  }
}
.hero-section .hero-main-content .hero-text {
  font-size: 25px;
  margin-bottom: 40px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .hero-section .hero-main-content .hero-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .hero-section .hero-main-content .hero-text {
    font-size: 15px;
  }
}
.hero-section .hero-btn {
  display: flex;
  justify-content: center;
  gap: 32px;
}

@keyframes zoomBackground {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 120%;
  }
}
.hero-features {
  position: relative;
}
.hero-features .hero-features-wrapper {
  margin-top: -50px;
  display: flex;
  justify-content: center;
  gap: 48px;
}
@media only screen and (max-width: 600px) {
  .hero-features .hero-features-wrapper {
    gap: 20px;
  }
}
.hero-features .single-hero-feature {
  flex: 0 0 17%;
  border-radius: 5px;
  background: #0D2132;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 0 10px 20px;
  color: #fff;
  min-height: 95px;
}
@media only screen and (max-width: 768px) {
  .hero-features .single-hero-feature {
    flex: 0 0 25%;
    font-size: 14px;
    padding: 0 10px 12px;
  }
}
.hero-features .single-hero-feature .icon {
  width: 56px;
  height: 56px;
  background: #0D2132;
  border: 1px solid #F8A91A;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -35px auto 20px;
  transition: 0.3s;
}
.hero-features .single-hero-feature .icon img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
.hero-features .single-hero-feature:hover img {
  scale: 1.2;
}
.hero-features .single-hero-feature:hover .icon {
  scale: 1.1;
}

.section-title {
  font-weight: bold;
  font-size: 35px;
  color: #0D2132;
  position: relative;
  margin-bottom: 50px;
  text-transform: uppercase;
  display: inline-flex;
}
@media only screen and (max-width: 768px) {
  .section-title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 600px) {
  .section-title {
    font-size: 20px;
  }
}
.section-title:before {
  content: "";
  background: #F6F6EC url("../images/fancy-icon.png") center center no-repeat;
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.section-title:after {
  content: "";
  height: 1px;
  width: 100%;
  border-radius: 10px;
  background: #F8A91A;
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  z-index: -1;
}

.section-description {
  font-size: 20px;
  color: #0D2132;
}
@media only screen and (max-width: 768px) {
  .section-description {
    font-size: 16px;
  }
}

.about-us-section {
  margin-top: 80px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-us-section {
    margin-top: 50px;
    padding-bottom: 0;
  }
}
.about-us-section .description {
  font-size: 20px;
  color: #0D2132;
  line-height: 1.8;
  margin-bottom: 35px;
  font-weight: normal;
}
@media only screen and (max-width: 600px) {
  .about-us-section .description {
    font-size: 16px;
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .about-us-section .pills-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .about-us-section .pills-wrapper .nav-pills {
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
  }
}
.about-us-section .nav-pills {
  gap: 15px;
}
.about-us-section .nav-pills .nav-link {
  display: flex;
  gap: 9px;
  align-items: center;
  border-radius: 5px;
  background: #f2f2f2;
  border: 1px solid #0d2132;
  font-size: 18px;
  font-weight: bold;
  color: #0D2132;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .about-us-section .nav-pills .nav-link {
    font-size: 16px;
  }
}
.about-us-section .nav-pills .nav-link img {
  width: 31px;
  height: 31px;
  border-radius: 5px;
  padding: 4px;
  border: 1px solid #f8a91a;
}
@media only screen and (max-width: 600px) {
  .about-us-section .nav-pills .nav-link {
    white-space: normal;
    font-size: 12px;
    padding: 10px;
    flex-direction: column;
  }
}
.about-us-section .nav-pills .nav-link.active {
  background: #0D2132;
  color: #fff;
}
.about-us-section .tab-content {
  background: #0D2132;
  padding: 16px;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
}
@media only screen and (max-width: 600px) {
  .about-us-section .tab-content {
    font-size: 16px;
  }
}
.about-us-section .tab-content .feature-title {
  margin-bottom: 20px;
  font-weight: bold;
  display: flex;
  gap: 9px;
	font-size:20px;
}
.about-us-section .tab-content .feature-title img {
  width: 31px;
  height: 31px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-us-section .about-img {
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .about-us-section .about-img {
    margin-bottom: 40px;
  }
}
.about-us-section .about-img img {
  border-radius: 5px;
  transform: rotate(-10deg);
  margin: auto;
  transition: 0.3s;
}
.about-us-section .about-img:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(13, 33, 50, 0.5);
  transform: rotate(10deg) translateX(-50%);
  transform-origin: left center;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 5px;
  opacity: 0.5;
  transition: 0.3s;
}
.about-us-section .about-img img, .about-us-section .about-img:before {
  width: 280px;
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .about-us-section .about-img img, .about-us-section .about-img:before {
    width: 180px;
  }
}
.about-us-section .about-img:hover img {
  transform: rotate(0deg) scale(1.1);
}
.about-us-section .about-img:hover:before {
  transform: rotate(0deg) translateX(-50%) scale(1.15);
  transform-origin: center center;
}

.single-service-card {
  position: relative;
  transition: 0.3s;
  height: 100%;
  border-radius: 20px 5px 5px 5px;
  background: #f2f2f2;
  border: 1px solid #0d2132;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 15px 12px;
  text-align: center;
}
.single-service-card:after {
  content: "\e09d";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: -13px;
  left: -13px;
  font-size: 25px;
  transition: 0.3s;
  color: #0D2132;
  width: 63px;
  height: 63px;
  background: #f2f2f2;
  border: 7px solid #f6f6ec;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .single-service-card {
    margin-top: 0 !important;
  }
}
.single-service-card .service-card-img {
  width: 69px;
  height: 69px;
  border: 1px solid #0d2132;
  background: #FFFFFF;
  margin: 0 auto;
  display: flex;
  transition: 0.3s;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.single-service-card .service-card-img img {
  width: 70%;
  margin: 0 auto;
}
.single-service-card .service-title {
  font-weight: bold;
  font-size: 20px;
  color: #0D2132;
  text-align: center;
  line-height: 1.8;
  margin: 12px 0 16px;
}
.single-service-card .service-title a {
  color: #0D2132;
  transition: 0.3s;
}
.single-service-card .description {
  font-weight: normal;
  font-size: 18px;
  color: #0D2132;
  transition: 0.3s;
}
.single-service-card a:has(.fa-long-arrow-left) {
  font-size: 14px;
  color: #0D2132;
  justify-content: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 3px 6px rgba(13, 33, 50, 0.64);
  background: #0D2132;
  color: #fff;
}
.single-service-card:hover:after {
  background: #0D2132;
  transform: rotate(360deg);
  color: #fff;
}
.single-service-card:hover .service-card-img {
  transform: rotateY(180deg);
}
.single-service-card:hover .description {
  color: #fff;
  transition: 0.3s;
}
.single-service-card:hover a {
  color: white;
}

.services-swiper {
  padding-bottom: 80px;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #ec898e;
  border: 1px solid #ec898e;
  opacity: 0.17;
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F8A91A;
  opacity: 1;
  border-radius: 7px;
  width: 46px;
  transition: 0.3s;
}

.bg-gray {
  background-color: #E6E6E6 !important;
}

.cta-section {
  background-repeat: no-repeat !important;
  background-size: 100% !important;
  background-position: center top !important;
}
@media screen and (max-width: 1024px) {
  .cta-section {
    background-size: cover !important;
  }
}
.cta-section .cta-wrapper {
  padding-block: 5rem;
}
@media only screen and (max-width: 992px) {
  .cta-section .cta-wrapper {
    max-width: 100%;
    padding-block: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  .cta-section .cta-wrapper {
    padding-block: 2rem;
    text-align: center;
  }
  .cta-section .cta-wrapper .cta-title {
    font-size: 20px;
  }
}
.cta-section .cta-title {
  font-weight: bold;
  font-size: 35px;
  color: white;
  margin-bottom: 32px;
}
.cta-section .description {
  color: #0D2132;
  line-height: 1.7;
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 600px) {
  .why-us {
    padding-bottom: 0 !important;
  }
}
.why-us .single-feature {
  border-radius: 5px;
  background: #fff;
  padding: 16px;
  color: #0D2132;
  height: 100%;
  position: relative;
  transition: 0.2s;
}
.why-us .single-feature:before, .why-us .single-feature:after {
  content: "";
  width: 40%;
  aspect-ratio: 1/1;
  background: #F8A91A;
  position: absolute;
  border-radius: 5px;
  z-index: -1;
  transition: 0.2s;
}
.why-us .single-feature:before {
  bottom: -4px;
  left: -4px;
}
.why-us .single-feature:after {
  right: -4px;
  top: -4px;
}
.why-us .single-feature .icon {
  width: 45px;
  height: 45px;
  border: 1px solid #f8a91a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-us .single-feature .icon img {
  width: 80%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
.why-us .single-feature .title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 600px) {
  .why-us .single-feature .title {
    font-size: 16px;
  }
}
.why-us .single-feature .description {
  font-size: 18px;
  font-weight: normal;
  transition: 0.3s;
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .why-us .single-feature .description {
    font-size: 15px;
  }
}
.why-us .single-feature:hover {
  background: #0D2132;
  color: #fff;
}
.why-us .single-feature:hover .description {
  color: #fff;
}
.why-us .single-feature:hover img {
  filter: brightness(0) invert(1);
}
.why-us .single-feature:hover:before {
  bottom: -10px;
  left: -10px;
}
.why-us .single-feature:hover:after {
  top: -10px;
  right: -10px;
}

@media only screen and (max-width: 600px) {
  .stats-section {
    padding-top: 10px !important;
  }
}

.stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media only screen and (max-width: 600px) {
  .stats-wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }
}
.stats-wrapper .single-counter {
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .stats-wrapper .single-counter {
    flex: 0 0 40%;
  }
}
.stats-wrapper .single-counter .counter {
  font-size: 40px;
  font-weight: bold;
  color: #0D2132;
  margin-bottom: 14px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}
.stats-wrapper .single-counter .counter--shown {
  transform: translateY(0);
  opacity: 1;
}
.stats-wrapper .single-counter .counter__num {
  display: inline-block;
}
.stats-wrapper .single-counter .icon {
  height: 50px;
  overflow: hidden;
}
.stats-wrapper .single-counter .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.stats-wrapper .single-counter .state-title {
  font-size: 20px;
  font-weight: bold;
  color: #0D2132;
  margin-top: 10px;
}

.testimonials-section {
  position: relative;
}
.testimonials-section .swiper-wrapper {
  padding-bottom: 40px;
}
.testimonials-section .swiper-slide {
  height: auto !important;
}
.testimonials-section .single-testimonial-card {
  background: #0D2132;
  padding: 16px 20px 0;
  color: white;
  border-radius: 5px;
  text-align: center;
  margin-top: 40px;
  height: 100% !important;
}
.testimonials-section .single-testimonial-card img {
  width: 59px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-top: -50px;
}
.testimonials-section .testimonials-card-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -15px -20px 5px;
  border-radius: 10px 10px 0 0;
  padding: 10px;
}
.testimonials-section img {
  display: block;
  margin: auto;
}
.testimonials-section .name {
  font-size: 20px;
  border-bottom: 1px solid #F8A91A;
  display: inline-flex;
  margin: 0 auto;
  padding-block: 10px;
  padding-inline: 2rem;
  font-weight: bold;
}
.testimonials-section .testimonials-text {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 0;
}

.testimonials-swiper {
  padding-bottom: 40px;
  padding-top: 40px;
}
.testimonials-swiper .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
  transition: 0.3s;
  z-index: 5;
}
.testimonials-swiper .swiper-slide.swiper-slide-prev .single-testimonial-card {
  border-radius: 5px;
  background: linear-gradient(to right, #0d2132 0%, #f6f6ec 100%);
  transition: 0.3s;
}
.testimonials-swiper .swiper-slide.swiper-slide-next .single-testimonial-card {
  border-radius: 5px;
  background: linear-gradient(to left, #0d2132 0%, #f6f6ec 100%);
  transition: 0.3s;
}
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  border-radius: 3px;
  background: #f8a91a;
  box-shadow: 0px 3px 6px rgba(13, 33, 50, 0.4);
  transition: 0.3s;
  color: #fff;
  padding: 6px 10px;
  height: auto;
  top: 60%;
}
.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
  font-size: 14px;
}

.stars {
  color: #FCE340;
  font-size: 10px;
}

/*FAQ*/
@media only screen and (max-width: 600px) {
  .faq-section {
    padding: 0 !important;
  }
}

.single-faq-item {
  margin-bottom: 16px;
}
.single-faq-item .faq-title {
  border-radius: 5px;
  background: #fff;
  border: 1px solid #0d2132;
  padding: 12px 30px 12px 80px;
  font-size: 20px;
  font-weight: bold;
  color: #0D2132;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .single-faq-item .faq-title {
    font-size: 16px;
  }
}
.single-faq-item .faq-title::after {
  content: "\f067";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 20px;
  color: orange;
  background: #0D2132;
  transition: 0.3s;
  bottom: 0;
  top: 0;
  inset-inline-end: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}
.single-faq-item .faq-title.active {
  background: #0D2132;
  color: #fff;
}
.single-faq-item .faq-title.active::after {
  content: "\f068";
  transition: 0.3s;
  color: #0D2132;
  background: #F8A91A;
}
.single-faq-item .faq-content {
  font-size: 20px;
  font-weight: normal;
  line-height: 2;
  padding: 20px;
  display: none;
  border-radius: 5px;
  background: #fff;
}
@media only screen and (max-width: 600px) {
  .single-faq-item .faq-content {
    font-size: 16px;
  }
}

.blog-section {
  position: relative;
}

.single-blog-card {
  transition: 0.3s;
  margin-bottom: 30px;
  background: #0D2132;
  border-radius: 5px;
  color: white;
  overflow: hidden;
  position: relative;
}
.single-blog-card .blog-card-img {
  height: 285px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}
.single-blog-card .blog-card-img .post-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  padding: 4px 8px;
  border-radius: 7px;
  z-index: 2;
  font-size: 14px;
  color: #0D2132;
}
.single-blog-card .blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 5px 0 0;
  transition: 0.3s;
}
.single-blog-card .blog-card-info {
  padding: 16px;
  background: #0D2132;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 16px;
  transition: 0.3s;
}
.single-blog-card .blog-title {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.6;
  transition: 0.3s;
}
.single-blog-card .blog-title a {
  color: white;
}
.single-blog-card .blog-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  transition: 0.3s;
  transform: translateY(30px);
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.single-blog-card .read-more {
  font-size: 14px;
  color: white;
  justify-content: end;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  transform: translateY(30px);
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.single-blog-card:hover .blog-card-info {
  bottom: 0;
}
.single-blog-card:hover .blog-text {
  transform: translateY(0);
  opacity: 1;
  height: 70px;
  margin-bottom: 20px;
}
.single-blog-card:hover .read-more {
  transform: translateY(0);
  opacity: 1;
  height: 40px;
}
.single-blog-card:hover .blog-title {
  margin-bottom: 16px;
}

.blog-sidebar .single-blog-card {
  margin-bottom: 16px;
}
.blog-sidebar .single-blog-card .blog-card-img {
  height: 200px;
}
.blog-sidebar .single-blog-card .post-date {
  font-size: 9px;
}
.blog-sidebar .single-blog-card .blog-title {
  font-size: 13px;
}
.blog-sidebar .single-blog-card .blog-text {
  font-size: 12px;
}
.blog-sidebar .single-blog-card .read-more {
  font-size: 12px;
}
.blog-sidebar .single-blog-card:hover .blog-card-info {
  bottom: -8%;
}

.single-blog-page-wrapper {
  color: #0D2132;
}

.blog-img {
  position: relative;
}
.blog-img .post-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  padding: 4px 8px;
  border-radius: 7px;
  z-index: 2;
  font-size: 14px;
  color: #0D2132;
}

.post-title {
  font-size: 20px;
  font-weight: bold;
  color: #0D2132;
  margin-top: 32px;
  margin-bottom: 16px;
}

.post-text {
  font-size: 18px;
  line-height: 1.9;
  color: #0D2132;
}

footer {
  position: relative;
  background: #0D2132;
  padding-top: 32px;
  margin-top: 100px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  footer {
    margin-top: 50px;
  }
}
footer .footer-about {
  margin-top: 32px;
}
footer .footer-about img {
  max-height: 62px;
  margin-bottom: 20px;
}
footer .footer-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1rem;
}
footer .footer-menu {
  margin-top: 32px;
}
@media only screen and (max-width: 600px) {
  footer .footer-menu {
    gap: 20px !important;
  }
}
footer .footer-menu ul {
  line-height: 2;
}
footer .footer-menu a {
  font-size: 16px;
  color: white;
  transition: 0.3s;
}
@media only screen and (max-width: 600px) {
  footer .footer-menu a {
    font-size: 14px;
  }
}
footer .footer-menu a:hover {
  color: #F8A91A;
}
footer .footer-info {
  margin-top: 25px;
  font-size: 16px;
  color: white;
}
@media only screen and (max-width: 600px) {
  footer .footer-info {
    font-size: 14px;
  }
}
footer .footer-info i {
  width: 23px;
  height: 23px;
  border-radius: 5px;
  background-color: #F8A91A;
  color: #0D2132;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
}
footer .footer-info a {
  color: white;
  transition: 0.3s;
}
footer .footer-info a:hover {
  color: #F8A91A;
}
footer .footer-info ul {
  line-height: 2.5;
}
footer .social-icons {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  justify-content: end;
}
@media only screen and (max-width: 600px) {
  footer .social-icons {
    justify-content: center;
    margin-top: 30px;
  }
}
footer .social-icons i {
  font-size: 25px;
  color: #0D2132;
  transition: 0.3s;
}
footer .social-icons a:hover i {
  color: white;
}

.copyrights {
  padding-block: 15px;
  color: white;
  margin-top: 40px;
  border-top: 1px solid #F8A91A;
}
.copyrights a {
  color: #F8A91A;
  transition: 0.3s;
}
.copyrights a:hover {
  color: white;
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 18;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.floating-icons .up-btn {
  background-color: #F8A91A;
  filter: drop-shadow(0px 3px 6px rgba(239, 62, 104, 0.47));
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}
.floating-icons .up-btn.show {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.floating-icons .up-btn:hover {
  background-color: white;
  color: #0D2132;
}
.floating-icons .whatsapp-icon {
  background-color: #2AA81A;
  color: white;
  padding: 10px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 2s infinite;
}
.floating-icons .whatsapp-icon:hover {
  background-color: #F8A91A;
  color: white;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 168, 26, 0.93);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(225, 78, 29, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 78, 29, 0);
  }
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.pagination .page-link,
.pagination .page-numbers {
  color: #0D2132;
  background-color: #F9F6F0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
  display: flex;
  font-size: 18px;
  box-shadow: none !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.pagination .page-link:hover, .pagination .page-link.active, .pagination .page-link.current,
.pagination .page-numbers:hover,
.pagination .page-numbers.active,
.pagination .page-numbers.current {
  background-color: #F8A91A;
  color: white;
}

.contact-page-wrapper {
  border: 1px solid #0d2132;
  border-radius: 5px;
  overflow: hidden;
}

.contact-form {
  background: #F2F2F2;
  padding: 20px;
}
@media only screen and (min-width: 991px) {
  .contact-form {
    padding-inline-end: 90px;
  }
}
.contact-form label {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0D2132;
  font-weight: bold;
}
.contact-form .form-control {
  border-radius: 5px;
  background: rgba(13, 33, 50, 0.24);
  border: 1px solid #0d2132;
  color: #0D2132;
  font-size: 16px;
  margin-bottom: 16px;
  padding: 5px 10px;
  transition: 0.3s;
  direction: rtl;
}
.contact-form .form-control:focus {
  border-color: #F8A91A;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.contact-form-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-info {
  padding: 20px;
  color: #fff;
  height: 100%;
}
.contact-info .about-text {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

.contact-info-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #F8A91A;
  padding-top: 40px;
}
.contact-info-content .contact-info-item:last-child {
  flex-grow: 1;
  flex-basis: 100%;
}
.contact-info-content .contact-info-item i {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: #F8A91A;
  color: #0D2132;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}
.contact-info-content .contact-info-item p {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}
.contact-info-content .contact-info-item a {
  font-size: 18px;
  color: white;
  font-weight: 400;
  transition: 0.3s;
}
.contact-info-content .contact-info-item a:hover {
  color: #F8A91A;
}

.book-page-wrapper {
  background: url("../images/book-bg.jpg") no-repeat;
  padding-block: 50px;
  background-size: 100% auto;
}
@media only screen and (max-width: 600px) {
  .book-page-wrapper {
    background-size: cover;
  }
}

.book-form {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 50px 20%;
}
@media only screen and (max-width: 600px) {
  .book-form {
    padding: 50px;
  }
}
.book-form label {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}
.book-form .form-control {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(13, 33, 50, 0.6117647059);
  border-radius: 5px;
  color: #0D2132;
  padding: 10px;
  transition: 0.3s;
  direction: rtl;
  margin-bottom: 16px;
}
.book-form .form-control:focus {
  border-color: #F8A91A;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.single-service-page-wrapper .service-title-wrapper {
  border-radius: 5px;
  background: #f2f2f2;
  box-shadow: 0px 3px 6px rgba(13, 33, 50, 0.64);
  text-align: center;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.single-service-page-wrapper .service-title-wrapper h1 {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .single-service-page-wrapper .service-title-wrapper h1 {
    font-size: 20px;
  }
}
.single-service-page-wrapper .service-title-wrapper .service-card-img {
  width: 60px;
  height: 60px;
  background: white;
  padding: 7px;
  border: 1px solid #0d2132;
}
.single-service-page-wrapper .description {
  font-size: 18px;
  line-height: 2;
  color: #0D2132;
  margin-top: 24px;
}
@media only screen and (max-width: 600px) {
  .single-service-page-wrapper .description {
    font-size: 16px;
  }
}
.single-service-page-wrapper .description .h1,
.single-service-page-wrapper .description .h2,
.single-service-page-wrapper .description .h3,
.single-service-page-wrapper .description .h4,
.single-service-page-wrapper .description .h5,
.single-service-page-wrapper .description .h6,
.single-service-page-wrapper .description h1,
.single-service-page-wrapper .description h2,
.single-service-page-wrapper .description h3,
.single-service-page-wrapper .description h4,
.single-service-page-wrapper .description h5,
.single-service-page-wrapper .description h6 {
  color: #0D2132;
}

.single-service-form {
  border: 1px solid #0D2132;
  border-radius: 5px;
  padding: 50px !important;
}

@media (min-width: 1200px) {
  .h2,
  h2 {
    font-size: 1.5rem;
  }
}
html[dir=rtl] .wpcf7 input[type=url],
html[dir=rtl] .wpcf7 input[type=email],
html[dir=rtl] .wpcf7 input[type=tel] {
  direction: rtl;
}

.button-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  inset-inline-end: -20px;
  margin: 0;
  transform: translateY(-50%);
}

.wpcf7-form.submitting .wpcf7-submit {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.8;
}/*# sourceMappingURL=main.css.map */


#search-results {
    list-style: none;
    background: #fff;
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    top: calc(100% - 9px);
    left: 0;
    right: 0;
    &.open {
        padding: 20px;
    }

    li {
        margin-bottom: 15px;

        a {
            display: flex;
            align-items: center;
            gap: 15px;
			transition:0.3s;
            font-size: 16px;
color:#0D2132;
            img {
                width: 50px;
                height: 50px;
                object-fit: cover;
                border-radius: 5px;
                flex-grow: 0;
                flex-shrink: 1;
            }
			&:hover{
				color:#F8A91A;
			}
        }
    }

}