.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #f5f5f5;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.animated-menu {
  width: 28px;
  height: 21px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.animated-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: #111;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
}

/* When open */
.animated-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.animated-menu.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.animated-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.lang-btn {
  background-color: white;
  color: var(--bs-gray-dark);
  border: 1px solid var(--bs-gray-dark);
  border-radius: 15px;
  font-weight: 500;
  padding: 3px 12px;
  font-size: 0.8rem;
  transition: all 0.5s ease;
}

.lang-btn:hover {
  background-color: #101d4175;
  color: white;
}

.lang-btn.active {
  background-color: #101d41c2;
  color: white;
  /* box-shadow: 0 0 0 1px rgb(0 0 0); */
}

footer {
  background-color: #6a6e71;
  color: white;
  padding: 1px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #ef1d1c 0%, #f55648 100%);
  overflow: hidden;
  color: white;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

#networkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.85;
  /* filter: blur(0.5px) brightness(1.1); */
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 6rem 2rem 0 2rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* horizontally center */
  align-items: center;
  /* vertically center */
  text-align: center;
  /* center text inside */
  color: white;
  background: linear-gradient(135deg, #ef1d1c 0%, #f55648 100%);
}


.hero-content {
  margin-bottom: 17rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  /* margin-bottom: 0.5rem; */
}

.btn-group {
  display: inline-flex;
  gap: 1rem;
  margin-bottom: 10rem;
  /* space before curve */
}

.btn-primary {
  background: linear-gradient(90deg, #ffffffd2, #ffffffb6);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 50px;
  color: #000000b2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ffff, #ffff);
}

.btn-outline-light {
  color: #ffff;
  border: 2px solid #ffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline-light:hover {
  background-color: #ffff;
  color: #fff;
}

/* Container for the phone image overlapping the curve */
.phone-image-container {
  position: relative;
  width: 320px;
  max-width: 90vw;
  margin: 0 auto;
  margin-top: -12rem;
  /* Pull up to overlap curve */
  z-index: 10;
}

.phone-image-container img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 12px 48px #00e6d044, 0 2px 8px #0008;
  background: #fff;
  display: block;
}

/* The SVG bottom curve */
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  /* enough height for curve */
  pointer-events: none;
  z-index: 1;
}


/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .phone-image-container {
    width: 220px;
    margin-top: -8rem;
  }
}

.hero-image-container {
  position: absolute;
  left: 50%;
  bottom: -75px;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 1000px;
  width: 65vw;
  max-height: 650px;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

/* SVG curve styling */
svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  display: block;
  z-index: 5;
}

.curve-fill1 {
  fill: rgba(235, 19, 19, 0);
}

.curve-fill2 {
  fill: white;
}

/* .sign-up-block {
  padding: 150px;
} */

.link-primary {
  color: #101d41bf !important;
}

.link-primary:focus,
.link-primary:hover {
  color: #101d41d4 !important;
}

.img_size {
  max-width: 65%;
  height: auto;
}

.bi-check-circle-fill::before {
  content: "\f26a";
  color: #f02523;
}

li {
  margin-bottom: 1rem;
}

.bg-secondary {
  background-color: #f02825 !important;
}

.bg-danger {
  background-color: #ee262a !important;
}

ul li i.bi {
  font-size: 1.2rem;
  flex-shrink: 0;
}

ul li div {
  line-height: 1.6;
}

.sec-bg-1 {
  position: absolute;
  right: 0;
}

.hero-image-container img {
  max-width: 55% !important;
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  left: 3px;
  position: absolute;
  /* top: -293px; */
  bottom: 41px;
  right: 46px;
  left: 225px;
}

@media (max-width: 1024px) {
  .hero-image-container img {
    max-width: 80% !important;
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    position: absolute !important;
    left: 36px;
    right: auto;
    bottom: 62px !important;
  }
}

@media (max-width: 600px) {
  .hero-image-container img {
    max-width: 100% !important;
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    position: absolute;
    left: auto;
    right: auto;
    bottom: 226px !important;
  }
}

@media (max-width: 600px) {
  .features-block {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
}
.hero p{
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
h1,h2 {
  font-size: 2.5rem !important;
}

p {
  font-size: 1.2rem !important;
  line-height: 1.6;
}
.h5, h5 {
    font-size: 1.1rem;
}
.fa-solid, .fas {
    color: #d71017c7 !important;
    font-weight: 900;
}
.text-secondary {
    color: #101d41 !important;
}
.why-us-block .fa-solid,
 .why-us-block .fas {
    color: #FFF !important;
    font-weight: 900;
}
.img-fluid {
    max-width: 65% !important;
    max-width: 100%;
    height: auto;
}
.bg_secondary {
    background-color: #000000 !important;
    border: 1px solid #d4d9e3 !important;
    color: #FFF;
}
.text-primary {
    color: #02bcdd !important;
}