* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
  --primary-color: #0051A0;
  --secondary-color: #858034;
  --color-green: green;
  --form-max-width: 600px;
  --nav-height: 70px;
}
body {
  background: #fff;
  font-family: 'Inter', sans-serif;

}
/* custom scroll bar */
::-webkit-scrollbar {width: 0px !important;}
::-webkit-scrollbar-track {background: #242526;}
::-webkit-scrollbar-thumb {background: #3A3B3C;}

.animate-on-scroll {
  transition: all .8s ease;
  opacity: 0;
}
.animate-on-scroll.active {opacity: 1}

.fade-on-scroll {
  transform: translateY(40px);
}
.fade-on-scroll.active {
  transform: translateY(0);
}
.fade-right-on-scroll {
  transform: translateX(40px);
}
.fade-right-on-scroll.active {
  transform: translateX(0);
}
.fade-left-on-scroll {
  transform: translateX(-40px);
}
.fade-left-on-scroll.active {
  transform: translateX(0);
}

.zoom-on-scroll {
  transform: scale(0);
}
.zoom-on-scroll.active {
  transform: scale(1);
}

.page-load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 200000;
}
.page-load.active {
  display: flex
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}
.loader::before,
.loader::after {    
  content:"";
  grid-area: 1/1;
  --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
  background: 
    var(--c) 50%  0, 
    var(--c) 50%  100%, 
    var(--c) 100% 50%, 
    var(--c) 0    50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}
.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear
}
#loader-text {
  color: #fff;
}

@keyframes l12 { 
  100%{transform: rotate(.5turn)}
}


/* ======== Navigation Bar ================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 100px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: var(--nav-height);
  z-index: 50;
}
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-between;
}
a {
  
  text-decoration: none;
}
.nav .logo {
  font-size: 25px;
  font-weight: 700;
}
.nav .logo img {
  height: 30px;
  width: auto;
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 8px 20px;
}
.nav .nav-links a:hover, .nav .nav-links a.active {
  background: var(--primary-color);
  color: #fff;
}
.nav.openNav .nav-links a {
  color: #fff;
  pointer-events: none;
}
.nav.openNav .nav-links a:hover,
.nav.openNav .nav-links a.active {
  background: #eee;
  color: #000;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}
.nav .navOpenBtn {color:#000 !important}

/* responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
  }
  .nav {
    padding: 15px 20px;
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #11101d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
  }
  .nav.openNav .nav-links {
    left: 0;
  }
  .nav .navOpenBtn {
    color: #000;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
}
button {
  border: 1px solid var(--primary-color) !important;
  outline: none !important;
  cursor: pointer;
  padding: 10px 20px;
  width: fit-content;
  min-width: 120px;
  border-radius: 5px;
}
button.btn-dark {
  background: var(--primary-color) !important;
  color: #fff !important;
}
button.btn-light {
  background: #fff !important;
  color: var(--primary-color) !important;
}
.demo-btn {
  border: none !important;
  background: none !important;
  display: flex;
  align-items: center;
  padding: 10px;
  white-space: nowrap;
}
.demo-btn:hover {
  border: 1px solid var(--primary-color) !important;
}
.demo-btn i {
  font-size: 18px !important;
  width: 32px !important;
  height: 32px !important;
  color: var(--primary-color);
  background: rgba(0, 140, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  padding-top: 3px;
  padding-left: 3px;
  align-items: center;
  justify-content: center;
}

/* ======= Home Page =========== */
main {
  padding: 15px;
  padding-top: calc(15px + var(--nav-height));
  background: rgba(176, 201, 226, 0.1) url("/static/icons/Frame-48097889.svg") no-repeat fixed center;
  background-size: 100% 100%;
  position: relative;
}
.banner-area {
  background: #fff url('/static/icons/hero_background.svg') no-repeat fixed center;
  background-size: cover;
}
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  max-width: 700px;
  line-height: normal;
  padding: 80px 20px 20px 20px;
  text-align: center;
}

