@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: var(--f1);
}

a {
  text-decoration: none;
  display: inline-block;
}

span {
  display: inline-block;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  font-size: 16px;
  margin: inherit;
  font-weight: 400;
  color: #000000de;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

.cust-gap {
  row-gap: 24px;
}

:root {
  --c1: #000000;
  --c2: #ffffff;
  --gradient: linear-gradient(315.16deg, #0f7fa9 19%, #096385 86.85%);
  --c3: #096385;
  --c4: #269fcd;
  --f1: "Open Sans", sans-serif;
}

.wrapper {
  overflow: hidden !important;
}

.spacing {
  padding: 100px 0px;
}

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c4);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.custom-loader::before {
  border-color: var(--c2) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}

#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

.header {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 99999;
}

.header-logo {
  width: 100%;
}

.header-contact ul li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navigation ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navigation ul li i {
  font-size: 20px;
  color: var(--c2);
  transition: all 0.5s;
  position: relative;
  margin-right: 3px;
}

.navigation ul li a {
  font-size: 17px;
  color: var(--c2);
  font-weight: 500;
  transition: all 0.5s;
  position: relative;
}

.navigation {
  padding-left: 20px;
}

.navigation ul li a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  background-color: var(--c2);
  width: 0%;
  height: 2px;
  border-radius: 50px;
  transition: all 0.5s;
  left: 50%;
  transform: translateX(-50%);
}

.navigation ul li a:hover::before {
  width: 100%;
}

.hero {
  position: relative;
  height: 1100px;
  background: var(--gradient);
  z-index: 1;
}

section.hero:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: #fff;
  content: "";
  z-index: 999;
}

.hero-rectangle-one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
}

.hero-rectangle-two {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.5s;
}

.hero-rectangle-three {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: all 0.5s;
  z-index: 2;
}

.banner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .row {
  margin-top: -130px;
}

.banner-title h2 {
  font-size: 56px;
  font-weight: 400;
  color: var(--c2);
  line-height: 1.2;
}

.banner-title h2 span {
  font-weight: 700;
}

.banner-content p {
  color: var(--c2);
  margin: 20px 0;
  font-size: 16px;
  font-weight: 400;
  width: 90%;
}

.banner-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.banner-buttons .download-btn {
  width: 200px;
}

.banner-image img {
  width: 65%;
  margin: 0 auto;
}

.pulse-wrapper {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  display: flex;
  /* enable flex */
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  z-index: -1;
  transform: translate(-50%, -50%);
}

.pulse-wrapper span {
  position: absolute;
  /* can also use relative here */
  border-radius: 50%;
  background: #76b7cf;
  width: 100%;
  height: 100%;
  animation: smooth-ripple 2.5s infinite cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smaller nested pulse */
.pulse-wrapper span:nth-child(2) {
  background: #add4e3;
  width: 90%;
  height: 90%;
  animation-delay: 0.8s;
}

.pulse-wrapper span:nth-child(3) {
  background: #cee6ef;
  width: 70%;
  height: 70%;
  animation-delay: 1.6s;
}

@keyframes smooth-ripple {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.banner-image {
  position: relative;
  z-index: 1;
}

.stat h2 {
  font-weight: 700;
  font-size: 34px;
  color: var(--c3);
  line-height: 1;
  text-align: center;
}

.stat-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.stat-content i {
  transform: scaleX(-1);
  font-size: 20px;
  color: #0000008a;
}

.stat-content h4 {
  font-size: 25px;
  color: #0000008a;
  font-weight: 400;
}

.stat {
  border-right: 2px solid #e1bee7;
  padding-right: 30px;
}

.stats .container .row .col-lg-4:nth-child(3) .stat {
  border-right: none;
  padding-right: 0;
}

.stats .container .row .col-lg-4:nth-child(2) .stat .stat-content {
  justify-content: center;
  gap: 10px;
}

.stats .container .row .col-lg-4:nth-child(1) .stat .stat-content {
  justify-content: start;
}

.mission-img {
  position: relative;
  z-index: 1;
}

.mission-img img {
  width: 40%;
  margin: 0 auto;
}

.mission-img-side {
  position: absolute;
  top: 3%;
  left: 10%;
  width: 80%;
  animation: smoothFloat 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes smoothFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.mission-img-side img {
  width: 100%;
}

.mission-img::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -500px;
  width: 800px;
  border-radius: 50%;
  height: 800px;
  background: var(--gradient);
  z-index: -1;
  transform: translateY(-50%);
}

.mission-content {
  width: 75%;
}

.mission-content p {
  font-size: 20px;
  margin: 50px 0 20px;
}

.web-title h2 {
  font-weight: 600;
  font-size: 65px;
  color: var(--c1);
  text-transform: capitalize;
  position: relative;
}

.web-title h2 span {
  color: #0000008a;
}

.web-title h2::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 110px;
  height: 20px;
  background-color: var(--c3);
  border-radius: 50px;
}

.web-btn a {
  text-transform: uppercase;
  background-color: var(--c3);
  color: var(--c2);
  padding: 15px 60px;
  border-radius: 50px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.web-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--gradient);
  z-index: -1;
  transition: all 0.5s;
  transform: rotate(180deg);
}

