@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: "Poppins", sans-serif;
}

header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand img {
  height: 28px;
}
header nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0px;
}
header nav ul li a {
  margin: 0px 14px;
  text-decoration: none;
  font-size: 18px;
  color: #777777;
  font-weight: 500;
}
header .brand {
  width: 30%;
}
header .navbar {
  width: 70%;
}
header .navbar ul {
  width: 70%;
}
header .header-btn {
  width: 30%;
}
.btn-request-demo {
    width: 180px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00448C;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: unset;
    font-weight: 500;
    font-size: 18px;
    margin: 0px 0px 0px auto;
}

/* Hamburger Style */
.hamburger {
  display: inline-block;
  cursor: pointer;
  border: none;
  background: none;
  padding: 10px;
  z-index: 1001;
  position: absolute;
  right: 10px;
  width: 48px;
}

.hamburger .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* Change to X icon when open */
.hamburger.open .icon-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open .icon-bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .icon-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
header {
  position: relative;
}
/* Hide navbar on small screens by default */
@media (max-width: 768px) {
  .navbar {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 10px 0;
  }
  .navbar.active {
    display: block;
    width: 100%;
  }
  .brand img {
    height: 16px;
  }
  header nav ul {
    display: block;
  }
}



.title-2 {
  font-size: 48px;
  color: #333333;
  font-weight: 900;
  text-transform: capitalize;
}


.sec-banner {
  background: radial-gradient(50% 200% at 50% 47.64%, #FFFFFF 0%, #FFFFFF 24.04%, #F5FAFF 60.1%, #E7F3FF 100%);
  padding-top: 100px;
}
.trusted {
  color: #0052B0;
  font-weight: 400;
  font-size: 18px;
  margin: 0px auto;
  width: fit-content;
  height: 52px;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #AAD3FF66 linear-gradient(90deg, #005FC6 0%, #AAD3FF 100%);
  border: 1px solid;
  border-radius: 45px;
  background: rgba(170, 211, 255, 0.4);
}
.trusted img {
    height: 16px;
}
img.dashboard {
  width: 100%;
  
}
.sec-banner h1 {
  font-weight: 700;
  font-size: 64px;
  text-align: center;
  color: #0052B0;
  margin: 32px 0px;
}
.banner-content {
  width: 80%;
  margin: 0px auto;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 50px;
}

.banner-btn-group a {
  width: 240px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin: 8px 16px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
}
.banner-btn-group a svg {
  margin-left: 10px;
}
.banner-btn-group {
  display: flex;
  align-items: center;
  margin: 0px auto;
  width: fit-content;
}
.banner-btn-group .btn-primary {
  background-color: #00448C;
  color: #ffffff;
  border-color: #00448C;
}
.banner-btn-group .btn-secondary {
  background-color: transparent;
  color: #4A4A4A;
  border-color: #A4A4A4;
}
.sec-banner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-top: 50px;
}
.sec-banner ul li {
  margin: 0px 30px;
  position: relative;
  color: #0052B0;
  font-size: 14px;
  font-weight: 400;
}
.sec-banner ul li::after {
  content: '';
  position: absolute;
  left: -24px;
  width: 16px;
  height: 16px;
  background-image: url(../images/teenyicons_tick-circle-outline.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 2px;
}


.sec-how-work {
  padding: 100px 0px 75px;
  background-image: url(../images/bg-sec-how-work.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.sec-how-work p {
  font-size: 18px;
  font-weight: 400;
  color: #777777;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 16px;
}
.sec-how-work .how-works-card {
  text-align: center;
  margin-bottom: 24px;
}
.sec-how-work .how-works-card img {
  height: 60px;
  margin: 0px auto;
}
.sec-how-work .how-works-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #00448C;
  text-align: center;
  margin: 20px 0px;
}
.sec-how-work .how-works-card p {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  text-align: center;
  margin-bottom: 0px;
}


.sec-features {
  padding: 100px 0px 50px;
}
.sec-features p {
  font-size: 18px;
  font-weight: 400;
  color: #777777;
  text-align: center;
  margin-bottom: 64px;
  margin-top: 16px;
}
.sec-features .how-works-card {
  text-align: left;
  margin-bottom: 48px;
}
.sec-features .how-works-card img {
  height: 60px;
  margin: 0px auto;
}
.sec-features .how-works-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #00448C;
  text-align: left;
  margin: 20px 0px;
}
.sec-features .how-works-card p {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  text-align: left;
  margin-bottom: 0px;
}









body {
  overflow-x: hidden;
}

.hero-bg {
  background: radial-gradient(50% 200% at 50% 47.64%, #FFFFFF 0%, #FFFFFF 24.04%, #F5FAFF 60.1%, #E7F3FF 100%);
  position: relative;
}

.floating-card-1 {
  width: 285px;
  height: 113px;
  top: 35px;
  left: 66px;
  transform: rotate(14.44deg);
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 20px;
  z-index: 10;
}

/* .floating-card-2 {
  width: 285px;
  height: 113px;
  top: 10px;
  left: 900px;
  transform: rotate(-26.17deg);
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 20px;
  z-index: 10;
} */

.heading-badge{
  width: 320px;
  height: 52px;
}

.RequestButtons{
  height: 48px;
  width: 240px;
  color: #003F8A;
}

.text-custom-blue{
    color: #003F8A;
}

.section{
  color: #003F8A;
}
/* 
.work{
  margin-left: 120px;
  margin-right: 120px;
  margin-top: 100px;
  margin-bottom: 100px;
} */
.section_work{
  margin-bottom: 100px;
}

.floating-label-group {
    position: relative;
    margin-bottom: 2rem;
  }

  .floating-label-group label {
    position: absolute;
    top: -0.65rem;
    left: 3rem;
    background-color: white;
    padding: 0 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1;
  }

  .floating-label-group input,
  .floating-label-group textarea {
    padding-top: 1.2rem;
  }
  .pricing{
    background: rgba(181, 181, 181, 0.4);
    border-radius: 45px;
    width:121px ;
    height: 44px;

  }
  .plan{
    height: 541px;
    line-height: 2.5;
  }
  .plan-2{
    height: 541px;
    box-shadow:0 4px 24px rgba(23,86,169,0.08);
    font-size:1rem; 
    border-radius:12px;
     margin-top:-22px;
     line-height: 2.5;
  }
  .plan-3{
    line-height: 2.5;
  }
  .popular{
   background-color: rgba(0, 68, 140, 1); 
   border-radius: 45px;
  }
  .Buttons{
    height: 44px;
    width: 314px;
    background-color: rgba(0, 68, 140, 1);
    color: #FFFFFF;
    border: #e0e0e0;
  }
  .custom-solution{
    /* width: 833px; */
    background-color:rgba(239, 239, 239, 1);
  }
  .Buttons-sales{
    width: 280px;
    height: 42px;
    font-size: 18px;
    font-weight: 600;
    background-color: rgba(0, 68, 140, 1) ;
    color: #FFFFFF;
    border: none;
  }