*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  font-style: normal;
  font-size: var(--clamp16);
  font-weight: normal;
  color: #fff;
  background-color: #000318;
  /* line-height: 1.8; */
}

.hero_area {
  height: 100%;
  width: 100%;
  position: relative;
  /* Gradient + Blur overlay */
}
.hero_area .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero_area .video-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero_area .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  /* Blur effect */
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 3, 24)), color-stop(60%, rgba(255, 255, 255, 0)), color-stop(59%, rgba(255, 255, 255, 0)), to(rgb(0, 3, 24)));
  background: linear-gradient(0deg, rgb(0, 3, 24) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 59%, rgb(0, 3, 24) 100%);
  /* Gradient */
  z-index: -1;
}
.hero_area .slider_txt {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  padding-bottom: 15%;
}
.hero_area .slider_txt h1 {
  font-size: var(--clamp100);
  color: #fff;
  text-align: center;
}
.hero_area .slider_txt h1 span {
  font-weight: 800;
}
.hero_area .slider_txt h6 {
  font-size: var(--clamp24);
  color: hsla(0deg, 0%, 100%, 0.8);
  text-align: center;
  margin-top: 100px;
  font-weight: 400;
}
.hero_area .slider_btn {
  background-color: rgba(255, 255, 255, 0.09);
  border: solid 1px rgba(255, 255, 255, 0.36);
  border-radius: 100px;
  font-size: var(--clamp18);
  color: rgba(255, 255, 255, 0.57);
  text-align: center;
  padding: 9px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}