.web-btn a:hover::before {
  width: 100%;
}

.web-title.underline-end h2::before {
  left: unset;
  right: 0;
}

.value-images {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: start;
}

.value-img.image-two {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
}

.value-img.image-one {
  margin-bottom: 150px;
  width: 100%;
}

.value-box {
  background: var(--gradient);
  padding: 20px 30px;
  border-radius: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.value-box p {
  font-size: 20px;
  color: var(--c2);
}

.rectangle-bg {
  position: relative;
  z-index: 1;
}

.rectangle-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.web-title.underline-center h2::before {
  left: 50%;
  transform: translateX(-50%);
}

section {
  position: relative;
  z-index: 1;
}

.app-planner-title p {
  margin-top: 50px;
  font-size: 20px;
  width: 77%;
  margin-left: auto;
  margin-right: auto;
}

.mobile-png {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 310px;
  z-index: 1;
  box-shadow: 0px 0px 40px -15px;
  border-radius: 50px;
}

.app-planner-sldier-main {
  position: relative;
}

/* smooth card feel */
.app-feature {
  text-align: center;
  overflow: hidden;
  border: 2px solid #0000001a;
  border-radius: 20px;
  transform: scale(0.9);
}

.app-feature img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s;
}

.app-cust-slider .slick-slide {
  transition: all 0.5s;
}

.custom-nav svg {
  display: none;
}

.custom-nav {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--c3);
  font-size: 25px;
  color: var(--c3);
  transition: all 0.5s;
}

.app-cust-slider .app-slide-item.slick-center .app-feature {
  transform: scale(1.1);
  transition: all 0.5s;
}

.app-cust-slider .slick-list.draggable {
  padding: 100px 0px 30px 0px !important;
}

.custom-nav:hover {
  background: var(--c3);
  color: var(--c2);
}

.app-cust-slider button.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 0;
  background-color: var(--c3);
  color: var(--c2);
  font-size: 22px;
  z-index: 99;
}

.app-cust-slider button.slick-arrow.slick-next {
  right: -50px;
}

.app-cust-slider button.slick-arrow.slick-prev {
  left: -50px;
}