.banner-header {
  color: var(--primary-color);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.banner-text {
  margin-top: 20px;
  font-size: 1.3rem;
  line-height: 1.3;
  max-width: 80%;
  font-weight: 300;
}
.banner-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 15px;
}
.banner-image {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.banner-image img {
  width: 100%;
  height: auto;
}

.info-area {
  background: #F8FCFF;
  color: #fff;
  padding: 100px 60px;
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .info-area {
    padding: 50px 20px;
  }
}
.info-text {
  padding: 15px 10px;
  font-family: 'Inter', sans-serif;
  color: #000;
  max-width: 700px;
  margin: auto;
}
.info-text .h1 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.info-img {
  position: relative;
}
.info-text p {
  font-family: 'Inter', sans-serif;
  color: #000;
  margin-top: 20px;
  font-size: 18px;
}
.info-img .img-bg {
  width: 100%;
  height: auto;
}
.info-img .img-sm {
  position: absolute;
  left: 0;
  top: -20px;
  width: 50%;
  height: auto;
}

.feat-area {
  background: #fff;
  color: #000;
  padding: 50px 20px;
}
.feat-img {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feat-img img {
  width: 100%;
  height: auto;
  padding: 5px;
  height: auto;
  border-radius: 10px;
}
.feat-text {
  padding: 20px;
}

/* Style the buttons that are used to open and close the accordion panel */
.acc-con {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.acc-con.active, .acc-con:hover {
  background-color: rgba(234, 234, 243, 0.5);
}

.accordion {
  background-color: transparent;
  color: #444;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.4s;
  border: none !important;
}
.accordion span {
  padding-top: 10px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.accordion:after {
  content: '\276F'; /* Unicode character for "plus" sign (+) */
  transform: rotate(90deg);
  transition: all .3s ease;
  font-size: 8px;
  padding: 10px;
  background: #ddd;
  border-radius: 50%;
  color: #000;
  float: right;
  margin-left: 5px;
  display: flex;
  align-items: center;
}

.accordion.active:after {
  content: '\276F'; /* Unicode character for "minus" sign (-) */
  transform: rotate(-90deg);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding: 10px;
  width: 80%;
  color: gray;
  min-width: 200px;
}

.feature-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 97%;
  margin: auto;
  border: 1px solid rgba(168, 165, 165, 0.2);
  padding: 15px;
  height: 100%;
  border-radius: 10px;
}

.feature-item p {
  color: gray;
}

.accordion img, .feature-item img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  padding: 3px;
}
.std-acc-img {background: blue;}
.sta-acc-img {background: rgb(66, 2, 119);}
.fee-acc-img {background: green;}
.exa-acc-img {background: orange;}
.att-acc-img {background: purple;}
.lap-acc-img {background: rgb(235, 16, 235);}
.mob-acc-img {background: rgb(0, 124, 128);}
.ai-acc-img {background: rgb(248, 237, 206);}

.why-area {
  background: rgba(154, 220, 231, 0.1);
  color: #000;
  padding: 30px 20px;
}

.why-list {
    list-style-type: none;
    padding-left: 20px;
}
.why-list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
}
.why-ind {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border: none;
    margin: none;
}
.why-ind ~ span {
    font-size: 15px;
    color: #222;
    font-weight: lighter;
}

.why-item {
    padding: 20px;
    color: #fff;
    background: #003A72;
    width: fit-content;
    max-width: 70%;
    font-size: 18px;
    line-height: 1.3;
}
.why1, .why3 {float: left !important;}
.why2, .why4 {float: right !important;}

@media screen and (min-width: 992px) {
    .why1, .why2 {float: left !important;}
    .why3, .why4 {float: right !important;}
    .why-p {
      padding: 20px 100px 20px 10px !important;
    }
}

.demo-area {
  background: #fff;
  color: #000;
}
.demo-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: auto;
  gap: 5px;
  padding: 30px 20px;
}

#waitlist-form {
    width: 100%;
    margin-top: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 50px 40px;
}
#waitlist-form input {
    padding: 20px 10px !important;
}

footer {
  background: #002243;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 0;
}
footer img {
  max-width: 200px;
  height: auto;
}
.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.footer-social a {
  font-size: 25px !important;
  color: #fff;
}
footer > div {
  padding: 20px;
}
.copyright {
  margin-top: 70px;
}
.copyright .fa {
  font-size: 8px;
}
.footer-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  max-width: 300px;
  font-size: 13px;
  margin-bottom: 20px;
}