.hamburger {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bar {
  width: 20px;
  height: 2px;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.bar:first-child {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
  width: 15px;
}

.bar:last-child {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  width: 15px;
}

.hamburger.active .bar:first-child {
  width: 20px;
  -webkit-transform: translateY(0) rotate(-315deg);
          transform: translateY(0) rotate(-315deg);
}

.hamburger.active .bar:nth-child(2) {
  -webkit-transform: translateX(66px);
          transform: translateX(66px);
}

.hamburger.active .bar:last-child {
  width: 20px;
  -webkit-transform: translateY(0) rotate(315deg);
          transform: translateY(0) rotate(315deg);
}

nav {
  position: relative;
  top: 30px;
  width: 100%;
  height: 50px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  z-index: 99;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
nav > a {
  color: red;
  text-decoration: none;
}

.stickyHeader nav {
  top: 10px;
}

.nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  width: 200px;
}
@media (max-width: 576px) {
  .logo img {
    width: 150px;
  }
}
@media (max-width: 476px) {
  .logo img {
    width: 100px;
  }
}

.nav-link a {
  color: hsla(0deg, 0%, 100%, 0.67);
  position: relative;
  text-decoration: none;
  margin: 0 25px;
  padding: 2px;
  font-size: var(--clamp18);
  font-weight: 500;
}
.nav-link a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0%;
  height: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #ffffff;
}
.nav-link a:hover {
  color: #fff;
}
.nav-link a.active {
  color: #fff;
}

@media screen and (min-width: 992px) {
  .nav-link a:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: block;
  }
  .nav-link {
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50px;
    left: 0;
    width: 100%;
    height: 0px;
    background: #b6d4f1;
    z-index: 100;
    -webkit-box-shadow: 0 5px 5px rgb(0, 0, 0);
            box-shadow: 0 5px 5px rgb(0, 0, 0);
    overflow: hidden;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 30px;
  }
  .nav-link a {
    color: #1e4b85;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    margin: 0 0 0 10px;
  }
  .nav-link a:last-child {
    margin-bottom: 10px;
  }
  .nav-link a:hover {
    background: #6f8fad;
  }
}
header {
  position: relative;
  right: 0;
  left: 0;
  height: 93px;
  background: #000318;
  z-index: 3;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header.stickyHeader {
  position: fixed;
  right: 0;
  left: 0;
  height: 70px;
}
header .top_contact_btn {
  background-color: rgba(255, 255, 255, 0.17);
  border: solid 1px rgba(255, 255, 255, 0.36);
  border-radius: 100px;
  font-size: var(--clamp18);
  color: #fff;
  text-align: center;
  padding: 9px 35px;
  cursor: pointer;
}
@media (max-width: 991px) {
  header .top_contact_btn {
    position: absolute;
    right: 90px;
  }
}
@media (max-width: 476px) {
  header .top_contact_btn {
    padding: 5px 14px;
    right: 70px;
  }
}

.about_area {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .about_area {
    padding: 50px 0;
  }
}
.about_area .item_box {
  background-color: #14172A;
  border: solid 1px #414352;
  border-radius: 30px;
  padding: 35px;
  text-align: center;
  margin: 0 10px;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about_area .item_box h2 {
  font-size: var(--clamp32);
  font-weight: 500;
  color: #fff;
}
.about_area .item_box img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about_area .item_box p {
  font-size: var(--clamp18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
}
.about_area .item_box:hover {
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
}
.about_area .item_box:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.services_area {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .services_area {
    padding: 50px 0;
  }
}
.services_area h1 {
  font-size: clamp(1.75rem, 1.125rem + 3.125vw, 4.875rem);
  font-weight: 500;
  color: #fff;
}
.services_area p {
  font-size: var(--clamp18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.63);
}
.services_area .service_item {
  position: relative;
}
.services_area .service_item .service_icon_wrp {
  background-color: #14172A;
  border: solid 1px #414352;
  border-radius: 30px;
  padding: 15px;
  text-align: center;
  margin: 0 5px;
  height: 100%;
}
.services_area .service_item .service_icon_wrp img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.services_area .service_item h3 {
  font-weight: 500;
  color: #fff;
  font-size: var(--clamp24);
  text-align: center;
}
.services_area .service_item p {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
  font-size: var(--clamp18);
  text-align: center;
}
.services_area .service_item:hover .service_icon_wrp img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.client_area {
  position: relative;
  padding: 80px 0;
}
.client_area .marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.client_area .marquee {
  display: inline-block;
  padding-left: 100%;
  -webkit-animation: scroll-left 20s linear infinite;
          animation: scroll-left 20s linear infinite;
}
.client_area .marquee img {
  opacity: 0.3;
  margin: 0 120px;
}
.client_area .marquee:hover img {
  opacity: 1;
}
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.facts {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .facts {
    padding: 50px 0;
  }
}
.facts .highlight-text {
  font-size: clamp(1.75rem, 1.125rem + 3.125vw, 4.875rem);
  font-weight: 500;
  color: #fff;
}
.facts .subheading {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  font-weight: 500;
  color: #fff;
}
.facts p {
  font-size: var(--clamp18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
}
.facts .image-box img {
  border-radius: 1rem;
  max-width: 100%;
}
.facts .stat-number {
  font-size: clamp(1.375rem, 1.175rem + 1vw, 2.375rem);
  font-weight: 500;
  color: #fff;
}
.facts .stat-text {
  font-size: var(--clamp18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
}

.testimonial_wrp {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .testimonial_wrp {
    padding: 50px 0;
  }
}
.testimonial_wrp h1 {
  font-size: clamp(1.75rem, 1.125rem + 3.125vw, 4.875rem);
  font-weight: 500;
  color: #fff;
}
.testimonial_wrp .testimonial-card {
  background-color: #0E1023;
  border: solid 1px #26283A;
  border-radius: 20px;
  padding: 55px 40px;
  text-align: center;
  position: relative;
  height: 100%;
  margin: 0 10px;
}
.testimonial_wrp .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 58px;
}
.testimonial_wrp .testimonial-card h5 {
  font-size: var(--clamp24);
  color: #fff;
  font-weight: 500;
}
.testimonial_wrp .testimonial-card .subTitle {
  font-size: var(--clamp18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
}
.testimonial_wrp .testimonial-text {
  font-size: var(--clamp18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
}
.testimonial_wrp .stars {
  color: #ffd700;
  font-size: 1.2rem;
}
.testimonial_wrp .comment-icon img {
  width: 25px;
  height: 25px;
  margin-bottom: 0;
}
.testimonial_wrp .swiper {
  padding: 40px 70px;
}
@media (max-width: 991px) {
  .testimonial_wrp .swiper {
    padding: 40px 60px;
  }
}
@media (max-width: 767px) {
  .testimonial_wrp .swiper {
    padding: 40px 50px 80px;
  }
}
@media (max-width: 576px) {
  .testimonial_wrp .swiper {
    padding: 40px 0px 80px;
  }
}
@media (max-width: 476px) {
  .testimonial_wrp .swiper {
    padding: 40px 0px 80px;
  }
}
.testimonial_wrp .swiper-slide {
  height: 100%;
}
.testimonial_wrp .swiper-button-next,
.testimonial_wrp .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.123);
}
@media (max-width: 767px) {
  .testimonial_wrp .swiper-button-next,
.testimonial_wrp .swiper-button-prev {
    top: inherit;
    bottom: 0;
  }
  .testimonial_wrp .swiper-button-next {
    left: 50%;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  .testimonial_wrp .swiper-button-prev {
    left: 50%;
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
  }
}
.testimonial_wrp .swiper-button-next:after,
.testimonial_wrp .swiper-button-prev:after {
  font-size: 18px !important;
  color: #fff !important;
}
.testimonial_wrp .swiper-button-disabled {
  display: none;
}
@media (max-width: 767px) {
  .testimonial_wrp .swiper-button-disabled {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.faqs_area {
  position: relative;
  padding: 50px 0 100px;
}
.faqs_area h1 {
  font-size: clamp(1.75rem, 1.125rem + 3.125vw, 4.875rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 100px;
}
.faqs_area .accordion-button {
  background-color: #0D1024 !important;
  border-radius: 30px !important;
  color: #fff !important;
  font-size: var(--clamp24);
  padding: 25px;
}
.faqs_area .accordion-item {
  background-color: #0D1024 !important;
  border: solid 1px #25283A !important;
  border-radius: 30px !important;
  margin-bottom: 20px !important;
  overflow: hidden;
}
.faqs_area .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.faqs_area .accordion-body {
  font-size: var(--clamp18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
  padding: 25px;
  padding-top: 10px;
}
.faqs_area .accordion-button:not(.collapsed)::after,
.faqs_area .accordion-button::after {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7475%) hue-rotate(66deg) brightness(108%) contrast(98%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7475%) hue-rotate(66deg) brightness(108%) contrast(98%);
}

footer.footer {
  padding: 60px 0 30px;
  background-color: #000318;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer.footer .footer-logo {
  font-family: monospace;
  font-size: 32px;
  font-weight: bold;
  color: #66d9ef;
}
footer.footer h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
footer.footer p {
  font-size: var(--clamp16);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.51);
}
footer.footer .footer_links a {
  color: rgba(255, 255, 255, 0.51);
  text-decoration: none;
  display: block !important;
  margin-bottom: 10px;
}
footer.footer .footer_links a:hover {
  color: #fff;
}
footer .social-icons a {
  background-color: #1b1f38;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
footer .social-icons a:hover {
  background-color: #66d9ef;
  color: #000;
}
footer .social-icons a .footer-copy {
  margin-top: 40px;
  font-size: var(--clamp16);
  color: rgba(255, 255, 255, 0.51);
}
footer .footer-input-group {
  max-width: 400px;
}
footer .footer-input-group .form-control.custom_control {
  border-radius: 100px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 0 !important;
}
footer .footer-input-group input::-webkit-input-placeholder {
  color: rgb(121, 121, 121) !important;
}
footer .footer-input-group input::-moz-placeholder {
  color: rgb(121, 121, 121) !important;
}
footer .footer-input-group input:-ms-input-placeholder {
  color: rgb(121, 121, 121) !important;
}
footer .footer-input-group input::-ms-input-placeholder {
  color: rgb(121, 121, 121) !important;
}
footer .footer-input-group input::placeholder {
  color: rgb(121, 121, 121) !important;
}
footer .footer-input-group input:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
footer .f_btn {
  border: solid 1px rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.51) !important;
}
footer .f_btn:hover {
  border-color: #fff !important;
  color: #fff !important;
}

#contactForm .modal-content {
  border-radius: 30px !important;
  background-color: rgba(0, 0, 0, 0.7);
  border: solid 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0 20px;
}
#contactForm .modal-content p {
  font-size: var(--clamp16);
  color: rgba(255, 255, 255, 0.75);
}
#contactForm .modal-content .modal_btn {
  background: rgba(255, 255, 255, 0.05);
  padding: 11px 0px;
  width: 100%;
  color: #898989;
  border: solid 1px #5e5e5e;
}
#contactForm .modal-content .modal_btn:hover {
  border-color: #fff;
  color: #fff;
}
#contactForm .modal-content .btn-close {
  -webkit-filter: brightness(0) saturate(100%) invert(88%) sepia(100%) saturate(0%) hue-rotate(259deg) brightness(106%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(88%) sepia(100%) saturate(0%) hue-rotate(259deg) brightness(106%) contrast(101%);
}
#contactForm .modal-body .form-control {
  border-radius: 40px !important;
  height: 50px;
  background: rgb(30, 38, 46);
  border: 0;
  color: #fff !important;
}
#contactForm .modal-body .form-control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
#contactForm .modal-body .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.295) !important;
}
#contactForm .modal-body .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.295) !important;
}
#contactForm .modal-body .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.295) !important;
}
#contactForm .modal-body .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.295) !important;
}
#contactForm .modal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.295) !important;
}