.app-planner-rectangle {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.testimonial-rectangle {
  position: absolute;
  z-index: -1;
  top: 30px;
  left: 0px;
  width: 60%;
}

.testmonial {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 70px;
  align-items: center;
}

.client-details {
  width: 15%;
  text-align: center;
  color: var(--c2);
}

.testimonial-content {
  width: 70%;
}

.client-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.client-details h4 {
  margin: 20px 0px 5px;
  font-size: 20px;
}

.testimonial-content img {
  width: 90px;
  margin-bottom: 50px;
}

.testimonial-content p {
  color: var(--c2);
  font-size: 20px;
  font-weight: 300;
}

.testimonial-image {
  width: 60%;
  margin-left: auto;
}

.faqs-title img {
  width: 80%;
}

section.faqs {
  padding-top: 260px;
}

.mob-head-text {
  position: absolute;
  top: 50%;
  transform: translateY(-62%);
  color: var(--c2);
  font-size: 16px;
  font-weight: 600;
  left: 80px;
}

h2.accordion-header button {
  border: 0;
  padding: 30px 20px;
  border-radius: 0px;
  background-color: var(--c3) !important;
  color: var(--c2) !important;
  font-size: 20px;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  font-weight: 600;
}

.accordion-item {
  border: 0;
  background-color: unset;
}

.accordion-button:focus {
  border: 0;
  box-shadow: unset;
  background-color: var(--c3) !important;
  color: unset;
}

.accordion-button:focus-visible {
  border: 0;
  box-shadow: unset;
  background-color: var(--c3) !important;
  color: unset;
}

button.accordion-button.collapsed {
  background: unset;
}

.accordion-header button.collapsed {
  background-color: unset !important;
}

h2.accordion-header button::after {
  color: var(--c2) !important;
  filter: brightness(1000);
}

button.accordion-button.collapsed::after {
  filter: unset;
}

button.accordion-button.collapsed {
  color: var(--c1) !important;
  font-weight: 600;
}

footer.footer {
  position: relative;
  z-index: 1;
  height: 900px;
  padding: 200px 0 100px 0;
}

.footer-title {
  font-size: 39px;
  font-weight: 700;
  color: var(--c2);
  line-height: 1.2;
}

.footer-rectangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer-rectangle img {
  height: 100%;
}

footer.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 200px;
  flex-direction: column;
}

.footer-logo.header-logo.text-center {
  margin-top: 60px;
}

.footer-logo {
  width: 180px;
  margin: 0 auto;
}

footer.footer .container .row {
  width: 100%;
}

.copyright p {
  color: var(--c2);
  font-size: 18px;
}

.footer-socials ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-socials ul li a {
  font-size: 16px;
  color: var(--c2);
  background-color: var(--c3);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s;
}

.copyright p a {
  color: var(--c2);
  text-decoration: underline !important;
}

.footer-socials ul li a:hover {
  background-color: var(--c1);
}


/* RESPONSIVE MENU CSS */



.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
  z-index: 99999999;
  transition: all .5s;
}

.respon-logo {
  width: 110px;
}

.responsive-menu-inner {
  height: 100%;
  padding: 16px;
  position: relative;
  width: 90%;
  background-color: var(--c3);
  left: -100%;
}

.responsive-logo-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.respon-cross a,
.respon-cross a i {
  display: block;
}

.respon-cross a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--c2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--c2);
  transition: all .5s;
}

.respon-cross a:hover {
  transform: rotate(90deg);
  color: var(--c1);
  border-color: var(--c1);
}

.respon-logo a {
  display: block;
}



.responsive-links ul li a {
  color: var(--c2);
  transition: all .5s;
  font-size: 20px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #ffffff80;
  padding: 10px 0px;
}

.responsive-links {
  margin-top: 50px;
  overflow-y: auto;
  height: calc(100vh - 232px);
}

.responsive-links ul li ul {
  display: none;
}

.responsive-links ul li a:hover {
  color: var(--c1);
}

.responsive-links ul li ul li a {
  padding-left: 40px;
  font-size: 22px;
}

.responsive-links ul li:has(ul)::before {
  position: absolute;
  content: "\f067";
  top: 16px;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 22px;
  color: var(--c2);
}

.responsive-links ul li {
  position: relative;
}

.responsive-links ul li.active::before {
  content: "\f068";
  color: var(--c1);
}

.responsive-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c2);
  padding: 12px 0px;
}

.responsive-socials ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.responsive-socials ul li a {
  color: var(--c5);
  font-size: 20px;
}

.responsive-menu.active {
  left: 0;
}

.responsive-menu.active .responsive-menu-inner {
  left: 0;
  transition-delay: .3s !important;
  transition: all .7s;
}

body.stop-scroll {
  overflow-y: hidden;
}

.mobile-menu-toggle a {
  color: #fff;
  font-size: 20px;
}
.mobile-menu-toggle{
  text-align: right;
}